diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index a513a1d352350cc..22b0f46db965af4 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/containerbase/node:18.16.0 +FROM ghcr.io/containerbase/node:18.16.1 USER root diff --git a/.github/actions/calculate-prefetch-matrix/action.yml b/.github/actions/calculate-prefetch-matrix/action.yml index 18bc88e2cf16a1f..cb499bca38a9b47 100644 --- a/.github/actions/calculate-prefetch-matrix/action.yml +++ b/.github/actions/calculate-prefetch-matrix/action.yml @@ -16,9 +16,6 @@ inputs: node-version: description: 'Node version' required: true - hash: - description: 'Yarn lock hash' - required: true outputs: matrix: description: 'Matrix of OSes to prefetch `node_modules` for' @@ -29,44 +26,35 @@ runs: - name: Calculate cache keys id: cache-keys env: - LOCK_HASH: ${{ steps.yarn-lock-hash.outputs.yarn-lock-hash }} + HASH: ${{ hashFiles('yarn.lock') }} shell: bash run: | - echo 'macos-cache-key=node-modules-macOS-${{ inputs.node-version }}-${{ inputs.hash }}' >> "$GITHUB_OUTPUT" - echo 'windows-cache-key=node-modules-Windows-${{ inputs.node-version }}-${{ inputs.hash }}' >> "$GITHUB_OUTPUT" + echo 'MACOS_KEY=node_modules-macOS-${{ inputs.node-version }}-${{ env.HASH }}' >> "$GITHUB_ENV" + echo 'WINDOWS_KEY=node_modules-Windows-${{ inputs.node-version }}-${{ env.HASH }}' >> "$GITHUB_ENV" - - name: Fetch available cache keys - id: caches-list - env: - GH_TOKEN: ${{ inputs.token }} - GH_REPO: ${{ inputs.repo }} - CACHES_URL: /repos/{owner}/{repo}/actions/caches - JQ_FILTER: >- - "keys=" + ([.[].actions_caches[].key] | tostring) - shell: bash - run: | - gh api ${{ env.CACHES_URL }} --paginate | jq -rcs '${{ env.JQ_FILTER }}' >> "$GITHUB_OUTPUT" + - name: Check cache miss for MacOS + id: macos-cache + uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 + with: + path: node_modules + key: ${{ env.MACOS_KEY }} + lookup-only: true + enableCrossOsArchive: true - - name: Calculate cache misses for Windows and MacOS - id: modules-caches - env: - ACTIONS_CACHE_KEYS: ${{ steps.caches-list.outputs.keys }} - MACOS_CACHE_KEY: ${{ steps.cache-keys.outputs.macos-cache-key }} - WINDOWS_CACHE_KEY: ${{ steps.cache-keys.outputs.windows-cache-key }} - shell: bash - run: | - echo 'macos=${{ - !contains(fromJSON(env.ACTIONS_CACHE_KEYS), env.MACOS_CACHE_KEY) && 'true' || '' - }}' >> "$GITHUB_OUTPUT" - echo 'windows=${{ - !contains(fromJSON(env.ACTIONS_CACHE_KEYS), env.WINDOWS_CACHE_KEY) && 'true' || '' - }}' >> "$GITHUB_OUTPUT" + - name: Check cache miss for Windows + id: windows-cache + uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 + with: + path: node_modules + key: ${{ env.WINDOWS_KEY }} + lookup-only: true + enableCrossOsArchive: true - name: Dispatch `node_modules` prefetch for MacOS and Windows id: os-matrix-prefetch env: - MACOS_MISS: ${{ steps.modules-caches.outputs.macos }} - WINDOWS_MISS: ${{ steps.modules-caches.outputs.windows }} + MACOS_MISS: ${{ steps.macos-cache.outputs.cache-hit != 'true' && 'true' || '' }} + WINDOWS_MISS: ${{ steps.windows-cache.outputs.cache-hit != 'true' && 'true' || '' }} PREFETCH_MAC_ONLY: '["macos-latest"]' PREFETCH_WINDOWS_ONLY: '["windows-latest"]' PREFETCH_BOTH: '["macos-latest", "windows-latest"]' diff --git a/.github/actions/setup-node/action.yml b/.github/actions/setup-node/action.yml index 3b22954036a1e6e..a6db5d0cd4a7f74 100644 --- a/.github/actions/setup-node/action.yml +++ b/.github/actions/setup-node/action.yml @@ -14,34 +14,74 @@ inputs: os: description: 'Composite actions do not support `runner.os`, so it must be passed in as an input' required: true -outputs: - cache-hit: - description: 'Cache hit for `node_modules`' - value: ${{ steps.node-modules-cache.outputs.cache-hit }} + save-cache: + description: 'Save cache when needed' + required: false + default: false runs: using: 'composite' steps: - - name: Cache node_modules - id: node-modules-cache - uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 + - name: Calculate `CACHE_KEY` + shell: bash + run: | + echo 'CACHE_KEY=node_modules-${{ + inputs.os + }}-${{ + inputs.node-version + }}-${{ + hashFiles('yarn.lock') + }}' >> "$GITHUB_ENV" + + - name: Restore `node_modules` + id: node-modules-restore + uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 with: path: node_modules - key: node-modules-${{ inputs.os }}-${{ inputs.node-version }}-${{ hashFiles('yarn.lock') }} + key: ${{ env.CACHE_KEY }} + enableCrossOsArchive: true + + - name: Calculate `CACHE_HIT` + shell: bash + run: | + echo 'CACHE_HIT=${{ + (steps.node-modules-restore.outputs.cache-hit == 'true') && 'true' || '' + }}' >> "$GITHUB_ENV" - name: Setup Node uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 with: node-version: ${{ inputs.node-version }} - cache: ${{ steps.node-modules-cache.outputs.cache-hit != 'true' && 'yarn' || '' }} + cache: ${{ env.CACHE_HIT != 'true' && 'yarn' || '' }} - name: Install dependencies uses: nick-fields/retry@943e742917ac94714d2f408a0e8320f2d1fcafcd # v2.8.3 - if: steps.node-modules-cache.outputs.cache-hit != 'true' + if: env.CACHE_HIT != 'true' with: timeout_minutes: 10 max_attempts: 3 - command: yarn install --frozen-lockfile --ignore-scripts + command: | + yarn install --frozen-lockfile --ignore-scripts + yarn prepare:re2 + + - name: Write `node_modules` cache + if: inputs.save-cache == 'true' && env.CACHE_HIT != 'true' + uses: actions/cache/save@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 + with: + path: node_modules + key: ${{ env.CACHE_KEY }} + enableCrossOsArchive: true + + - name: Generate files + shell: bash + run: > + if [[ -d lib ]]; then + yarn prepare:generate; + fi - - name: Run scripts + - name: Git config shell: bash - run: yarn prepare + run: | + git config --global core.autocrlf false + git config --global core.symlinks true + git config --global user.email 'renovate@whitesourcesoftware.com' + git config --global user.name 'Renovate Bot' diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b19fe80f693dfbc..68409454cde1865 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: build +name: Build on: push: @@ -6,6 +6,12 @@ on: - main pull_request: + types: + - opened + - synchronize + - reopened + - ready_for_review + merge_group: workflow_dispatch: @@ -33,6 +39,7 @@ env: tools/ package.json yarn.lock + codecov.yml jobs: setup: @@ -42,35 +49,20 @@ jobs: os-matrix: ${{ steps.os-matrix.outputs.os-matrix }} os-matrix-is-full: ${{ steps.os-matrix-is-full.outputs.os-matrix-is-full }} os-matrix-prefetch: ${{ steps.os-matrix-prefetch.outputs.matrix }} - - env: - # Field required for GitHub CLI - GH_REPO: ${{ github.event.repository.full_name }} - GH_TOKEN: ${{ github.token }} - - # Pull Request data may present or it may not - PR: ${{ github.event.pull_request.number }} - PR_LABELS: '[]' + test-shard-matrix: ${{ steps.schedule-test-shards.outputs.test-shard-matrix }} + test-matrix-empty: ${{ steps.schedule-test-shards.outputs.test-matrix-empty }} steps: - - name: Fetch PR data - if: env.PR - env: - PR_URL: https://api.github.com/repos/{owner}/{repo}/pulls/${{ env.PR }} - JQ_FILTER: >- - "PR_LABELS=" + ([.labels[].name] | tostring) - run: gh api ${{ env.PR_URL }} | jq -rc '${{ env.JQ_FILTER }}' >> "$GITHUB_ENV" - - - name: Calculate `CI_FULLTEST` variable - run: | - echo 'CI_FULLTEST=${{ - contains(fromJSON(env.PR_LABELS), 'ci:fulltest') && 'true' || '' - }}' >> "$GITHUB_ENV" - - name: Calculate `os-matrix-is-full` output id: os-matrix-is-full env: - IS_FULL: ${{ (!env.PR || env.CI_FULLTEST) && 'true' || '' }} + IS_FULL: >- + ${{ + ( + github.event_name != 'pull_request' || + contains(github.event.pull_request.labels.*.name, 'ci:fulltest') + ) && 'true' || '' + }} run: | echo 'OS_MATRIX_IS_FULL=${{ env.IS_FULL }}' >> "$GITHUB_ENV" echo 'os-matrix-is-full=${{ env.IS_FULL }}' >> "$GITHUB_OUTPUT" @@ -85,24 +77,34 @@ jobs: env.OS_MATRIX_IS_FULL && env.OS_ALL || env.OS_LINUX_ONLY }}' >> "$GITHUB_OUTPUT" + - name: Detect changed files + if: ${{ github.event_name == 'pull_request' }} + id: changed-files + env: + GH_TOKEN: ${{ github.token }} + GH_REPO: ${{ github.event.repository.full_name }} + PR_URL: >- + https://api.github.com/repos/{owner}/{repo}/compare/${{ + github.event.pull_request.base.sha + }}...${{ + github.event.pull_request.head.sha + }} + JQ_FILTER: >- + "changed-files=" + ([.files[].filename] | tostring) + run: gh api ${{ env.PR_URL }} | jq -rc '${{ env.JQ_FILTER }}' >> "$GITHUB_OUTPUT" + - name: Checkout code uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 with: sparse-checkout: ${{ env.SPARSE_CHECKOUT }} - - name: Calculate `yarn-lock-hash` output - id: yarn-lock-hash - run: | - echo 'yarn-lock-hash=${{ hashFiles('yarn.lock') }}' >> "$GITHUB_OUTPUT" - - name: Calculate matrix for `node_modules` prefetch uses: ./.github/actions/calculate-prefetch-matrix id: os-matrix-prefetch with: - repo: ${{ env.GH_REPO }} - token: ${{ env.GH_TOKEN }} + repo: ${{ github.event.repository.full_name }} + token: ${{ github.token }} node-version: ${{ env.NODE_VERSION }} - hash: ${{ steps.yarn-lock-hash.outputs.yarn-lock-hash }} - name: Prefetch modules for `ubuntu-latest` id: setup-node @@ -110,15 +112,31 @@ jobs: with: node-version: ${{ env.NODE_VERSION }} os: ${{ runner.os }} + save-cache: true + + - name: Schedule test shards + id: schedule-test-shards + env: + ALL_PLATFORMS: ${{ env.OS_MATRIX_IS_FULL }} + FILTER_SHARDS: ${{ github.event.pull_request.draft && 'true' || '' }} + CHANGED_FILES: ${{ steps.changed-files.outputs.changed-files }} + run: | + echo "$(yarn -s schedule-test-shards)" >> "$GITHUB_OUTPUT" prefetch: needs: [setup] - # We can't use `if: needs.setup.outputs.os-matrix-is-full` here, + + # We can't check `needs.setup.outputs.os-matrix-is-full` here, # as it will lead to further complications that aren't solvable # with current GitHub Actions feature set. # # Although this job sometimes may act as short-lived `no-op`, # it's actually the best option available. + # + # However, in draft mode we can skip this step. + if: | + !(github.event.pull_request.draft == true && + needs.setup.outputs.test-matrix-empty == 'true') strategy: matrix: @@ -142,12 +160,16 @@ jobs: with: node-version: ${{ env.NODE_VERSION }} os: ${{ runner.os }} + save-cache: true lint-eslint: needs: [setup] runs-on: ubuntu-latest timeout-minutes: 15 + permissions: + actions: write + steps: - name: Checkout code uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 @@ -158,20 +180,39 @@ jobs: node-version: ${{ env.NODE_VERSION }} os: ${{ runner.os }} - - name: Cache eslint - uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 + - name: Restore eslint cache + uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 with: path: .cache/eslint - key: eslint-cache + key: eslint-main-cache - name: Lint run: yarn -s eslint-ci + - name: Remove cache + if: github.event_name == 'push' + env: + GH_TOKEN: ${{ github.token }} + GH_REPO: ${{ github.event.repository.full_name }} + run: | + gh api --method DELETE /repos/{owner}/{repo}/actions/caches?key=eslint-main-cache || + echo "Cache not found" + + - name: Save eslint cache + if: github.event_name == 'push' + uses: actions/cache/save@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 + with: + path: .cache/eslint + key: eslint-main-cache + lint-prettier: needs: [setup] runs-on: ubuntu-latest timeout-minutes: 7 + permissions: + actions: write + steps: - name: Checkout code uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 @@ -182,16 +223,32 @@ jobs: node-version: ${{ env.NODE_VERSION }} os: ${{ runner.os }} - - name: Cache prettier - uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 + - name: Restore prettier cache + uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 with: - path: .prettier-cache - key: prettier-cache + path: .cache/prettier + key: prettier-main-cache - name: Lint - run: yarn prettier --cache-location .prettier-cache + run: yarn -s prettier --cache-location .cache/prettier - lint-other: + - name: Remove cache + if: github.event_name == 'push' + env: + GH_TOKEN: ${{ github.token }} + GH_REPO: ${{ github.event.repository.full_name }} + run: | + gh api --method DELETE /repos/{owner}/{repo}/actions/caches?key=prettier-main-cache || + echo "Cache not found" + + - name: Save prettier cache + if: github.event_name == 'push' + uses: actions/cache/save@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 + with: + path: .cache/prettier + key: prettier-main-cache + + lint-docs: needs: [setup] runs-on: ubuntu-latest timeout-minutes: 7 @@ -209,40 +266,54 @@ jobs: - name: Lint markdown uses: DavidAnson/markdownlint-cli2-action@bb4bb94c73936643d73d345b48fead3e96f90a5e # v10.0.1 + - name: Lint fenced code blocks + run: yarn -s doc-fence-check + + - name: Lint website docs + run: yarn -s lint-website-docs + + lint-other: + needs: [setup] + runs-on: ubuntu-latest + timeout-minutes: 7 + + steps: + - name: Checkout code + uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 + + - name: Setup Node.js + uses: ./.github/actions/setup-node + with: + node-version: ${{ env.NODE_VERSION }} + os: ${{ runner.os }} + - name: Lint project file structure - run: yarn ls-lint + run: yarn -s ls-lint - name: Check git version - run: yarn git-check - - - name: Lint fenced code blocks - run: yarn doc-fence-check + run: yarn -s git-check - name: Test schema - run: yarn test-schema + run: yarn -s test-schema test: needs: [setup, prefetch] - name: ${{ matrix.node-version == 18 && format('test ({0})', matrix.os) || format('test ({0}, node-{1})', matrix.os, matrix.node-version) }} - runs-on: ${{ matrix.os }} + if: | + !(github.event.pull_request.draft == true && + needs.setup.outputs.test-matrix-empty == 'true') + + name: ${{ matrix.name }} - # tests shouldn't need more time - timeout-minutes: 45 + runs-on: ${{ matrix.os }} + timeout-minutes: ${{ matrix.runner-timeout-minutes }} strategy: matrix: - os: ${{ fromJSON(needs.setup.outputs.os-matrix) }} - node-version: [18] - - env: - coverage: ${{ matrix.os == 'ubuntu-latest' && matrix.node-version == 18 }} - NODE_VERSION: ${{ matrix.node-version }} + include: ${{ fromJSON(needs.setup.outputs.test-shard-matrix) }} steps: - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 - with: - fetch-depth: 2 - name: Setup Node.js uses: ./.github/actions/setup-node @@ -250,34 +321,129 @@ jobs: node-version: ${{ env.NODE_VERSION }} os: ${{ runner.os }} - - name: Init platform - shell: bash - run: | - git config --global core.autocrlf false - git config --global core.symlinks true - git config --global user.email 'renovate@whitesourcesoftware.com' - git config --global user.name 'Renovate Bot' - git --version - echo "Node $(node --version)" - echo "Yarn $(yarn --version)" - - name: Cache jest uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 with: path: .cache/jest - key: jest-cache-${{ runner.os }}-${{ env.NODE_VERSION }}-${{ hashFiles('yarn.lock') }} + key: | + jest-cache-${{ + runner.os + }}-${{ + env.NODE_VERSION + }}-${{ + hashFiles('yarn.lock') + }}-${{ + matrix.cache-key + }} - name: Unit tests - run: yarn jest --ci --coverage ${{ env.coverage }} + shell: bash + run: | + for shard in ${{ matrix.shards }}; + do + TEST_SHARD="$shard" yarn -s jest \ + --ci \ + --test-timeout ${{ matrix.test-timeout-milliseconds }} \ + --coverage ${{ matrix.coverage }} + done + + - name: Move coverage files + if: (success() || failure()) && github.event.pull_request.draft != true && matrix.coverage + run: | + mkdir -p ./coverage/lcov + mkdir -p ./coverage/json + for shard in ${{ matrix.shards }}; + do + mv ./coverage/shard/$shard/lcov.info ./coverage/lcov/$shard.lcov + mv ./coverage/shard/$shard/coverage-final.json ./coverage/json/$shard.json + done + + - name: Save coverage artifacts + if: (success() || failure()) && github.event.pull_request.draft != true && matrix.coverage + uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 + with: + name: coverage + path: | + ./coverage/lcov + ./coverage/json + + coverage: + needs: [test] + runs-on: ubuntu-latest + timeout-minutes: 3 + if: (success() || failure()) && github.event.pull_request.draft != true + steps: + - name: Checkout code + uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 + with: + sparse-checkout: ${{ env.SPARSE_CHECKOUT }} + + - name: Download coverage reports + uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 + with: + name: coverage + path: coverage - name: Codecov uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4 - if: always() && env.coverage == 'true' + with: + directory: coverage/lcov + + - name: Setup Node.js + uses: ./.github/actions/setup-node + with: + node-version: ${{ env.NODE_VERSION }} + os: ${{ runner.os }} + + - name: Merge coverage reports + run: yarn -s nyc merge ./coverage/json ./coverage/nyc/coverage.json + + - name: Check coverage threshold + run: | + yarn -s nyc check-coverage -t ./coverage/nyc \ + --branches 98 \ + --functions 100 \ + --lines 100 \ + --statements 100 + + # Catch-all required check for test matrix and coverage + test-success: + needs: [setup, test, coverage] + runs-on: ubuntu-latest + timeout-minutes: 1 + if: always() + steps: + - name: Fail for failed or cancelled tests + if: | + needs.test.result == 'failure' || + needs.test.result == 'cancelled' + run: exit 1 + + - name: Fail for skipped tests when PR is ready for review + if: | + github.event_name == 'pull_request' && + github.event.pull_request.draft != true && + needs.test.result == 'skipped' + run: exit 1 + + - name: Fail for failed or cancelled coverage + if: | + needs.coverage.result == 'failure' || + needs.coverage.result == 'cancelled' + run: exit 1 + + - name: Fail for skipped coverage when PR is ready for review + if: | + github.event_name == 'pull_request' && + github.event.pull_request.draft != true && + needs.coverage.result == 'skipped' + run: exit 1 build: needs: setup runs-on: ubuntu-latest timeout-minutes: 5 + if: github.event.pull_request.draft != true steps: - name: Checkout code uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 @@ -300,11 +466,37 @@ jobs: name: renovate-package path: renovate-v0.0.0-semantic-release.tgz + build-docs: + needs: [lint-docs] + runs-on: ubuntu-latest + timeout-minutes: 5 + if: github.event.pull_request.draft != true + steps: + - name: Checkout code + uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 + + - name: Setup Node.js + uses: ./.github/actions/setup-node + with: + node-version: ${{ env.NODE_VERSION }} + os: ${{ runner.os }} + + - name: Build + run: yarn -s build:docs + + - name: Upload + uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 + with: + name: docs + path: tmp/docs/ + test-e2e: - needs: [setup, build] + needs: [build] runs-on: 'ubuntu-latest' timeout-minutes: 7 + if: github.event.pull_request.draft != true + steps: - name: Checkout code uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 @@ -326,7 +518,17 @@ jobs: run: yarn -s test-e2e:run release: - needs: [lint-eslint, lint-prettier, lint-other, test, test-e2e] + needs: + - setup + - lint-eslint + - lint-prettier + - lint-docs + - lint-other + - test-e2e + - test-success + - build-docs + - coverage + if: github.repository == 'renovatebot/renovate' && github.event_name != 'pull_request' runs-on: ubuntu-latest timeout-minutes: 15 @@ -336,48 +538,31 @@ jobs: pull-requests: write steps: - # full checkout for semantic-release - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 with: - fetch-depth: 0 + fetch-depth: 0 # zero stands for full checkout, which is required for semantic-release - - name: Set up Node.js ${{ env.NODE_VERSION }} - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 + - name: Setup Node.js + uses: ./.github/actions/setup-node with: node-version: ${{ env.NODE_VERSION }} - cache: yarn - - - name: Init platform - run: | - git config --global core.autocrlf false - git config --global core.symlinks true - git config --global user.email 'renovate@whitesourcesoftware.com' - git config --global user.name 'Renovate Bot' + os: ${{ runner.os }} - name: Check dry run run: | if [[ "${{github.event_name}}" == "workflow_dispatch" && "${{ github.event.inputs.dryRun }}" != "true" ]]; then - echo "DRY_RUN=false" >> $GITHUB_ENV + echo "DRY_RUN=false" >> "$GITHUB_ENV" elif [[ "${{github.ref}}" == "refs/heads/${{env.DEFAULT_BRANCH}}" ]]; then - echo "DRY_RUN=false" >> $GITHUB_ENV + echo "DRY_RUN=false" >> "$GITHUB_ENV" elif [[ "${{github.ref}}" =~ ^refs/heads/v[0-9]+(\.[0-9]+)?$ ]]; then - echo "DRY_RUN=false" >> $GITHUB_ENV + echo "DRY_RUN=false" >> "$GITHUB_ENV" fi - - name: Installing dependencies - run: yarn install --frozen-lockfile - - name: semantic-release run: | echo '//registry.yarnpkg.com/:_authToken=${NPM_TOKEN}' >> ./.npmrc - yarn semantic-release --dry-run ${{env.DRY_RUN}} + yarn -s semantic-release --dry-run ${{env.DRY_RUN}} git checkout -- .npmrc env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - - - name: Upload docs - uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 - with: - name: docs - path: tmp/docs/ diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 3534f7a6fabe68c..aade37b4ab72d48 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -1,11 +1,18 @@ -name: 'Code scanning - action' +name: 'Code scanning' on: push: branches: [main] + pull_request: # The branches below must be a subset of the branches above branches: [main] + types: + - opened + - synchronize + - reopened + - ready_for_review + schedule: - cron: '0 13 * * 1' @@ -19,7 +26,7 @@ permissions: jobs: CodeQL-Build: runs-on: ubuntu-latest - + if: github.event.pull_request.draft != true steps: - name: Checkout repository uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 @@ -30,7 +37,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@83f0fe6c4988d98a455712a27f0255212bba9bd4 # v2.3.6 + uses: github/codeql-action/init@f6e388ebf0efc915c6c5b165b019ee61a6746a38 # v2.20.1 with: languages: javascript @@ -40,7 +47,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@83f0fe6c4988d98a455712a27f0255212bba9bd4 # v2.3.6 + uses: github/codeql-action/autobuild@f6e388ebf0efc915c6c5b165b019ee61a6746a38 # v2.20.1 # ℹī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -54,4 +61,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@83f0fe6c4988d98a455712a27f0255212bba9bd4 # v2.3.6 + uses: github/codeql-action/analyze@f6e388ebf0efc915c6c5b165b019ee61a6746a38 # v2.20.1 diff --git a/.github/workflows/devcontainer.yml b/.github/workflows/devcontainer.yml index 936ba415daf2cc6..d02f5a11c0bdfb8 100644 --- a/.github/workflows/devcontainer.yml +++ b/.github/workflows/devcontainer.yml @@ -1,12 +1,18 @@ -name: devcontainer +name: Devcontainer on: pull_request: branches: - main + types: + - opened + - synchronize + - reopened + - ready_for_review jobs: devcontainer-test: runs-on: ubuntu-latest + if: github.event.pull_request.draft != true steps: - name: Checkout uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index 4ee2651739e66f0..d8dbab18190ebab 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -20,7 +20,7 @@ jobs: lock: runs-on: ubuntu-latest steps: - - uses: dessant/lock-threads@c1b35aecc5cdb1a34539d14196df55838bb2f836 # v4.0.0 + - uses: dessant/lock-threads@be8aa5be94131386884a6da4189effda9b14aa21 # v4.0.1 if: github.repository == 'renovatebot/renovate' with: github-token: ${{ github.token }} diff --git a/.github/workflows/release-npm.yml b/.github/workflows/release-npm.yml index c853957adced58f..5c58981e595e8ff 100644 --- a/.github/workflows/release-npm.yml +++ b/.github/workflows/release-npm.yml @@ -34,9 +34,9 @@ jobs: - name: Prepare env run: | if [[ "${{github.event_name}}" == "workflow_dispatch" ]]; then - echo "GIT_SHA=${{ github.event.inputs.sha }}" >> $GITHUB_ENV - echo "NPM_VERSION=${{ github.event.inputs.version }}" >> $GITHUB_ENV - echo "NPM_TAG=${{ github.event.inputs.tag }}" >> $GITHUB_ENV + echo "GIT_SHA=${{ github.event.inputs.sha }}" >> "$GITHUB_ENV" + echo "NPM_VERSION=${{ github.event.inputs.version }}" >> "$GITHUB_ENV" + echo "NPM_TAG=${{ github.event.inputs.tag }}" >> "$GITHUB_ENV" fi - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 diff --git a/.github/workflows/update-data.yml b/.github/workflows/update-data.yml index 62c585678d6e624..270557a209b9c0f 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@284f54f989303d2699d373481a0cfa13ad5a6666 # v5.0.1 + uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # v5.0.2 with: author: 'Renovate Bot ' branch: 'chore/update-static-data' diff --git a/.nvmrc b/.nvmrc index 6d80269a4f04adb..3876fd498646023 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -18.16.0 +18.16.1 diff --git a/.vscode/settings.json b/.vscode/settings.json index 271dfb21e0b422f..5d888959a9550da 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -18,5 +18,7 @@ "omnisharp.autoStart": false, "jest.autoRun": "off", "jest.jestCommandLine": "yarn jest", - "npm.packageManager": "yarn" + "npm.packageManager": "yarn", + "prettier.prettierPath": "./node_modules/prettier", + "editor.formatOnSave": true } diff --git a/data/azure-pipelines-tasks.json b/data/azure-pipelines-tasks.json deleted file mode 100644 index 9d12876fc97432b..000000000000000 --- a/data/azure-pipelines-tasks.json +++ /dev/null @@ -1,13559 +0,0 @@ -{ - "packerbuild": [ - "1.221.0", - "1.221.1", - "0.222.0", - "0.222.1", - "1.208.0", - "1.198.0", - "1.183.0", - "1.176.0", - "1.175.1", - "1.175.0", - "1.1.18", - "1.1.17", - "1.1.16", - "1.1.15", - "1.1.14", - "1.1.13", - "1.1.12", - "1.1.11", - "1.1.10", - "1.1.9", - "1.1.8", - "1.1.7", - "1.1.6", - "1.1.5", - "1.1.4", - "1.1.3", - "1.1.2", - "1.1.1", - "1.1.0", - "1.0.15", - "1.0.14", - "1.0.13", - "1.0.12", - "1.0.11", - "1.0.10", - "1.0.9", - "1.0.8", - "1.0.7", - "1.0.6", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0", - "0.217.1", - "0.217.0", - "0.216.3", - "0.216.2", - "0.216.1", - "0.208.0", - "0.198.0", - "0.184.0", - "0.176.0", - "0.175.0", - "0.0.35", - "0.0.34", - "0.0.33", - "0.0.32", - "0.0.31", - "0.0.30", - "0.0.29", - "0.0.28", - "0.0.27", - "0.0.26", - "0.0.25", - "0.0.24", - "0.0.23", - "0.0.22", - "0.0.21", - "0.0.20", - "0.0.19", - "0.0.18", - "0.0.17", - "0.0.16", - "0.0.15", - "0.0.14" - ], - "845fd4f4-642d-4694-8514-047948a5a556": [ - "1.221.0", - "1.221.1", - "0.222.0", - "0.222.1", - "1.208.0", - "1.198.0", - "1.183.0", - "1.176.0", - "1.175.1", - "1.175.0", - "1.1.18", - "1.1.17", - "1.1.16", - "1.1.15", - "1.1.14", - "1.1.13", - "1.1.12", - "1.1.11", - "1.1.10", - "1.1.9", - "1.1.8", - "1.1.7", - "1.1.6", - "1.1.5", - "1.1.4", - "1.1.3", - "1.1.2", - "1.1.1", - "1.1.0", - "1.0.15", - "1.0.14", - "1.0.13", - "1.0.12", - "1.0.11", - "1.0.10", - "1.0.9", - "1.0.8", - "1.0.7", - "1.0.6", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0", - "0.217.1", - "0.217.0", - "0.216.3", - "0.216.2", - "0.216.1", - "0.208.0", - "0.198.0", - "0.184.0", - "0.176.0", - "0.175.0", - "0.0.35", - "0.0.34", - "0.0.33", - "0.0.32", - "0.0.31", - "0.0.30", - "0.0.29", - "0.0.28", - "0.0.27", - "0.0.26", - "0.0.25", - "0.0.24", - "0.0.23", - "0.0.22", - "0.0.21", - "0.0.20", - "0.0.19", - "0.0.18", - "0.0.17", - "0.0.16", - "0.0.15", - "0.0.14" - ], - "functoolsinstaller": [ - "0.222.0", - "0.222.1", - "0.221.0", - "0.209.0", - "0.198.0", - "0.185.0", - "0.180.0", - "0.163.3", - "0.163.2", - "0.163.1", - "0.163.0", - "0.160.0" - ], - "a22a6eb4-fe21-442e-abce-5b2b09cfece3": [ - "0.222.0", - "0.222.1", - "0.221.0", - "0.209.0", - "0.198.0", - "0.185.0", - "0.180.0", - "0.163.3", - "0.163.2", - "0.163.1", - "0.163.0", - "0.160.0" - ], - "downloadgithubnugetpackage": [ - "1.223.0", - "1.223.1", - "1.212.0", - "1.212.1", - "1.207.2", - "1.207.1", - "1.207.0", - "1.206.1", - "1.206.0", - "1.200.1", - "1.200.0", - "1.198.0", - "1.0.8", - "1.0.7", - "1.0.6", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0" - ], - "9fac244b-8d7c-4d8e-a003-2097daa3270f": [ - "1.223.0", - "1.223.1", - "1.212.0", - "1.212.1", - "1.207.2", - "1.207.1", - "1.207.0", - "1.206.1", - "1.206.0", - "1.200.1", - "1.200.0", - "1.198.0", - "1.0.8", - "1.0.7", - "1.0.6", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0" - ], - "condaenvironment": [ - "1.222.0", - "1.222.1", - "0.222.0", - "0.222.1", - "1.220.0", - "1.200.0", - "1.198.0", - "1.193.0", - "1.167.2", - "1.167.1", - "1.167.0", - "1.151.1", - "1.151.0", - "1.148.0", - "1.144.0", - "1.143.1", - "1.143.0", - "1.140.3", - "1.140.2", - "1.140.1", - "1.140.0", - "1.138.0", - "0.220.0", - "0.200.0", - "0.198.0", - "0.193.0", - "0.167.2", - "0.167.1", - "0.167.0", - "0.151.1", - "0.151.0", - "0.139.2", - "0.139.1", - "0.139.0", - "1.136.0", - "0.136.0", - "0.135.0" - ], - "03dd16c3-43e0-4667-ba84-40515d27a410": [ - "1.222.0", - "1.222.1", - "0.222.0", - "0.222.1", - "1.220.0", - "1.200.0", - "1.198.0", - "1.193.0", - "1.167.2", - "1.167.1", - "1.167.0", - "1.151.1", - "1.151.0", - "1.148.0", - "1.144.0", - "1.143.1", - "1.143.0", - "1.140.3", - "1.140.2", - "1.140.1", - "1.140.0", - "1.138.0", - "0.220.0", - "0.200.0", - "0.198.0", - "0.193.0", - "0.167.2", - "0.167.1", - "0.167.0", - "0.151.1", - "0.151.0", - "0.139.2", - "0.139.1", - "0.139.0", - "1.136.0", - "0.136.0", - "0.135.0" - ], - "xcode": [ - "5.220.0", - "5.213.0", - "5.200.0", - "5.198.1", - "5.198.0", - "5.193.0", - "5.189.0", - "5.188.0", - "5.185.0", - "5.184.1", - "5.184.0", - "5.179.0", - "5.178.0", - "5.177.0", - "5.175.1", - "5.175.0", - "5.170.2", - "5.170.1", - "5.170.0", - "5.152.1", - "5.152.0", - "5.151.2", - "5.151.1", - "5.151.0", - "5.150.0", - "5.149.0", - "5.142.1", - "5.142.0", - "5.141.2", - "5.141.1", - "5.141.0", - "5.139.1", - "5.139.0", - "5.137.0", - "5.136.0", - "5.135.0" - ], - "1e78dc1b-9132-4b18-9c75-0e7ecc634b74": [ - "5.220.0", - "5.213.0", - "5.200.0", - "5.198.1", - "5.198.0", - "5.193.0", - "5.189.0", - "5.188.0", - "5.185.0", - "5.184.1", - "5.184.0", - "5.179.0", - "5.178.0", - "5.177.0", - "5.175.1", - "5.175.0", - "5.170.2", - "5.170.1", - "5.170.0", - "5.152.1", - "5.152.0", - "5.151.2", - "5.151.1", - "5.151.0", - "5.150.0", - "5.149.0", - "5.142.1", - "5.142.0", - "5.141.2", - "5.141.1", - "5.141.0", - "5.139.1", - "5.139.0", - "5.137.0", - "5.136.0", - "5.135.0" - ], - "xamarinios": [ - "2.214.0", - "2.213.0", - "2.200.1", - "2.200.0", - "2.198.0", - "2.189.0", - "2.180.0", - "2.174.0", - "2.167.2", - "2.167.1", - "2.167.0", - "2.166.0", - "2.161.2", - "2.161.1", - "2.161.0", - "2.160.0", - "2.151.3", - "2.151.2", - "2.151.1", - "2.151.0", - "2.142.2", - "2.142.1", - "2.142.0", - "2.137.1", - "2.137.0", - "2.136.1", - "2.136.0", - "2.133.0" - ], - "0f077e3a-af59-496d-81bc-ad971b7464e0": [ - "2.214.0", - "2.213.0", - "2.200.1", - "2.200.0", - "2.198.0", - "2.189.0", - "2.180.0", - "2.174.0", - "2.167.2", - "2.167.1", - "2.167.0", - "2.166.0", - "2.161.2", - "2.161.1", - "2.161.0", - "2.160.0", - "2.151.3", - "2.151.2", - "2.151.1", - "2.151.0", - "2.142.2", - "2.142.1", - "2.142.0", - "2.137.1", - "2.137.0", - "2.136.1", - "2.136.0", - "2.133.0" - ], - "xamarintestcloud": [ - "1.198.0", - "1.167.2", - "1.167.1", - "1.167.0", - "1.151.1", - "1.151.0", - "1.141.2", - "1.141.1", - "1.141.0", - "1.135.0" - ], - "049918cb-1488-48eb-85e8-c318eccaaa74": [ - "1.198.0", - "1.167.2", - "1.167.1", - "1.167.0", - "1.151.1", - "1.151.0", - "1.141.2", - "1.141.1", - "1.141.0", - "1.135.0" - ], - "xamarinandroid": [ - "1.214.0", - "1.213.0", - "1.212.0", - "1.208.0", - "1.200.0", - "1.207.0", - "1.206.0", - "1.198.0", - "1.197.1", - "1.197.0", - "1.192.2", - "1.192.1", - "1.192.0", - "1.189.0", - "1.188.0", - "1.186.0", - "1.183.0", - "1.180.0", - "1.175.0", - "1.166.2", - "1.166.1", - "1.166.0", - "1.161.2", - "1.161.1", - "1.161.0", - "1.160.0", - "1.155.0", - "1.151.3", - "1.151.2", - "1.151.1", - "1.151.0", - "1.147.0", - "1.143.1", - "1.143.0", - "1.142.1", - "1.142.0", - "1.140.0", - "1.137.0", - "1.135.0" - ], - "27edd013-36fd-43aa-96a3-7d73e1e35285": [ - "1.214.0", - "1.213.0", - "1.212.0", - "1.208.0", - "1.200.0", - "1.207.0", - "1.206.0", - "1.198.0", - "1.197.1", - "1.197.0", - "1.192.2", - "1.192.1", - "1.192.0", - "1.189.0", - "1.188.0", - "1.186.0", - "1.183.0", - "1.180.0", - "1.175.0", - "1.166.2", - "1.166.1", - "1.166.0", - "1.161.2", - "1.161.1", - "1.161.0", - "1.160.0", - "1.155.0", - "1.151.3", - "1.151.2", - "1.151.1", - "1.151.0", - "1.147.0", - "1.143.1", - "1.143.0", - "1.142.1", - "1.142.0", - "1.140.0", - "1.137.0", - "1.135.0" - ], - "windowsmachinefilecopy": [ - "2.221.1", - "2.221.0", - "2.220.1", - "2.220.0", - "2.200.0", - "2.198.0", - "2.1.13", - "2.1.12", - "2.1.11", - "2.1.10", - "2.1.9", - "2.1.8", - "2.1.7", - "2.1.6", - "2.1.5", - "2.1.4", - "2.1.3", - "2.1.2", - "2.1.1", - "2.1.0", - "1.221.0", - "1.220.0", - "1.198.0", - "1.0.48", - "1.0.47", - "1.0.46", - "1.0.45", - "1.0.44", - "1.0.43" - ], - "731004d4-1d66-4f70-8c05-638018b22210": [ - "2.221.1", - "2.221.0", - "2.220.1", - "2.220.0", - "2.200.0", - "2.198.0", - "2.1.13", - "2.1.12", - "2.1.11", - "2.1.10", - "2.1.9", - "2.1.8", - "2.1.7", - "2.1.6", - "2.1.5", - "2.1.4", - "2.1.3", - "2.1.2", - "2.1.1", - "2.1.0", - "1.221.0", - "1.220.0", - "1.198.0", - "1.0.48", - "1.0.47", - "1.0.46", - "1.0.45", - "1.0.44", - "1.0.43" - ], - "vstest": [ - "3.220.0", - "3.219.0", - "3.217.0", - "3.210.0", - "3.205.0", - "2.220.0", - "2.219.0", - "2.215.0", - "2.210.0", - "2.205.0", - "2.203.0", - "2.202.0", - "2.198.0", - "2.195.0", - "2.170.1", - "2.170.0", - "2.168.1", - "2.168.0", - "2.167.1", - "2.167.0", - "2.166.1", - "2.166.0", - "2.165.1", - "2.165.0", - "2.164.1", - "2.164.0", - "2.163.0", - "2.162.5", - "2.162.4", - "2.162.3", - "2.162.2", - "2.162.1", - "2.161.2", - "2.162.0", - "2.161.1", - "2.161.0", - "2.160.2", - "2.160.1", - "2.160.0", - "2.159.0", - "2.157.3", - "2.157.2", - "2.157.1", - "2.157.0", - "2.156.1", - "2.156.0", - "2.155.0", - "2.153.9", - "2.153.8", - "2.153.7", - "2.153.6", - "2.153.5", - "2.153.4", - "2.153.3", - "2.153.2", - "2.153.1", - "2.153.0", - "2.152.5", - "2.152.4", - "2.152.3", - "2.152.2", - "2.152.1", - "2.152.0", - "2.151.5", - "2.151.4", - "2.151.3", - "2.151.2", - "2.151.1", - "2.151.0", - "2.150.4", - "2.150.3", - "2.150.2", - "2.150.1", - "2.149.2", - "2.149.1", - "2.149.0", - "2.148.3", - "2.148.2", - "2.148.1", - "2.148.0", - "2.146.4", - "2.146.3", - "2.146.2", - "2.146.1", - "2.146.0", - "2.145.0", - "2.144.3", - "2.144.2", - "2.144.1", - "2.144.0", - "2.143.5", - "2.143.4", - "2.143.3", - "2.143.2", - "2.143.1", - "2.143.0", - "2.142.10", - "2.142.9", - "2.142.8", - "2.142.7", - "2.142.6", - "2.142.5", - "2.142.4", - "2.142.3", - "2.142.2", - "2.142.1", - "2.142.0", - "2.141.2", - "2.141.1", - "2.141.0", - "2.140.1", - "2.140.0", - "2.139.5", - "2.139.4", - "2.139.3", - "2.139.2", - "2.139.1", - "2.138.8", - "2.138.7", - "2.138.6", - "2.138.5", - "2.138.4", - "2.138.3", - "2.138.2", - "2.138.1", - "2.137.8", - "2.137.7", - "2.137.6", - "2.137.5", - "2.137.4", - "2.137.3", - "2.137.2", - "2.137.1", - "2.137.0", - "2.136.5", - "2.136.4", - "2.136.3", - "2.136.2", - "2.136.1", - "2.136.0", - "2.135.4", - "2.135.3", - "2.135.2", - "1.198.0", - "1.0.98", - "1.0.97", - "1.0.96", - "1.0.95", - "1.0.94", - "1.0.93", - "1.0.92", - "1.0.91", - "1.0.90", - "1.0.89", - "1.0.88", - "1.0.87" - ], - "ef087383-ee5e-42c7-9a53-ab56c98420f9": [ - "3.220.0", - "3.219.0", - "3.217.0", - "3.210.0", - "3.205.0", - "2.220.0", - "2.219.0", - "2.215.0", - "2.210.0", - "2.205.0", - "2.203.0", - "2.202.0", - "2.198.0", - "2.195.0", - "2.170.1", - "2.170.0", - "2.168.1", - "2.168.0", - "2.167.1", - "2.167.0", - "2.166.1", - "2.166.0", - "2.165.1", - "2.165.0", - "2.164.1", - "2.164.0", - "2.163.0", - "2.162.5", - "2.162.4", - "2.162.3", - "2.162.2", - "2.162.1", - "2.161.2", - "2.162.0", - "2.161.1", - "2.161.0", - "2.160.2", - "2.160.1", - "2.160.0", - "2.159.0", - "2.157.3", - "2.157.2", - "2.157.1", - "2.157.0", - "2.156.1", - "2.156.0", - "2.155.0", - "2.153.9", - "2.153.8", - "2.153.7", - "2.153.6", - "2.153.5", - "2.153.4", - "2.153.3", - "2.153.2", - "2.153.1", - "2.153.0", - "2.152.5", - "2.152.4", - "2.152.3", - "2.152.2", - "2.152.1", - "2.152.0", - "2.151.5", - "2.151.4", - "2.151.3", - "2.151.2", - "2.151.1", - "2.151.0", - "2.150.4", - "2.150.3", - "2.150.2", - "2.150.1", - "2.149.2", - "2.149.1", - "2.149.0", - "2.148.3", - "2.148.2", - "2.148.1", - "2.148.0", - "2.146.4", - "2.146.3", - "2.146.2", - "2.146.1", - "2.146.0", - "2.145.0", - "2.144.3", - "2.144.2", - "2.144.1", - "2.144.0", - "2.143.5", - "2.143.4", - "2.143.3", - "2.143.2", - "2.143.1", - "2.143.0", - "2.142.10", - "2.142.9", - "2.142.8", - "2.142.7", - "2.142.6", - "2.142.5", - "2.142.4", - "2.142.3", - "2.142.2", - "2.142.1", - "2.142.0", - "2.141.2", - "2.141.1", - "2.141.0", - "2.140.1", - "2.140.0", - "2.139.5", - "2.139.4", - "2.139.3", - "2.139.2", - "2.139.1", - "2.138.8", - "2.138.7", - "2.138.6", - "2.138.5", - "2.138.4", - "2.138.3", - "2.138.2", - "2.138.1", - "2.137.8", - "2.137.7", - "2.137.6", - "2.137.5", - "2.137.4", - "2.137.3", - "2.137.2", - "2.137.1", - "2.137.0", - "2.136.5", - "2.136.4", - "2.136.3", - "2.136.2", - "2.136.1", - "2.136.0", - "2.135.4", - "2.135.3", - "2.135.2", - "1.198.0", - "1.0.98", - "1.0.97", - "1.0.96", - "1.0.95", - "1.0.94", - "1.0.93", - "1.0.92", - "1.0.91", - "1.0.90", - "1.0.89", - "1.0.88", - "1.0.87" - ], - "visualstudiotestplatforminstaller": [ - "1.215.0", - "1.214.0", - "1.212.0", - "1.151.3", - "1.151.2", - "1.151.1", - "1.151.0", - "1.150.0", - "1.1.6", - "1.1.5", - "1.1.4", - "1.1.3", - "1.1.2", - "1.1.1", - "1.1.0", - "1.0.13", - "1.0.12" - ], - "2c65196a-54fd-4a02-9be8-d9d1837b7111": [ - "1.215.0", - "1.214.0", - "1.212.0", - "1.151.3", - "1.151.2", - "1.151.1", - "1.151.0", - "1.150.0", - "1.1.6", - "1.1.5", - "1.1.4", - "1.1.3", - "1.1.2", - "1.1.1", - "1.1.0", - "1.0.13", - "1.0.12" - ], - "vsbuild": [ - "1.214.0", - "1.212.0", - "1.208.0", - "1.199.0", - "1.207.0", - "1.206.0", - "1.198.0", - "1.197.0", - "1.192.3", - "1.192.2", - "1.192.1", - "1.192.0", - "1.187.0", - "1.183.0", - "1.166.2", - "1.166.1", - "1.166.0", - "1.161.3", - "1.161.2", - "1.161.1", - "1.161.0", - "1.160.0", - "1.151.2", - "1.151.1", - "1.151.0", - "1.148.1", - "1.148.0", - "1.147.0", - "1.146.0", - "1.126.2", - "1.126.1", - "1.126.0" - ], - "71a9a2d3-a98a-4caa-96ab-affca411ecda": [ - "1.214.0", - "1.212.0", - "1.208.0", - "1.199.0", - "1.207.0", - "1.206.0", - "1.198.0", - "1.197.0", - "1.192.3", - "1.192.2", - "1.192.1", - "1.192.0", - "1.187.0", - "1.183.0", - "1.166.2", - "1.166.1", - "1.166.0", - "1.161.3", - "1.161.2", - "1.161.1", - "1.161.0", - "1.160.0", - "1.151.2", - "1.151.1", - "1.151.0", - "1.148.1", - "1.148.0", - "1.147.0", - "1.146.0", - "1.126.2", - "1.126.1", - "1.126.0" - ], - "userubyversion": [ - "0.213.0", - "0.200.0", - "0.198.0", - "0.193.0", - "0.188.0", - "0.186.0", - "0.185.0", - "0.182.0", - "0.179.0", - "0.176.0", - "0.165.2", - "0.165.1", - "0.165.0", - "0.151.2", - "0.151.1", - "0.151.0", - "0.142.1", - "0.142.0", - "0.140.1", - "0.140.0", - "0.138.1", - "0.138.0", - "0.136.0", - "0.134.1" - ], - "630c472c-cde7-4cd8-ba13-e00ca5ff180b": [ - "0.213.0", - "0.200.0", - "0.198.0", - "0.193.0", - "0.188.0", - "0.186.0", - "0.185.0", - "0.182.0", - "0.179.0", - "0.176.0", - "0.165.2", - "0.165.1", - "0.165.0", - "0.151.2", - "0.151.1", - "0.151.0", - "0.142.1", - "0.142.0", - "0.140.1", - "0.140.0", - "0.138.1", - "0.138.0", - "0.136.0", - "0.134.1" - ], - "usepythonversion": [ - "0.220.0", - "0.214.0", - "0.213.1", - "0.213.0", - "0.206.0", - "0.205.0", - "0.200.0", - "0.202.0", - "0.198.1", - "0.198.0", - "0.193.0", - "0.188.0", - "0.186.0", - "0.185.0", - "0.183.0", - "0.181.0", - "0.180.0", - "0.179.0", - "0.176.0", - "0.151.4", - "0.151.3", - "0.151.2", - "0.151.1", - "0.151.0", - "0.150.1", - "0.150.0", - "0.148.0", - "0.142.1", - "0.142.0", - "0.138.2", - "0.138.1", - "0.138.0", - "0.136.0", - "0.134.2" - ], - "33c63b11-352b-45a2-ba1b-54cb568a29ca": [ - "0.220.0", - "0.214.0", - "0.213.1", - "0.213.0", - "0.206.0", - "0.205.0", - "0.200.0", - "0.202.0", - "0.198.1", - "0.198.0", - "0.193.0", - "0.188.0", - "0.186.0", - "0.185.0", - "0.183.0", - "0.181.0", - "0.180.0", - "0.179.0", - "0.176.0", - "0.151.4", - "0.151.3", - "0.151.2", - "0.151.1", - "0.151.0", - "0.150.1", - "0.150.0", - "0.148.0", - "0.142.1", - "0.142.0", - "0.138.2", - "0.138.1", - "0.138.0", - "0.136.0", - "0.134.2" - ], - "usenode": [ - "1.220.1", - "1.220.0", - "1.213.0", - "1.214.0", - "1.210.0", - "1.208.1", - "1.208.0", - "1.206.0", - "1.202.0", - "1.198.0", - "1.195.0", - "1.193.0", - "1.179.2", - "1.179.1", - "1.179.0", - "1.174.1", - "1.174.0", - "1.171.0", - "1.169.2", - "1.169.1", - "1.169.0", - "1.168.0", - "1.166.1", - "1.166.0", - "1.165.0", - "1.164.0", - "1.161.0", - "1.160.1", - "1.160.0", - "1.159.0", - "1.158.1", - "1.158.0", - "1.156.2", - "1.156.1", - "1.156.0", - "1.154.3", - "1.154.2", - "1.154.1", - "1.154.0", - "1.153.0", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0" - ], - "31c75bbb-bcdf-4706-8d7c-4da6a1959bc2": [ - "1.220.1", - "1.220.0", - "1.213.0", - "1.214.0", - "1.210.0", - "1.208.1", - "1.208.0", - "1.206.0", - "1.202.0", - "1.198.0", - "1.195.0", - "1.193.0", - "1.179.2", - "1.179.1", - "1.179.0", - "1.174.1", - "1.174.0", - "1.171.0", - "1.169.2", - "1.169.1", - "1.169.0", - "1.168.0", - "1.166.1", - "1.166.0", - "1.165.0", - "1.164.0", - "1.161.0", - "1.160.1", - "1.160.0", - "1.159.0", - "1.158.1", - "1.158.0", - "1.156.2", - "1.156.1", - "1.156.0", - "1.154.3", - "1.154.2", - "1.154.1", - "1.154.0", - "1.153.0", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0", - "0.222.0", - "0.220.1", - "0.220.0", - "0.218.0", - "0.213.0", - "0.211.0", - "0.210.1", - "0.210.0", - "0.200.0", - "0.198.0", - "0.192.0", - "0.189.0", - "0.186.0", - "0.185.0", - "0.179.1", - "0.179.0", - "0.176.0", - "0.166.2", - "0.166.1", - "0.166.0", - "0.160.0", - "0.159.0", - "0.153.1", - "0.153.0", - "0.151.1", - "0.151.0", - "0.149.0", - "0.148.0", - "0.145.0", - "0.136.2", - "0.136.1", - "0.136.0", - "0.124.0" - ], - "usedotnet": [ - "2.222.0", - "2.219.0", - "2.207.2", - "2.207.3", - "2.207.1", - "2.207.0", - "2.206.0", - "2.204.0", - "2.198.1", - "2.198.0", - "2.195.1", - "2.195.0", - "2.191.0", - "2.184.0", - "2.180.0", - "2.179.0", - "2.175.1", - "2.175.0", - "2.171.1", - "2.171.0", - "2.169.3", - "2.169.2", - "2.169.1", - "2.169.0", - "2.166.4", - "2.166.3", - "2.165.3", - "2.165.2", - "2.165.1", - "2.165.0", - "2.164.0", - "2.0.25", - "2.0.24", - "2.0.23", - "2.0.22", - "2.0.21", - "2.0.20", - "2.0.19", - "2.0.18", - "2.0.17", - "2.0.16", - "2.0.15", - "2.0.14", - "2.0.13", - "2.0.12", - "2.0.11", - "2.0.10", - "2.0.9", - "2.0.8", - "2.0.7", - "2.0.6", - "2.0.5", - "2.0.4", - "2.0.3", - "2.0.2", - "2.0.1", - "2.0.0", - "1.0.0" - ], - "b0ce7256-7898-45d3-9cb5-176b752bfea6": [ - "2.222.0", - "2.219.0", - "2.207.2", - "2.207.3", - "2.207.1", - "2.207.0", - "2.206.0", - "2.204.0", - "2.198.1", - "2.198.0", - "2.195.1", - "2.195.0", - "2.191.0", - "2.184.0", - "2.180.0", - "2.179.0", - "2.175.1", - "2.175.0", - "2.171.1", - "2.171.0", - "2.169.3", - "2.169.2", - "2.169.1", - "2.169.0", - "2.166.4", - "2.166.3", - "2.165.3", - "2.165.2", - "2.165.1", - "2.165.0", - "2.164.0", - "2.0.25", - "2.0.24", - "2.0.23", - "2.0.22", - "2.0.21", - "2.0.20", - "2.0.19", - "2.0.18", - "2.0.17", - "2.0.16", - "2.0.15", - "2.0.14", - "2.0.13", - "2.0.12", - "2.0.11", - "2.0.10", - "2.0.9", - "2.0.8", - "2.0.7", - "2.0.6", - "2.0.5", - "2.0.4", - "2.0.3", - "2.0.2", - "2.0.1", - "2.0.0", - "1.0.0", - "1.221.0", - "1.214.0", - "1.215.0", - "1.209.0", - "1.204.0", - "1.198.0", - "1.2.0", - "1.1.2", - "1.1.1", - "1.1.0", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "0.220.0", - "0.214.0", - "0.215.0", - "0.209.0", - "0.204.0", - "0.198.0", - "0.3.0", - "0.2.9", - "0.2.8", - "0.2.7", - "0.2.5", - "0.2.4", - "0.2.3", - "0.2.2", - "0.2.1", - "0.2.0", - "0.1.20", - "0.1.19", - "0.1.18", - "0.1.17", - "0.1.16", - "0.1.15", - "0.1.14", - "0.1.13", - "0.1.12", - "0.1.11", - "0.1.10", - "0.1.9", - "0.1.8", - "0.1.7" - ], - "universalpackages": [ - "0.218.0", - "0.215.0", - "0.214.0", - "0.214.1", - "0.208.1", - "0.208.0", - "0.202.0", - "0.200.0", - "0.198.0", - "0.190.0", - "0.188.0", - "0.182.0", - "0.180.0", - "0.179.0", - "0.175.0", - "0.174.1", - "0.171.0", - "0.169.2", - "0.169.1", - "0.169.0", - "0.168.0", - "0.166.2", - "0.166.1", - "0.166.0", - "0.165.0", - "0.164.0", - "0.161.1", - "0.161.0", - "0.160.0", - "0.159.0", - "0.158.1", - "0.158.0", - "0.157.0", - "0.156.1", - "0.156.0", - "0.154.3", - "0.154.2", - "0.154.1", - "0.153.1", - "0.153.0", - "0.152.3", - "0.152.2", - "0.152.1", - "0.152.0", - "0.151.1", - "0.151.0", - "0.150.2", - "0.150.1", - "0.150.0", - "0.149.0", - "0.148.1", - "0.148.0", - "0.147.2", - "0.147.0", - "0.145.2", - "0.145.1", - "0.145.0", - "0.1.0", - "0.0.11", - "0.0.10", - "0.0.9", - "0.0.8", - "0.0.7", - "0.0.6", - "0.0.5", - "0.0.4", - "0.0.3", - "0.0.2", - "0.0.1" - ], - "e0b79640-8625-11e8-91be-db2878ff888a": [ - "0.218.0", - "0.215.0", - "0.214.0", - "0.214.1", - "0.208.1", - "0.208.0", - "0.202.0", - "0.200.0", - "0.198.0", - "0.190.0", - "0.188.0", - "0.182.0", - "0.180.0", - "0.179.0", - "0.175.0", - "0.174.1", - "0.171.0", - "0.169.2", - "0.169.1", - "0.169.0", - "0.168.0", - "0.166.2", - "0.166.1", - "0.166.0", - "0.165.0", - "0.164.0", - "0.161.1", - "0.161.0", - "0.160.0", - "0.159.0", - "0.158.1", - "0.158.0", - "0.157.0", - "0.156.1", - "0.156.0", - "0.154.3", - "0.154.2", - "0.154.1", - "0.153.1", - "0.153.0", - "0.152.3", - "0.152.2", - "0.152.1", - "0.152.0", - "0.151.1", - "0.151.0", - "0.150.2", - "0.150.1", - "0.150.0", - "0.149.0", - "0.148.1", - "0.148.0", - "0.147.2", - "0.147.0", - "0.145.2", - "0.145.1", - "0.145.0", - "0.1.0", - "0.0.11", - "0.0.10", - "0.0.9", - "0.0.8", - "0.0.7", - "0.0.6", - "0.0.5", - "0.0.4", - "0.0.3", - "0.0.2", - "0.0.1" - ], - "twineauthenticate": [ - "1.220.0", - "1.218.1", - "1.218.0", - "1.213.0", - "1.211.0", - "1.208.0", - "1.198.0", - "1.177.1", - "1.177.0", - "1.175.0", - "1.167.2", - "1.167.1", - "1.167.0", - "1.165.0", - "1.156.2", - "1.156.1", - "1.156.0", - "1.0.0", - "0.223.0", - "0.220.0", - "0.218.0", - "0.214.0", - "0.214.1", - "0.208.2", - "0.208.1", - "0.208.0", - "0.206.0", - "0.202.0", - "0.198.0", - "0.179.0", - "0.177.1", - "0.177.0", - "0.175.0", - "0.174.0", - "0.171.0", - "0.169.2", - "0.169.1", - "0.169.0", - "0.168.0", - "0.166.1", - "0.166.0", - "0.165.0", - "0.164.0", - "0.161.0", - "0.160.0", - "0.159.0", - "0.158.1", - "0.158.0", - "0.156.1", - "0.156.0", - "0.155.0", - "0.154.4", - "0.154.3", - "0.154.2", - "0.154.0", - "0.153.1", - "0.153.0", - "0.152.3", - "0.152.2", - "0.152.1", - "0.152.0", - "0.151.1", - "0.151.0", - "0.149.0", - "0.145.2", - "0.145.1", - "0.145.0", - "0.2.0", - "0.1.6", - "0.1.5", - "0.1.4", - "0.1.3", - "0.1.2", - "0.1.1", - "0.1.0" - ], - "e4d58330-c771-11e8-8f8f-81fbb42e2824": [ - "1.220.0", - "1.218.1", - "1.218.0", - "1.213.0", - "1.211.0", - "1.208.0", - "1.198.0", - "1.177.1", - "1.177.0", - "1.175.0", - "1.167.2", - "1.167.1", - "1.167.0", - "1.165.0", - "1.156.2", - "1.156.1", - "1.156.0", - "1.0.0", - "0.223.0", - "0.220.0", - "0.218.0", - "0.214.0", - "0.214.1", - "0.208.2", - "0.208.1", - "0.208.0", - "0.206.0", - "0.202.0", - "0.198.0", - "0.179.0", - "0.177.1", - "0.177.0", - "0.175.0", - "0.174.0", - "0.171.0", - "0.169.2", - "0.169.1", - "0.169.0", - "0.168.0", - "0.166.1", - "0.166.0", - "0.165.0", - "0.164.0", - "0.161.0", - "0.160.0", - "0.159.0", - "0.158.1", - "0.158.0", - "0.156.1", - "0.156.0", - "0.155.0", - "0.154.4", - "0.154.3", - "0.154.2", - "0.154.0", - "0.153.1", - "0.153.0", - "0.152.3", - "0.152.2", - "0.152.1", - "0.152.0", - "0.151.1", - "0.151.0", - "0.149.0", - "0.145.2", - "0.145.1", - "0.145.0", - "0.2.0", - "0.1.6", - "0.1.5", - "0.1.4", - "0.1.3", - "0.1.2", - "0.1.1", - "0.1.0" - ], - "ssh": [ - "0.220.0", - "0.213.0", - "0.207.1", - "0.207.0", - "0.200.0", - "0.198.0", - "0.189.0", - "0.180.0", - "0.177.0", - "0.176.1", - "0.176.0", - "0.175.0", - "0.174.0", - "0.173.1", - "0.173.0", - "0.171.0", - "0.165.3", - "0.165.2", - "0.165.1", - "0.165.0", - "0.151.1", - "0.151.0", - "0.148.0", - "0.147.0", - "0.145.1", - "0.145.0", - "0.142.2", - "0.142.1", - "0.142.0", - "0.137.0", - "0.135.0", - "0.121.0" - ], - "91443475-df55-4874-944b-39253b558790": [ - "0.220.0", - "0.213.0", - "0.207.1", - "0.207.0", - "0.200.0", - "0.198.0", - "0.189.0", - "0.180.0", - "0.177.0", - "0.176.1", - "0.176.0", - "0.175.0", - "0.174.0", - "0.173.1", - "0.173.0", - "0.171.0", - "0.165.3", - "0.165.2", - "0.165.1", - "0.165.0", - "0.151.1", - "0.151.0", - "0.148.0", - "0.147.0", - "0.145.1", - "0.145.0", - "0.142.2", - "0.142.1", - "0.142.0", - "0.137.0", - "0.135.0", - "0.121.0" - ], - "sqlserverdacpacdeployment": [ - "1.198.0", - "1.0.25", - "1.0.24", - "1.0.23", - "1.0.22", - "1.0.21", - "1.0.20", - "1.0.19", - "1.0.16", - "1.0.15", - "1.0.14", - "1.0.13", - "1.0.12", - "1.0.11", - "1.0.10", - "1.0.9", - "1.0.8", - "1.0.7", - "1.0.5", - "1.0.6", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0" - ], - "70a3a82d-4a3c-4a09-8d30-a793739dc94f": [ - "1.198.0", - "1.0.25", - "1.0.24", - "1.0.23", - "1.0.22", - "1.0.21", - "1.0.20", - "1.0.19", - "1.0.16", - "1.0.15", - "1.0.14", - "1.0.13", - "1.0.12", - "1.0.11", - "1.0.10", - "1.0.9", - "1.0.8", - "1.0.7", - "1.0.5", - "1.0.6", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0" - ], - "sqldacpacdeploymentonmachinegroup": [ - "0.198.0", - "0.3.23", - "0.3.22", - "0.3.21", - "0.3.20", - "0.3.19", - "0.3.18", - "0.3.17", - "0.3.16", - "0.3.15", - "0.3.14", - "0.3.13", - "0.3.12", - "0.3.11", - "0.3.10" - ], - "4b506f7f-720f-47bb-bf21-029bac6a690d": [ - "0.198.0", - "0.3.23", - "0.3.22", - "0.3.21", - "0.3.20", - "0.3.19", - "0.3.18", - "0.3.17", - "0.3.16", - "0.3.15", - "0.3.14", - "0.3.13", - "0.3.12", - "0.3.11", - "0.3.10" - ], - "sqlazuredacpacdeployment": [ - "1.223.1", - "1.223.0", - "1.222.1", - "1.222.0", - "1.221.102", - "1.221.100", - "1.219.0", - "1.218.0", - "1.217.0", - "1.216.0", - "1.214.0", - "1.209.0", - "1.202.0", - "1.198.0", - "1.184.0", - "1.178.2", - "1.178.1", - "1.178.0", - "1.171.5", - "1.171.4", - "1.171.3", - "1.171.2", - "1.171.1", - "1.171.0", - "1.167.4", - "1.167.3", - "1.167.2", - "1.167.1", - "1.167.0", - "1.156.1", - "1.156.0", - "1.153.1", - "1.153.0", - "1.3.21", - "1.3.20", - "1.3.19", - "1.3.18", - "1.3.17", - "1.3.16", - "1.3.15", - "1.3.14", - "1.3.13", - "1.3.12", - "1.3.11", - "1.3.10", - "1.2.9", - "1.2.8", - "1.2.7", - "1.2.6", - "1.2.5", - "1.2.4", - "1.2.3", - "1.2.2", - "1.2.1", - "1.2.0", - "1.1.31", - "1.1.30" - ], - "ce85a08b-a538-4d2b-8589-1d37a9ab970f": [ - "1.223.1", - "1.223.0", - "1.222.1", - "1.222.0", - "1.221.102", - "1.221.100", - "1.219.0", - "1.218.0", - "1.217.0", - "1.216.0", - "1.214.0", - "1.209.0", - "1.202.0", - "1.198.0", - "1.184.0", - "1.178.2", - "1.178.1", - "1.178.0", - "1.171.5", - "1.171.4", - "1.171.3", - "1.171.2", - "1.171.1", - "1.171.0", - "1.167.4", - "1.167.3", - "1.167.2", - "1.167.1", - "1.167.0", - "1.156.1", - "1.156.0", - "1.153.1", - "1.153.0", - "1.3.21", - "1.3.20", - "1.3.19", - "1.3.18", - "1.3.17", - "1.3.16", - "1.3.15", - "1.3.14", - "1.3.13", - "1.3.12", - "1.3.11", - "1.3.10", - "1.2.9", - "1.2.8", - "1.2.7", - "1.2.6", - "1.2.5", - "1.2.4", - "1.2.3", - "1.2.2", - "1.2.1", - "1.2.0", - "1.1.31", - "1.1.30" - ], - "shellscript": [ - "2.212.0", - "2.206.0", - "2.198.0", - "2.193.0", - "2.165.2", - "2.165.1", - "2.165.0", - "2.1.4", - "2.1.3" - ], - "6c731c3c-3c68-459a-a5c9-bde6e6595b5b": [ - "2.212.0", - "2.206.0", - "2.198.0", - "2.193.0", - "2.165.2", - "2.165.1", - "2.165.0", - "2.1.4", - "2.1.3", - "3.223.0", - "3.222.1", - "3.222.0", - "3.214.0", - "3.211.0", - "3.201.1", - "3.201.0", - "3.198.0", - "3.195.0", - "3.189.0", - "3.182.0", - "3.179.0", - "3.178.0", - "3.177.2", - "3.177.1", - "3.177.0", - "3.176.0", - "3.171.1", - "3.171.0", - "3.163.3", - "3.163.2", - "3.163.1", - "3.163.0", - "3.159.3", - "3.159.2", - "3.151.3", - "3.151.2", - "3.151.1", - "3.151.0", - "3.148.2", - "3.148.1", - "3.148.0", - "3.142.2", - "3.142.1", - "3.142.0", - "3.136.0", - "3.135.1", - "3.135.0", - "3.127.0" - ], - "servicefabricupdatemanifests": [ - "2.198.0", - "2.5.3", - "2.5.2", - "2.5.1", - "2.5.0", - "2.4.5", - "2.4.4", - "2.4.3", - "2.4.2", - "2.4.1", - "2.4.0", - "2.3.0", - "2.2.5", - "2.2.4", - "2.2.3" - ], - "97ef6e59-b8cc-48aa-9937-1a01e35e7584": [ - "2.198.0", - "2.5.3", - "2.5.2", - "2.5.1", - "2.5.0", - "2.4.5", - "2.4.4", - "2.4.3", - "2.4.2", - "2.4.1", - "2.4.0", - "2.3.0", - "2.2.5", - "2.2.4", - "2.2.3" - ], - "servicefabricpowershell": [ - "1.198.0", - "1.2.4", - "1.2.3", - "1.2.2", - "1.2.1", - "1.2.0", - "1.1.0", - "1.0.23", - "1.0.22", - "1.0.21", - "1.0.20", - "1.0.19", - "1.0.18", - "1.0.17", - "1.0.16", - "1.0.14", - "1.0.13", - "1.0.12", - "1.0.11", - "1.0.10", - "1.0.9" - ], - "816979f7-c273-4347-9a55-845b721d82cb": [ - "1.198.0", - "1.2.4", - "1.2.3", - "1.2.2", - "1.2.1", - "1.2.0", - "1.1.0", - "1.0.23", - "1.0.22", - "1.0.21", - "1.0.20", - "1.0.19", - "1.0.18", - "1.0.17", - "1.0.16", - "1.0.14", - "1.0.13", - "1.0.12", - "1.0.11", - "1.0.10", - "1.0.9" - ], - "servicefabricdeploy": [ - "1.205.0", - "1.198.0", - "1.9.4", - "1.9.3", - "1.9.2", - "1.9.1", - "1.9.0", - "1.8.0", - "1.7.34", - "1.7.33", - "1.7.32", - "1.7.31", - "1.7.30", - "1.7.29", - "1.7.28", - "1.7.27", - "1.7.26", - "1.7.25", - "1.7.24", - "1.7.23", - "1.7.22", - "1.7.21", - "1.7.20", - "1.7.19", - "1.7.17", - "1.7.16", - "1.7.15", - "1.7.14", - "1.7.13", - "1.7.12", - "1.7.11", - "1.7.10", - "1.7.9" - ], - "c6650aa0-185b-11e6-a47d-df93e7a34c64": [ - "1.205.0", - "1.198.0", - "1.9.4", - "1.9.3", - "1.9.2", - "1.9.1", - "1.9.0", - "1.8.0", - "1.7.34", - "1.7.33", - "1.7.32", - "1.7.31", - "1.7.30", - "1.7.29", - "1.7.28", - "1.7.27", - "1.7.26", - "1.7.25", - "1.7.24", - "1.7.23", - "1.7.22", - "1.7.21", - "1.7.20", - "1.7.19", - "1.7.17", - "1.7.16", - "1.7.15", - "1.7.14", - "1.7.13", - "1.7.12", - "1.7.11", - "1.7.10", - "1.7.9" - ], - "servicefabriccomposedeploy": [ - "0.198.0", - "0.5.4", - "0.5.3", - "0.5.2", - "0.5.1", - "0.5.0", - "0.4.0", - "0.3.12", - "0.3.11", - "0.3.10", - "0.3.9", - "0.3.8", - "0.3.7", - "0.3.5", - "0.3.4", - "0.3.3", - "0.3.2", - "0.3.1", - "0.3.0", - "0.2.6" - ], - "19c02b15-d377-40e0-9efa-3168506e0933": [ - "0.198.0", - "0.5.4", - "0.5.3", - "0.5.2", - "0.5.1", - "0.5.0", - "0.4.0", - "0.3.12", - "0.3.11", - "0.3.10", - "0.3.9", - "0.3.8", - "0.3.7", - "0.3.5", - "0.3.4", - "0.3.3", - "0.3.2", - "0.3.1", - "0.3.0", - "0.2.6" - ], - "cloudloadtest": [ - "1.186.0", - "1.0.40", - "1.0.39", - "1.0.38", - "1.0.37", - "1.0.36", - "1.0.35", - "1.0.34", - "1.0.33", - "1.0.32", - "1.0.31", - "1.0.30", - "1.0.29", - "1.0.28", - "1.0.27" - ], - "9e9db38a-b40b-4c13-b7f0-31031c894c22": [ - "1.186.0", - "1.0.40", - "1.0.39", - "1.0.38", - "1.0.37", - "1.0.36", - "1.0.35", - "1.0.34", - "1.0.33", - "1.0.32", - "1.0.31", - "1.0.30", - "1.0.29", - "1.0.28", - "1.0.27" - ], - "apachejmeterloadtest": [ - "1.186.0", - "1.0.33", - "1.0.32", - "1.0.31", - "1.0.30", - "1.0.29", - "1.0.28", - "1.0.27", - "1.0.26", - "1.0.25", - "1.0.24", - "1.0.23", - "1.0.22", - "1.0.21", - "1.0.20", - "1.0.19" - ], - "f20661eb-e0f7-4afd-9a86-9fe9d1a93382": [ - "1.186.0", - "1.0.33", - "1.0.32", - "1.0.31", - "1.0.30", - "1.0.29", - "1.0.28", - "1.0.27", - "1.0.26", - "1.0.25", - "1.0.24", - "1.0.23", - "1.0.22", - "1.0.21", - "1.0.20", - "1.0.19" - ], - "reviewapp": ["0.214.0", "0.198.0", "0.181.0", "0.0.3", "0.0.2", "0.0.1"], - "deeafed4-0b18-4f58-968d-86655b4d2ce9": [ - "0.214.0", - "0.198.0", - "0.181.0", - "0.0.3", - "0.0.2", - "0.0.1" - ], - "quickperftest": [ - "1.198.0", - "1.186.0", - "1.0.41", - "1.0.40", - "1.0.39", - "1.0.38", - "1.0.37", - "1.0.36", - "1.0.35", - "1.0.34", - "1.0.33", - "1.0.32", - "1.0.31", - "1.0.30", - "1.0.29", - "1.0.28" - ], - "9648625c-1523-4eb5-b015-dfe7c685840c": [ - "1.198.0", - "1.186.0", - "1.0.41", - "1.0.40", - "1.0.39", - "1.0.38", - "1.0.37", - "1.0.36", - "1.0.35", - "1.0.34", - "1.0.33", - "1.0.32", - "1.0.31", - "1.0.30", - "1.0.29", - "1.0.28" - ], - "queryworkitems": [ - "0.0.16", - "0.0.15", - "0.0.14", - "0.0.13", - "0.0.12", - "0.0.11", - "0.0.10", - "0.0.9" - ], - "f1e4b0e6-017e-4819-8a48-ef19ae96e289": [ - "0.0.16", - "0.0.15", - "0.0.14", - "0.0.13", - "0.0.12", - "0.0.11", - "0.0.10", - "0.0.9" - ], - "pythonscript": [ - "0.213.0", - "0.200.0", - "0.198.0", - "0.182.0", - "0.167.2", - "0.167.1", - "0.167.0", - "0.151.2", - "0.151.1", - "0.151.0", - "0.147.0", - "0.138.3", - "0.138.2", - "0.138.1", - "0.138.0", - "0.136.0", - "0.135.0" - ], - "6392f95f-7e76-4a18-b3c7-7f078d2f7700": [ - "0.213.0", - "0.200.0", - "0.198.0", - "0.182.0", - "0.167.2", - "0.167.1", - "0.167.0", - "0.151.2", - "0.151.1", - "0.151.0", - "0.147.0", - "0.138.3", - "0.138.2", - "0.138.1", - "0.138.0", - "0.136.0", - "0.135.0" - ], - "pypipublisher": [ - "0.198.0", - "0.167.2", - "0.167.1", - "0.167.0", - "0.151.1", - "0.151.0", - "0.142.2", - "0.142.1", - "0.142.0", - "0.137.1", - "0.137.0", - "0.135.0" - ], - "2d8a1d60-8ccd-11e7-a792-11ac56e9f553": [ - "0.198.0", - "0.167.2", - "0.167.1", - "0.167.0", - "0.151.1", - "0.151.0", - "0.142.2", - "0.142.1", - "0.142.0", - "0.137.1", - "0.137.0", - "0.135.0" - ], - "publishtoazureservicebus": [ - "1.221.0", - "1.220.0", - "1.217.0", - "1.198.0", - "1.0.17", - "1.0.16", - "1.0.15", - "1.0.14", - "1.0.13", - "1.0.12", - "1.0.11", - "1.0.10", - "1.0.9", - "1.0.8", - "1.0.7", - "1.0.6", - "1.0.5" - ], - "ba761f24-cbd6-48cb-92f3-fc13396405b1": [ - "1.221.0", - "1.220.0", - "1.217.0", - "1.198.0", - "1.0.17", - "1.0.16", - "1.0.15", - "1.0.14", - "1.0.13", - "1.0.12", - "1.0.11", - "1.0.10", - "1.0.9", - "1.0.8", - "1.0.7", - "1.0.6", - "1.0.5" - ], - "publishtestresults": [ - "2.216.2", - "2.216.1", - "2.216.0", - "2.210.0", - "2.203.0", - "2.198.0", - "2.192.1", - "2.192.0", - "2.191.0", - "2.180.0", - "2.171.0", - "2.170.0", - "2.167.2", - "2.167.1", - "2.167.0", - "2.166.0", - "2.165.2", - "2.165.1", - "2.165.0", - "2.164.1", - "2.164.0", - "2.163.1", - "2.163.0", - "2.162.0", - "2.161.0", - "2.160.2", - "2.160.0", - "2.159.0", - "2.158.0", - "2.157.0", - "2.156.0", - "2.155.0", - "2.153.5", - "2.153.4", - "2.153.3", - "2.153.2", - "2.153.1", - "2.152.2", - "2.152.1", - "2.152.0", - "2.151.3", - "2.151.2", - "2.151.1", - "2.151.0", - "2.150.0", - "2.149.2", - "2.149.1", - "2.149.0", - "2.147.0", - "2.146.0", - "2.144.3", - "2.144.2", - "2.144.1", - "2.144.0", - "2.143.2", - "2.143.1", - "2.143.0", - "2.142.3", - "2.142.2", - "2.142.1", - "2.142.0", - "2.0.13", - "2.0.12", - "2.0.11", - "2.0.10", - "2.0.9", - "2.0.8", - "2.0.7", - "2.0.6", - "2.0.5", - "1.216.0", - "1.209.0", - "1.199.0", - "1.198.0", - "1.193.0", - "1.0.47", - "1.0.46", - "1.0.45", - "1.0.44", - "1.0.43", - "1.0.42", - "1.0.41", - "1.0.40", - "1.0.39", - "1.0.38", - "1.0.37" - ], - "0b0f01ed-7dde-43ff-9cbb-e48954daf9b1": [ - "2.216.2", - "2.216.1", - "2.216.0", - "2.210.0", - "2.203.0", - "2.198.0", - "2.192.1", - "2.192.0", - "2.191.0", - "2.180.0", - "2.171.0", - "2.170.0", - "2.167.2", - "2.167.1", - "2.167.0", - "2.166.0", - "2.165.2", - "2.165.1", - "2.165.0", - "2.164.1", - "2.164.0", - "2.163.1", - "2.163.0", - "2.162.0", - "2.161.0", - "2.160.2", - "2.160.0", - "2.159.0", - "2.158.0", - "2.157.0", - "2.156.0", - "2.155.0", - "2.153.5", - "2.153.4", - "2.153.3", - "2.153.2", - "2.153.1", - "2.152.2", - "2.152.1", - "2.152.0", - "2.151.3", - "2.151.2", - "2.151.1", - "2.151.0", - "2.150.0", - "2.149.2", - "2.149.1", - "2.149.0", - "2.147.0", - "2.146.0", - "2.144.3", - "2.144.2", - "2.144.1", - "2.144.0", - "2.143.2", - "2.143.1", - "2.143.0", - "2.142.3", - "2.142.2", - "2.142.1", - "2.142.0", - "2.0.13", - "2.0.12", - "2.0.11", - "2.0.10", - "2.0.9", - "2.0.8", - "2.0.7", - "2.0.6", - "2.0.5", - "1.216.0", - "1.209.0", - "1.199.0", - "1.198.0", - "1.193.0", - "1.0.47", - "1.0.46", - "1.0.45", - "1.0.44", - "1.0.43", - "1.0.42", - "1.0.41", - "1.0.40", - "1.0.39", - "1.0.38", - "1.0.37" - ], - "publishsymbols": [ - "2.223.0", - "2.220.1", - "2.220.0", - "2.215.0", - "2.214.0", - "2.210.0", - "2.203.0", - "2.202.0", - "2.199.0", - "2.198.0", - "2.191.0", - "2.190.0", - "2.172.0", - "2.0.18", - "2.0.17", - "2.0.16", - "2.0.15", - "2.0.14", - "2.0.13", - "2.0.12", - "2.0.11", - "2.0.10", - "2.0.9", - "2.0.8" - ], - "0675668a-7bba-4ccb-901d-5ad6554ca653": [ - "2.223.0", - "2.220.1", - "2.220.0", - "2.215.0", - "2.214.0", - "2.210.0", - "2.203.0", - "2.202.0", - "2.199.0", - "2.198.0", - "2.191.0", - "2.190.0", - "2.172.0", - "2.0.18", - "2.0.17", - "2.0.16", - "2.0.15", - "2.0.14", - "2.0.13", - "2.0.12", - "2.0.11", - "2.0.10", - "2.0.9", - "2.0.8" - ], - "publishpipelinemetadata": [ - "0.216.0", - "0.217.0", - "0.212.0", - "0.211.0", - "0.210.0", - "0.201.0", - "0.198.0", - "0.183.0", - "0.180.0", - "0.175.0", - "0.170.0", - "0.165.2", - "0.165.1", - "0.165.0", - "0.163.0", - "0.161.0", - "0.160.0" - ], - "01fa79eb-4c54-41b5-a16f-5cd8d60db88d": [ - "0.216.0", - "0.217.0", - "0.212.0", - "0.211.0", - "0.210.0", - "0.201.0", - "0.198.0", - "0.183.0", - "0.180.0", - "0.175.0", - "0.170.0", - "0.165.2", - "0.165.1", - "0.165.0", - "0.163.0", - "0.161.0", - "0.160.0" - ], - "publishpipelineartifact": [ - "1.199.0", - "1.198.0", - "1.2.3", - "1.2.2", - "1.2.1", - "1.2.0", - "1.1.0", - "1.5.0", - "1.0.0", - "1.0.1", - "0.141.0", - "0.140.1", - "0.140.0", - "0.139.0", - "0.151.0", - "0.139.1" - ], - "ecdc45f6-832d-4ad9-b52b-ee49e94659be": [ - "1.199.0", - "1.198.0", - "1.2.3", - "1.2.2", - "1.2.1", - "1.2.0", - "1.1.0", - "1.5.0", - "1.0.0", - "1.0.1", - "0.141.0", - "0.140.1", - "0.140.0", - "0.139.0", - "0.151.0", - "0.139.1" - ], - "publishcodecoverageresults": [ - "2.223.0", - "2.221.0", - "2.220.0", - "2.218.0", - "2.217.0", - "2.215.0", - "2.198.0", - "2.159.0", - "1.219.0", - "1.200.0", - "1.198.0", - "1.189.0", - "1.186.0", - "1.182.0", - "1.180.0", - "1.178.0", - "1.179.0", - "1.175.2", - "1.175.1", - "1.175.0", - "1.160.4", - "1.160.3", - "1.160.2", - "1.160.1", - "1.160.0", - "1.159.0", - "1.158.0", - "1.155.0", - "1.154.0", - "1.152.3", - "1.152.2", - "1.152.1", - "1.152.0", - "1.151.2", - "1.151.1", - "1.151.0", - "1.150.2", - "1.150.1", - "1.150.0", - "1.148.0", - "1.145.0", - "1.139.2", - "1.139.1", - "1.139.0", - "1.131.0" - ], - "2a7ebc54-c13e-490e-81a5-d7561ab7cd97": [ - "2.223.0", - "2.221.0", - "2.220.0", - "2.218.0", - "2.217.0", - "2.215.0", - "2.198.0", - "2.159.0", - "1.219.0", - "1.200.0", - "1.198.0", - "1.189.0", - "1.186.0", - "1.182.0", - "1.180.0", - "1.178.0", - "1.179.0", - "1.175.2", - "1.175.1", - "1.175.0", - "1.160.4", - "1.160.3", - "1.160.2", - "1.160.1", - "1.160.0", - "1.159.0", - "1.158.0", - "1.155.0", - "1.154.0", - "1.152.3", - "1.152.2", - "1.152.1", - "1.152.0", - "1.151.2", - "1.151.1", - "1.151.0", - "1.150.2", - "1.150.1", - "1.150.0", - "1.148.0", - "1.145.0", - "1.139.2", - "1.139.1", - "1.139.0", - "1.131.0" - ], - "publishbuildartifacts": [ - "1.224.0", - "1.223.1", - "1.223.0", - "1.222.1", - "1.222.0", - "1.211.0", - "1.200.0", - "1.198.0", - "1.192.0", - "1.186.0", - "1.183.0", - "1.158.3", - "1.158.2", - "1.158.1", - "1.158.0", - "1.157.0", - "1.151.1", - "1.151.0", - "1.142.2", - "1.142.1", - "1.142.0", - "1.141.0", - "1.135.0" - ], - "2ff763a7-ce83-4e1f-bc89-0ae63477cebe": [ - "1.224.0", - "1.223.1", - "1.223.0", - "1.222.1", - "1.222.0", - "1.211.0", - "1.200.0", - "1.198.0", - "1.192.0", - "1.186.0", - "1.183.0", - "1.158.3", - "1.158.2", - "1.158.1", - "1.158.0", - "1.157.0", - "1.151.1", - "1.151.0", - "1.142.2", - "1.142.1", - "1.142.0", - "1.141.0", - "1.135.0" - ], - "powershell": [ - "2.220.0", - "2.212.0", - "2.210.0", - "2.200.0", - "2.198.0", - "2.194.0", - "2.190.0", - "2.189.0", - "2.186.0", - "2.180.1", - "2.180.0", - "2.179.0", - "2.178.0", - "2.177.0", - "2.170.1", - "2.170.0", - "2.169.0", - "2.165.1", - "2.165.0", - "2.163.1", - "2.163.0", - "2.151.2", - "2.151.1", - "2.151.0", - "2.148.0", - "2.140.2", - "2.140.1", - "2.140.0", - "2.141.0", - "2.136.0", - "2.135.0", - "2.129.0" - ], - "e213ff0f-5d5c-4791-802d-52ea3e7be1f1": [ - "2.220.0", - "2.212.0", - "2.210.0", - "2.200.0", - "2.198.0", - "2.194.0", - "2.190.0", - "2.189.0", - "2.186.0", - "2.180.1", - "2.180.0", - "2.179.0", - "2.178.0", - "2.177.0", - "2.170.1", - "2.170.0", - "2.169.0", - "2.165.1", - "2.165.0", - "2.163.1", - "2.163.0", - "2.151.2", - "2.151.1", - "2.151.0", - "2.148.0", - "2.140.2", - "2.140.1", - "2.140.0", - "2.141.0", - "2.136.0", - "2.135.0", - "2.129.0" - ], - "powershellontargetmachines": [ - "3.200.0", - "3.198.0", - "3.1.6", - "3.1.5", - "3.1.4", - "3.1.3", - "3.1.2", - "3.1.1", - "3.1.0", - "3.0.4", - "3.0.3", - "3.0.2", - "3.0.1", - "3.0.0", - "2.198.0", - "2.0.8", - "2.0.7", - "2.0.6", - "2.0.5", - "2.0.4", - "1.198.0", - "1.0.53", - "1.0.52", - "1.0.51" - ], - "3b5693d4-5777-4fee-862a-bd2b7a374c68": [ - "3.200.0", - "3.198.0", - "3.1.6", - "3.1.5", - "3.1.4", - "3.1.3", - "3.1.2", - "3.1.1", - "3.1.0", - "3.0.4", - "3.0.3", - "3.0.2", - "3.0.1", - "3.0.0", - "2.198.0", - "2.0.8", - "2.0.7", - "2.0.6", - "2.0.5", - "2.0.4", - "1.198.0", - "1.0.53", - "1.0.52", - "1.0.51" - ], - "pipauthenticate": [ - "1.218.1", - "1.218.0", - "1.213.0", - "1.214.0", - "1.206.0", - "1.198.0", - "1.177.1", - "1.177.0", - "1.175.0", - "1.167.2", - "1.167.1", - "1.167.0", - "1.165.0", - "1.156.2", - "1.156.1", - "1.156.0", - "1.0.0", - "0.220.0", - "0.215.0", - "0.214.0", - "0.214.1", - "0.208.1", - "0.208.0", - "0.206.1", - "0.206.0", - "0.202.0", - "0.198.0", - "0.179.0", - "0.177.1", - "0.177.0", - "0.175.0", - "0.174.0", - "0.171.0", - "0.169.2", - "0.169.1", - "0.169.0", - "0.168.0", - "0.166.1", - "0.166.0", - "0.165.0", - "0.164.0", - "0.161.0", - "0.160.0", - "0.159.0", - "0.158.1", - "0.158.0", - "0.156.1", - "0.156.0", - "0.154.4", - "0.154.3", - "0.154.2", - "0.154.0", - "0.153.1", - "0.153.0", - "0.152.4", - "0.152.3", - "0.152.2", - "0.152.1", - "0.152.0", - "0.151.1", - "0.151.0", - "0.149.0", - "0.145.1", - "0.145.0", - "0.1.6", - "0.1.5", - "0.1.4", - "0.1.3", - "0.1.2", - "0.1.1", - "0.1.0" - ], - "5e3feff0-c5ae-11e8-a7d0-4bd3b8229800": [ - "1.218.1", - "1.218.0", - "1.213.0", - "1.214.0", - "1.206.0", - "1.198.0", - "1.177.1", - "1.177.0", - "1.175.0", - "1.167.2", - "1.167.1", - "1.167.0", - "1.165.0", - "1.156.2", - "1.156.1", - "1.156.0", - "1.0.0", - "0.220.0", - "0.215.0", - "0.214.0", - "0.214.1", - "0.208.1", - "0.208.0", - "0.206.1", - "0.206.0", - "0.202.0", - "0.198.0", - "0.179.0", - "0.177.1", - "0.177.0", - "0.175.0", - "0.174.0", - "0.171.0", - "0.169.2", - "0.169.1", - "0.169.0", - "0.168.0", - "0.166.1", - "0.166.0", - "0.165.0", - "0.164.0", - "0.161.0", - "0.160.0", - "0.159.0", - "0.158.1", - "0.158.0", - "0.156.1", - "0.156.0", - "0.154.4", - "0.154.3", - "0.154.2", - "0.154.0", - "0.153.1", - "0.153.0", - "0.152.4", - "0.152.3", - "0.152.2", - "0.152.1", - "0.152.0", - "0.151.1", - "0.151.0", - "0.149.0", - "0.145.1", - "0.145.0", - "0.1.6", - "0.1.5", - "0.1.4", - "0.1.3", - "0.1.2", - "0.1.1", - "0.1.0" - ], - "openpolicyagentinstaller": [ - "0.215.0", - "0.210.0", - "0.198.0", - "0.157.2", - "0.157.1", - "0.157.0" - ], - "50817e39-e160-45e1-a825-1c746b7d2eb2": [ - "0.215.0", - "0.210.0", - "0.198.0", - "0.157.2", - "0.157.1", - "0.157.0" - ], - "nuget": [ - "0.222.2", - "0.222.1", - "0.219.0", - "0.218.1", - "0.218.0", - "0.208.1", - "0.214.0", - "0.208.0", - "0.206.0", - "0.202.0", - "0.198.0", - "0.179.0", - "0.178.0", - "0.175.0", - "0.174.0", - "0.171.0", - "0.169.2", - "0.169.1", - "0.169.0", - "0.168.0", - "0.166.1", - "0.166.0", - "0.165.0", - "0.164.0", - "0.161.0", - "0.160.0", - "0.159.0", - "0.158.1", - "0.158.0", - "0.156.1", - "0.156.0", - "0.154.3", - "0.154.2", - "0.154.1", - "0.153.1", - "0.153.0", - "0.152.3", - "0.152.2", - "0.152.1", - "0.152.0", - "0.151.1", - "0.151.0", - "0.149.0", - "0.148.1", - "0.148.0", - "0.147.0", - "0.145.0", - "0.1.10", - "0.1.9", - "0.1.8", - "0.1.7", - "0.1.6", - "0.1.5", - "0.1.4", - "0.1.3" - ], - "2661b7e5-00f9-4de1-ba41-04e68d70b528": [ - "0.222.2", - "0.222.1", - "0.219.0", - "0.218.1", - "0.218.0", - "0.208.1", - "0.214.0", - "0.208.0", - "0.206.0", - "0.202.0", - "0.198.0", - "0.179.0", - "0.178.0", - "0.175.0", - "0.174.0", - "0.171.0", - "0.169.2", - "0.169.1", - "0.169.0", - "0.168.0", - "0.166.1", - "0.166.0", - "0.165.0", - "0.164.0", - "0.161.0", - "0.160.0", - "0.159.0", - "0.158.1", - "0.158.0", - "0.156.1", - "0.156.0", - "0.154.3", - "0.154.2", - "0.154.1", - "0.153.1", - "0.153.0", - "0.152.3", - "0.152.2", - "0.152.1", - "0.152.0", - "0.151.1", - "0.151.0", - "0.149.0", - "0.148.1", - "0.148.0", - "0.147.0", - "0.145.0", - "0.1.10", - "0.1.9", - "0.1.8", - "0.1.7", - "0.1.6", - "0.1.5", - "0.1.4", - "0.1.3" - ], - "nugettoolinstaller": [ - "1.221.0", - "1.220.0", - "1.218.0", - "1.215.0", - "1.208.1", - "1.214.0", - "1.208.0", - "1.206.0", - "1.202.0", - "1.198.0", - "1.179.0", - "1.174.0", - "1.171.0", - "1.169.2", - "1.169.1", - "1.169.0", - "1.168.0", - "1.166.1", - "1.166.0", - "1.165.0", - "1.164.0", - "1.161.0", - "1.160.0", - "1.159.0", - "1.158.1", - "1.158.0", - "1.156.1", - "1.156.0", - "1.154.3", - "1.154.2", - "1.154.1", - "1.153.1", - "1.153.0", - "1.152.1", - "1.152.0", - "1.151.0", - "1.150.0", - "1.149.2", - "1.149.1", - "0.221.0", - "0.220.0", - "0.219.0", - "0.218.0", - "0.215.0", - "0.208.1", - "0.214.0", - "0.208.0", - "0.206.0", - "0.202.0", - "0.198.0", - "0.179.1", - "0.179.0", - "0.174.0", - "0.171.0", - "0.169.2", - "0.169.1", - "0.169.0", - "0.168.0", - "0.166.1", - "0.166.0", - "0.165.0", - "0.164.0", - "0.161.0", - "0.160.0", - "0.159.0", - "0.158.1", - "0.158.0", - "0.156.1", - "0.156.0", - "0.154.3", - "0.154.2", - "0.154.1", - "0.153.1", - "0.153.0", - "0.152.1", - "0.152.0", - "0.151.0", - "0.150.0", - "0.149.0", - "0.145.0", - "0.1.10", - "0.1.9", - "0.1.8", - "0.1.7", - "0.1.6", - "0.1.5" - ], - "2c65196a-54fd-4a02-9be8-d9d1837b7c5d": [ - "1.221.0", - "1.220.0", - "1.218.0", - "1.215.0", - "1.208.1", - "1.214.0", - "1.208.0", - "1.206.0", - "1.202.0", - "1.198.0", - "1.179.0", - "1.174.0", - "1.171.0", - "1.169.2", - "1.169.1", - "1.169.0", - "1.168.0", - "1.166.1", - "1.166.0", - "1.165.0", - "1.164.0", - "1.161.0", - "1.160.0", - "1.159.0", - "1.158.1", - "1.158.0", - "1.156.1", - "1.156.0", - "1.154.3", - "1.154.2", - "1.154.1", - "1.153.1", - "1.153.0", - "1.152.1", - "1.152.0", - "1.151.0", - "1.150.0", - "1.149.2", - "1.149.1", - "0.221.0", - "0.220.0", - "0.219.0", - "0.218.0", - "0.215.0", - "0.208.1", - "0.214.0", - "0.208.0", - "0.206.0", - "0.202.0", - "0.198.0", - "0.179.1", - "0.179.0", - "0.174.0", - "0.171.0", - "0.169.2", - "0.169.1", - "0.169.0", - "0.168.0", - "0.166.1", - "0.166.0", - "0.165.0", - "0.164.0", - "0.161.0", - "0.160.0", - "0.159.0", - "0.158.1", - "0.158.0", - "0.156.1", - "0.156.0", - "0.154.3", - "0.154.2", - "0.154.1", - "0.153.1", - "0.153.0", - "0.152.1", - "0.152.0", - "0.151.0", - "0.150.0", - "0.149.0", - "0.145.0", - "0.1.10", - "0.1.9", - "0.1.8", - "0.1.7", - "0.1.6", - "0.1.5" - ], - "nugetrestore": [ - "1.223.0", - "1.221.0", - "1.220.0", - "1.219.0", - "1.216.0", - "1.214.0", - "1.208.0", - "1.206.0", - "1.198.0", - "1.179.0", - "1.178.0", - "1.177.1", - "1.177.0", - "1.154.1", - "1.154.0", - "1.152.1", - "1.152.0", - "1.148.0", - "1.147.0", - "1.0.8", - "1.0.7", - "1.0.6", - "1.0.5", - "1.0.4", - "1.0.3" - ], - "333b11bd-d341-40d9-afcf-b32d5ce6f23b": [ - "1.223.0", - "1.221.0", - "1.220.0", - "1.219.0", - "1.216.0", - "1.214.0", - "1.208.0", - "1.206.0", - "1.198.0", - "1.179.0", - "1.178.0", - "1.177.1", - "1.177.0", - "1.154.1", - "1.154.0", - "1.152.1", - "1.152.0", - "1.148.0", - "1.147.0", - "1.0.8", - "1.0.7", - "1.0.6", - "1.0.5", - "1.0.4", - "1.0.3", - "0.215.0", - "0.208.1", - "0.214.0", - "0.208.0", - "0.206.0", - "0.202.0", - "0.198.0", - "0.179.0", - "0.178.0", - "0.175.0", - "0.174.0", - "0.172.1", - "0.172.0", - "0.147.0", - "0.146.0", - "0.145.0", - "0.2.38", - "0.2.37", - "0.2.36", - "0.2.35", - "0.2.34", - "0.2.33", - "2.222.0", - "2.221.0", - "2.220.2", - "2.220.1", - "2.220.0", - "2.216.0", - "2.214.2", - "2.214.3", - "2.214.1", - "2.214.0", - "2.211.0", - "2.210.0", - "2.208.1", - "2.208.0", - "2.206.0", - "2.202.0", - "2.198.0", - "2.194.0", - "2.179.0", - "2.178.0", - "2.177.1", - "2.177.0", - "2.175.1", - "2.175.0", - "2.174.0", - "2.172.0", - "2.171.1", - "2.171.0", - "2.169.2", - "2.169.1", - "2.169.0", - "2.168.0", - "2.166.1", - "2.166.0", - "2.165.0", - "2.164.0", - "2.161.1", - "2.161.0", - "2.160.0", - "2.159.0", - "2.158.1", - "2.158.0", - "2.156.1", - "2.156.0", - "2.154.6", - "2.154.5", - "2.154.4", - "2.154.3", - "2.154.2", - "2.154.1", - "2.153.1", - "2.153.0", - "2.152.3", - "2.152.2", - "2.152.1", - "2.152.0", - "2.151.2", - "2.151.1", - "2.151.0", - "2.149.3", - "2.149.2", - "2.149.1", - "2.149.0", - "2.148.2", - "2.148.1", - "2.148.0", - "2.147.3", - "2.147.2", - "2.147.1", - "2.147.0", - "2.145.3", - "2.145.2", - "2.145.1", - "2.145.0", - "2.1.0", - "2.0.51", - "2.0.50", - "2.0.49", - "2.0.48", - "2.0.47", - "2.0.46", - "2.0.45", - "2.0.44", - "2.0.43", - "2.0.42", - "2.0.41", - "2.0.40", - "2.0.37", - "2.0.35", - "2.0.34", - "2.0.33", - "2.0.31", - "2.0.30", - "2.0.29", - "2.0.28", - "2.0.27" - ], - "nugetpublisher": [ - "0.221.0", - "0.218.1", - "0.218.0", - "0.208.1", - "0.214.0", - "0.208.0", - "0.206.0", - "0.202.0", - "0.198.0", - "0.179.0", - "0.178.0", - "0.174.0", - "0.171.0", - "0.169.2", - "0.169.1", - "0.169.0", - "0.168.0", - "0.166.1", - "0.166.0", - "0.165.0", - "0.164.0", - "0.161.0", - "0.160.0", - "0.159.0", - "0.158.1", - "0.158.0", - "0.156.1", - "0.156.0", - "0.154.3", - "0.154.2", - "0.154.1", - "0.153.1", - "0.153.0", - "0.152.1", - "0.152.0", - "0.151.0", - "0.150.0", - "0.149.0", - "0.148.1", - "0.148.0", - "0.147.0", - "0.145.1", - "0.145.0", - "0.2.46", - "0.2.45", - "0.2.44", - "0.2.43", - "0.2.42", - "0.2.41", - "0.2.40", - "0.2.39", - "0.2.38", - "0.2.37" - ], - "333b11bd-d341-40d9-afcf-b32d5ce6f25b": [ - "0.221.0", - "0.218.1", - "0.218.0", - "0.208.1", - "0.214.0", - "0.208.0", - "0.206.0", - "0.202.0", - "0.198.0", - "0.179.0", - "0.178.0", - "0.174.0", - "0.171.0", - "0.169.2", - "0.169.1", - "0.169.0", - "0.168.0", - "0.166.1", - "0.166.0", - "0.165.0", - "0.164.0", - "0.161.0", - "0.160.0", - "0.159.0", - "0.158.1", - "0.158.0", - "0.156.1", - "0.156.0", - "0.154.3", - "0.154.2", - "0.154.1", - "0.153.1", - "0.153.0", - "0.152.1", - "0.152.0", - "0.151.0", - "0.150.0", - "0.149.0", - "0.148.1", - "0.148.0", - "0.147.0", - "0.145.1", - "0.145.0", - "0.2.46", - "0.2.45", - "0.2.44", - "0.2.43", - "0.2.42", - "0.2.41", - "0.2.40", - "0.2.39", - "0.2.38", - "0.2.37" - ], - "nugetpackager": [ - "0.198.0", - "0.1.80", - "0.1.79", - "0.1.78", - "0.1.77", - "0.1.76", - "0.1.75" - ], - "333b11bd-d341-40d9-afcf-b32d5ce6f24b": [ - "0.198.0", - "0.1.80", - "0.1.79", - "0.1.78", - "0.1.77", - "0.1.76", - "0.1.75" - ], - "nugetinstaller": [ - "0.215.0", - "0.208.1", - "0.214.0", - "0.208.0", - "0.206.0", - "0.202.0", - "0.198.0", - "0.179.0", - "0.178.0", - "0.175.0", - "0.174.0", - "0.172.1", - "0.172.0", - "0.147.0", - "0.146.0", - "0.145.0", - "0.2.38", - "0.2.37", - "0.2.36", - "0.2.35", - "0.2.34", - "0.2.33" - ], - "nugetcommand": [ - "2.222.0", - "2.221.0", - "2.220.2", - "2.220.1", - "2.220.0", - "2.216.0", - "2.214.2", - "2.214.3", - "2.214.1", - "2.214.0", - "2.211.0", - "2.210.0", - "2.208.1", - "2.208.0", - "2.206.0", - "2.202.0", - "2.198.0", - "2.194.0", - "2.179.0", - "2.178.0", - "2.177.1", - "2.177.0", - "2.175.1", - "2.175.0", - "2.174.0", - "2.172.0", - "2.171.1", - "2.171.0", - "2.169.2", - "2.169.1", - "2.169.0", - "2.168.0", - "2.166.1", - "2.166.0", - "2.165.0", - "2.164.0", - "2.161.1", - "2.161.0", - "2.160.0", - "2.159.0", - "2.158.1", - "2.158.0", - "2.156.1", - "2.156.0", - "2.154.6", - "2.154.5", - "2.154.4", - "2.154.3", - "2.154.2", - "2.154.1", - "2.153.1", - "2.153.0", - "2.152.3", - "2.152.2", - "2.152.1", - "2.152.0", - "2.151.2", - "2.151.1", - "2.151.0", - "2.149.3", - "2.149.2", - "2.149.1", - "2.149.0", - "2.148.2", - "2.148.1", - "2.148.0", - "2.147.3", - "2.147.2", - "2.147.1", - "2.147.0", - "2.145.3", - "2.145.2", - "2.145.1", - "2.145.0", - "2.1.0", - "2.0.51", - "2.0.50", - "2.0.49", - "2.0.48", - "2.0.47", - "2.0.46", - "2.0.45", - "2.0.44", - "2.0.43", - "2.0.42", - "2.0.41", - "2.0.40", - "2.0.37", - "2.0.35", - "2.0.34", - "2.0.33", - "2.0.31", - "2.0.30", - "2.0.29", - "2.0.28", - "2.0.27" - ], - "nugetauthenticate": [ - "1.213.0", - "1.203.0", - "0.220.3", - "0.220.2", - "0.220.1", - "0.220.0", - "0.203.0", - "0.198.0", - "0.194.0", - "0.181.0", - "0.180.0", - "0.179.0", - "0.175.0", - "0.172.0", - "0.171.0", - "0.167.2", - "0.167.1", - "0.167.0", - "0.165.0", - "0.161.0", - "0.159.0", - "0.156.3", - "0.156.2", - "0.156.1", - "0.156.0" - ], - "f5fd8599-ccfa-4d6e-b965-4d14bed7097b": [ - "1.213.0", - "1.203.0", - "0.220.3", - "0.220.2", - "0.220.1", - "0.220.0", - "0.203.0", - "0.198.0", - "0.194.0", - "0.181.0", - "0.180.0", - "0.179.0", - "0.175.0", - "0.172.0", - "0.171.0", - "0.167.2", - "0.167.1", - "0.167.0", - "0.165.0", - "0.161.0", - "0.159.0", - "0.156.3", - "0.156.2", - "0.156.1", - "0.156.0" - ], - "npm": [ - "1.221.0", - "1.220.0", - "1.218.0", - "1.215.1", - "1.215.0", - "1.213.0", - "1.214.0", - "1.208.1", - "1.208.0", - "1.202.0", - "1.198.0", - "1.187.0", - "1.182.0", - "1.180.0", - "1.179.0", - "1.178.0", - "1.175.0", - "1.174.0", - "1.171.0", - "1.169.2", - "1.169.1", - "1.169.0", - "1.168.0", - "1.166.1", - "1.166.0", - "1.165.0", - "1.164.0", - "1.161.0", - "1.160.0", - "1.159.0", - "1.158.1", - "1.158.0", - "1.157.1", - "1.157.0", - "1.156.2", - "1.156.1", - "1.156.0", - "1.154.4", - "1.154.3", - "1.154.2", - "1.154.1", - "1.153.1", - "1.153.0", - "1.152.3", - "1.152.2", - "1.152.1", - "1.152.0", - "1.151.2", - "1.151.1", - "1.151.0", - "1.149.0", - "1.148.1", - "1.148.0", - "1.147.3", - "1.147.2", - "1.147.0", - "1.147.1", - "1.145.1", - "1.145.0", - "1.1.0", - "1.0.31", - "1.0.30", - "1.0.29", - "1.0.28", - "1.0.27", - "1.0.26", - "1.0.25", - "1.0.22", - "1.0.20", - "1.0.19", - "1.0.18", - "1.0.17", - "1.0.16", - "1.0.15", - "0.221.0", - "0.220.3", - "0.220.2", - "0.220.1", - "0.220.0", - "0.218.0", - "0.215.1", - "0.215.0", - "0.210.0", - "0.198.0", - "0.194.0", - "0.189.0", - "0.187.0", - "0.182.0", - "0.179.0", - "0.178.0", - "0.175.0", - "0.174.0", - "0.172.1", - "0.172.0", - "0.151.0", - "0.148.0", - "0.147.0", - "0.2.26", - "0.2.25", - "0.2.24", - "0.2.23" - ], - "fe47e961-9fa8-4106-8639-368c022d43ad": [ - "1.221.0", - "1.220.0", - "1.218.0", - "1.215.1", - "1.215.0", - "1.213.0", - "1.214.0", - "1.208.1", - "1.208.0", - "1.202.0", - "1.198.0", - "1.187.0", - "1.182.0", - "1.180.0", - "1.179.0", - "1.178.0", - "1.175.0", - "1.174.0", - "1.171.0", - "1.169.2", - "1.169.1", - "1.169.0", - "1.168.0", - "1.166.1", - "1.166.0", - "1.165.0", - "1.164.0", - "1.161.0", - "1.160.0", - "1.159.0", - "1.158.1", - "1.158.0", - "1.157.1", - "1.157.0", - "1.156.2", - "1.156.1", - "1.156.0", - "1.154.4", - "1.154.3", - "1.154.2", - "1.154.1", - "1.153.1", - "1.153.0", - "1.152.3", - "1.152.2", - "1.152.1", - "1.152.0", - "1.151.2", - "1.151.1", - "1.151.0", - "1.149.0", - "1.148.1", - "1.148.0", - "1.147.3", - "1.147.2", - "1.147.0", - "1.147.1", - "1.145.1", - "1.145.0", - "1.1.0", - "1.0.31", - "1.0.30", - "1.0.29", - "1.0.28", - "1.0.27", - "1.0.26", - "1.0.25", - "1.0.22", - "1.0.20", - "1.0.19", - "1.0.18", - "1.0.17", - "1.0.16", - "1.0.15", - "0.221.0", - "0.220.3", - "0.220.2", - "0.220.1", - "0.220.0", - "0.218.0", - "0.215.1", - "0.215.0", - "0.210.0", - "0.198.0", - "0.194.0", - "0.189.0", - "0.187.0", - "0.182.0", - "0.179.0", - "0.178.0", - "0.175.0", - "0.174.0", - "0.172.1", - "0.172.0", - "0.151.0", - "0.148.0", - "0.147.0", - "0.2.26", - "0.2.25", - "0.2.24", - "0.2.23" - ], - "npmauthenticate": [ - "0.218.0", - "0.216.1", - "0.216.0", - "0.215.0", - "0.214.2", - "0.214.1", - "0.214.0", - "0.208.1", - "0.208.0", - "0.206.0", - "0.202.0", - "0.201.0", - "0.198.0", - "0.179.0", - "0.178.0", - "0.174.0", - "0.171.0", - "0.169.2", - "0.169.1", - "0.169.0", - "0.168.0", - "0.166.1", - "0.166.0", - "0.165.0", - "0.164.0", - "0.161.0", - "0.160.0", - "0.159.0", - "0.158.1", - "0.158.0", - "0.156.1", - "0.156.0", - "0.154.4", - "0.154.3", - "0.154.2", - "0.154.1", - "0.153.0", - "0.152.1", - "0.152.0", - "0.151.0", - "0.150.0", - "0.149.0", - "0.148.0", - "0.147.1", - "0.147.0", - "0.145.0", - "0.0.14", - "0.0.13", - "0.0.12", - "0.0.11", - "0.0.10", - "0.0.9", - "0.0.8", - "0.0.5", - "0.0.4", - "0.0.3", - "0.0.2" - ], - "ad884ca2-732e-4b85-b2d3-ed71bcbd2788": [ - "0.218.0", - "0.216.1", - "0.216.0", - "0.215.0", - "0.214.2", - "0.214.1", - "0.214.0", - "0.208.1", - "0.208.0", - "0.206.0", - "0.202.0", - "0.201.0", - "0.198.0", - "0.179.0", - "0.178.0", - "0.174.0", - "0.171.0", - "0.169.2", - "0.169.1", - "0.169.0", - "0.168.0", - "0.166.1", - "0.166.0", - "0.165.0", - "0.164.0", - "0.161.0", - "0.160.0", - "0.159.0", - "0.158.1", - "0.158.0", - "0.156.1", - "0.156.0", - "0.154.4", - "0.154.3", - "0.154.2", - "0.154.1", - "0.153.0", - "0.152.1", - "0.152.0", - "0.151.0", - "0.150.0", - "0.149.0", - "0.148.0", - "0.147.1", - "0.147.0", - "0.145.0", - "0.0.14", - "0.0.13", - "0.0.12", - "0.0.11", - "0.0.10", - "0.0.9", - "0.0.8", - "0.0.5", - "0.0.4", - "0.0.3", - "0.0.2" - ], - "nodetool": [ - "0.222.0", - "0.220.1", - "0.220.0", - "0.218.0", - "0.213.0", - "0.211.0", - "0.210.1", - "0.210.0", - "0.200.0", - "0.198.0", - "0.192.0", - "0.189.0", - "0.186.0", - "0.185.0", - "0.179.1", - "0.179.0", - "0.176.0", - "0.166.2", - "0.166.1", - "0.166.0", - "0.160.0", - "0.159.0", - "0.153.1", - "0.153.0", - "0.151.1", - "0.151.0", - "0.149.0", - "0.148.0", - "0.145.0", - "0.136.2", - "0.136.1", - "0.136.0", - "0.124.0" - ], - "nodetaskrunnerinstaller": ["0.223.0", "0.222.0", "0.221.0", "0.218.0"], - "31c75b2b-bcdf-4706-8d7c-4da6a1959bc2": [ - "0.223.0", - "0.222.0", - "0.221.0", - "0.218.0" - ], - "mysqldeploymentonmachinegroup": [ - "1.223.0", - "1.222.1", - "1.222.0", - "1.215.0", - "1.211.0", - "1.210.0", - "1.208.1", - "1.206.1", - "1.206.0", - "1.198.0", - "1.184.0", - "1.183.0", - "1.182.0", - "1.179.0", - "1.178.0", - "1.156.11", - "1.156.10", - "1.156.9", - "1.156.8", - "1.156.7", - "1.156.6", - "1.156.5", - "1.156.4", - "1.156.3", - "1.156.2", - "1.156.1", - "1.156.0", - "1.1.4", - "1.1.3", - "1.1.2", - "1.1.1", - "1.1.0", - "1.0.6", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0" - ], - "6fec3938-df52-4c01-9f5a-8ed5f66c377e": [ - "1.223.0", - "1.222.1", - "1.222.0", - "1.215.0", - "1.211.0", - "1.210.0", - "1.208.1", - "1.206.1", - "1.206.0", - "1.198.0", - "1.184.0", - "1.183.0", - "1.182.0", - "1.179.0", - "1.178.0", - "1.156.11", - "1.156.10", - "1.156.9", - "1.156.8", - "1.156.7", - "1.156.6", - "1.156.5", - "1.156.4", - "1.156.3", - "1.156.2", - "1.156.1", - "1.156.0", - "1.1.4", - "1.1.3", - "1.1.2", - "1.1.1", - "1.1.0", - "1.0.6", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0" - ], - "maven": [ - "4.223.0", - "4.222.0", - "4.221.0", - "4.219.0", - "4.214.1", - "4.214.0", - "4.212.0", - "4.210.0", - "3.223.0", - "3.221.0", - "3.219.0", - "3.214.0", - "3.214.1", - "3.211.0", - "3.209.0", - "3.208.1", - "3.208.0", - "3.206.0", - "3.205.1", - "3.205.0", - "3.203.0", - "3.202.0", - "3.201.0", - "3.200.1", - "3.200.0", - "3.198.0", - "3.194.0", - "3.193.0", - "3.190.1", - "3.190.0", - "3.189.0", - "3.186.0", - "3.185.0", - "3.183.0", - "3.181.1", - "3.181.0", - "3.179.0", - "3.178.0", - "3.177.0", - "3.176.1", - "3.176.0", - "3.175.1", - "3.175.0", - "3.174.0", - "3.173.0", - "3.171.0", - "3.169.2", - "3.169.1", - "3.169.0", - "3.168.0", - "3.166.1", - "3.166.0", - "3.165.0", - "3.164.0", - "3.161.0", - "3.160.0", - "3.159.0", - "3.158.2", - "3.158.1", - "3.158.0", - "3.156.1", - "3.156.0", - "3.155.0", - "3.154.4", - "3.154.3", - "3.154.2", - "3.154.1", - "3.153.1", - "3.153.0", - "3.152.3", - "3.152.2", - "3.152.1", - "3.152.0", - "3.151.0", - "3.150.0", - "3.149.2", - "3.149.1", - "3.149.0", - "3.148.0", - "3.147.0", - "3.143.3", - "3.143.2", - "3.143.1", - "3.143.0", - "3.141.5", - "3.141.4", - "3.141.3", - "3.141.2", - "3.141.1", - "3.141.0", - "3.140.2", - "3.140.1", - "3.140.0", - "3.139.2", - "3.139.1", - "3.139.0", - "2.223.0", - "2.221.0", - "2.220.0", - "2.214.0", - "2.214.1", - "2.211.0", - "2.208.1", - "2.208.0", - "2.205.0", - "2.203.0", - "2.202.0", - "2.201.0", - "2.200.1", - "2.200.0", - "2.198.0", - "2.193.0", - "2.189.0", - "2.186.0", - "2.185.0", - "2.183.0", - "2.181.0", - "2.179.0", - "2.178.0", - "2.176.1", - "2.176.0", - "2.175.2", - "2.175.1", - "2.175.0", - "2.174.0", - "2.173.0", - "2.171.0", - "2.169.2", - "2.169.1", - "2.169.0", - "2.168.0", - "2.166.1", - "2.166.0", - "2.165.0", - "2.164.0", - "2.161.0", - "2.160.0", - "2.159.0", - "2.158.2", - "2.158.1", - "2.158.0", - "2.156.1", - "2.156.0", - "2.155.0", - "2.154.3", - "2.154.2", - "2.154.1", - "2.153.0", - "2.152.3", - "2.152.2", - "2.152.1", - "2.152.0", - "2.151.0", - "2.150.0", - "2.149.1", - "2.149.0", - "2.148.0", - "2.147.0", - "2.143.3", - "2.143.2", - "2.143.1", - "2.143.0", - "2.141.4", - "2.141.3", - "2.141.2", - "2.141.1", - "2.141.0", - "2.140.2", - "2.140.0", - "2.139.3", - "2.139.2", - "2.139.1", - "2.139.0", - "2.137.1", - "2.137.0", - "2.135.0" - ], - "ac4ee482-65da-4485-a532-7b085873e532": [ - "4.223.0", - "4.222.0", - "4.221.0", - "4.219.0", - "4.214.1", - "4.214.0", - "4.212.0", - "4.210.0", - "3.223.0", - "3.221.0", - "3.219.0", - "3.214.0", - "3.214.1", - "3.211.0", - "3.209.0", - "3.208.1", - "3.208.0", - "3.206.0", - "3.205.1", - "3.205.0", - "3.203.0", - "3.202.0", - "3.201.0", - "3.200.1", - "3.200.0", - "3.198.0", - "3.194.0", - "3.193.0", - "3.190.1", - "3.190.0", - "3.189.0", - "3.186.0", - "3.185.0", - "3.183.0", - "3.181.1", - "3.181.0", - "3.179.0", - "3.178.0", - "3.177.0", - "3.176.1", - "3.176.0", - "3.175.1", - "3.175.0", - "3.174.0", - "3.173.0", - "3.171.0", - "3.169.2", - "3.169.1", - "3.169.0", - "3.168.0", - "3.166.1", - "3.166.0", - "3.165.0", - "3.164.0", - "3.161.0", - "3.160.0", - "3.159.0", - "3.158.2", - "3.158.1", - "3.158.0", - "3.156.1", - "3.156.0", - "3.155.0", - "3.154.4", - "3.154.3", - "3.154.2", - "3.154.1", - "3.153.1", - "3.153.0", - "3.152.3", - "3.152.2", - "3.152.1", - "3.152.0", - "3.151.0", - "3.150.0", - "3.149.2", - "3.149.1", - "3.149.0", - "3.148.0", - "3.147.0", - "3.143.3", - "3.143.2", - "3.143.1", - "3.143.0", - "3.141.5", - "3.141.4", - "3.141.3", - "3.141.2", - "3.141.1", - "3.141.0", - "3.140.2", - "3.140.1", - "3.140.0", - "3.139.2", - "3.139.1", - "3.139.0", - "2.223.0", - "2.221.0", - "2.220.0", - "2.214.0", - "2.214.1", - "2.211.0", - "2.208.1", - "2.208.0", - "2.205.0", - "2.203.0", - "2.202.0", - "2.201.0", - "2.200.1", - "2.200.0", - "2.198.0", - "2.193.0", - "2.189.0", - "2.186.0", - "2.185.0", - "2.183.0", - "2.181.0", - "2.179.0", - "2.178.0", - "2.176.1", - "2.176.0", - "2.175.2", - "2.175.1", - "2.175.0", - "2.174.0", - "2.173.0", - "2.171.0", - "2.169.2", - "2.169.1", - "2.169.0", - "2.168.0", - "2.166.1", - "2.166.0", - "2.165.0", - "2.164.0", - "2.161.0", - "2.160.0", - "2.159.0", - "2.158.2", - "2.158.1", - "2.158.0", - "2.156.1", - "2.156.0", - "2.155.0", - "2.154.3", - "2.154.2", - "2.154.1", - "2.153.0", - "2.152.3", - "2.152.2", - "2.152.1", - "2.152.0", - "2.151.0", - "2.150.0", - "2.149.1", - "2.149.0", - "2.148.0", - "2.147.0", - "2.143.3", - "2.143.2", - "2.143.1", - "2.143.0", - "2.141.4", - "2.141.3", - "2.141.2", - "2.141.1", - "2.141.0", - "2.140.2", - "2.140.0", - "2.139.3", - "2.139.2", - "2.139.1", - "2.139.0", - "2.137.1", - "2.137.0", - "2.135.0" - ], - "mavenauthenticate": [ - "0.218.1", - "0.218.0", - "0.213.0", - "0.210.0", - "0.198.0", - "0.194.0", - "0.177.1", - "0.177.0", - "0.175.1", - "0.175.0", - "0.167.2", - "0.167.1", - "0.167.0", - "0.165.0", - "0.164.0", - "0.157.0", - "0.156.2", - "0.156.1", - "0.156.0", - "0.1.0", - "0.1.28" - ], - "d4b964f9-ea90-41bb-9526-29589628ad90": [ - "0.218.1", - "0.218.0", - "0.213.0", - "0.210.0", - "0.198.0", - "0.194.0", - "0.177.1", - "0.177.0", - "0.175.1", - "0.175.0", - "0.167.2", - "0.167.1", - "0.167.0", - "0.165.0", - "0.164.0", - "0.157.0", - "0.156.2", - "0.156.1", - "0.156.0", - "0.1.0", - "0.1.28" - ], - "manualvalidation": [ - "0.198.0", - "0.179.0", - "0.176.0", - "0.174.0", - "0.0.2", - "0.0.1" - ], - "2003ad3a-104a-451a-9238-60474ab294e6": [ - "0.198.0", - "0.179.0", - "0.176.0", - "0.174.0", - "0.0.2", - "0.0.1" - ], - "manualintervention": [ - "8.198.0", - "8.2.10", - "8.2.9", - "8.2.8", - "8.2.7", - "8.2.6", - "8.2.5", - "8.2.4" - ], - "bcb64569-d51a-4af0-9c01-ea5d05b3b622": [ - "8.198.0", - "8.2.10", - "8.2.9", - "8.2.8", - "8.2.7", - "8.2.6", - "8.2.5", - "8.2.4" - ], - "msbuild": [ - "1.217.0", - "1.214.0", - "1.212.0", - "1.211.0", - "1.208.0", - "1.199.0", - "1.207.0", - "1.206.0", - "1.198.0", - "1.197.0", - "1.192.2", - "1.192.1", - "1.192.0", - "1.188.0", - "1.187.0", - "1.186.0", - "1.183.2", - "1.183.1", - "1.183.0", - "1.179.0", - "1.178.0", - "1.166.2", - "1.166.1", - "1.166.0", - "1.161.3", - "1.161.2", - "1.161.1", - "1.161.0", - "1.160.0", - "1.151.1", - "1.151.0", - "1.147.1", - "1.147.0", - "1.146.0", - "1.120.2", - "1.120.1", - "1.120.0" - ], - "c6c4c611-aa2e-4a33-b606-5eaba2196824": [ - "1.217.0", - "1.214.0", - "1.212.0", - "1.211.0", - "1.208.0", - "1.199.0", - "1.207.0", - "1.206.0", - "1.198.0", - "1.197.0", - "1.192.2", - "1.192.1", - "1.192.0", - "1.188.0", - "1.187.0", - "1.186.0", - "1.183.2", - "1.183.1", - "1.183.0", - "1.179.0", - "1.178.0", - "1.166.2", - "1.166.1", - "1.166.0", - "1.161.3", - "1.161.2", - "1.161.1", - "1.161.0", - "1.160.0", - "1.151.1", - "1.151.0", - "1.147.1", - "1.147.0", - "1.146.0", - "1.120.2", - "1.120.1", - "1.120.0" - ], - "kubernetes": [ - "1.223.0", - "1.219.0", - "1.218.0", - "1.216.0", - "1.214.0", - "1.213.1", - "1.213.0", - "1.211.1", - "1.211.0", - "1.210.0", - "1.208.0", - "1.206.0", - "1.201.0", - "1.198.0", - "1.181.0", - "1.175.3", - "1.175.2", - "1.175.1", - "1.175.0", - "1.173.0", - "1.171.1", - "1.171.0", - "1.170.2", - "1.170.1", - "1.170.0", - "1.169.2", - "1.169.1", - "1.169.0", - "1.167.1", - "1.167.0", - "1.166.3", - "1.166.2", - "1.166.1", - "1.166.0", - "1.165.2", - "1.165.1", - "1.165.0", - "1.164.1", - "1.164.0", - "1.162.8", - "1.162.7", - "1.162.6", - "1.162.5", - "1.162.4", - "1.162.3", - "1.162.2", - "1.162.1", - "1.162.0", - "1.161.0", - "1.160.7", - "1.160.6", - "1.160.5", - "1.160.4", - "1.160.3", - "1.160.2", - "1.160.1", - "1.160.0", - "1.159.5", - "1.159.4", - "1.159.3", - "1.159.2", - "1.159.1", - "1.159.0", - "1.158.2", - "1.158.1", - "1.158.0", - "1.157.1", - "1.157.0", - "1.155.5", - "1.155.4", - "1.155.3", - "1.155.2", - "1.155.1", - "1.155.0", - "1.154.6", - "1.154.5", - "1.154.4", - "1.154.3", - "1.154.2", - "1.154.1", - "1.154.0", - "1.153.3", - "1.153.2", - "1.153.1", - "1.153.0", - "1.152.3", - "1.152.2", - "1.152.1", - "1.152.0", - "1.151.5", - "1.151.4", - "1.151.3", - "1.151.2", - "1.151.1", - "1.151.0", - "1.150.6", - "1.150.5", - "1.150.4", - "1.150.3", - "1.150.2", - "1.150.1", - "1.150.0", - "1.1.29", - "1.1.26", - "1.1.25", - "1.1.24", - "1.1.23", - "1.1.22", - "1.1.21", - "1.1.20", - "1.1.19", - "1.1.16", - "1.1.17", - "1.1.15", - "1.1.13", - "1.1.14", - "1.1.12", - "1.1.11", - "1.1.10", - "1.1.9", - "1.1.8", - "1.1.7", - "1.1.6", - "1.1.5", - "1.1.4", - "1.1.2", - "1.1.1", - "1.1.0", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0", - "0.219.0", - "0.218.1", - "0.218.0", - "0.216.0", - "0.214.0", - "0.213.0", - "0.212.0", - "0.211.1", - "0.211.0", - "0.210.0", - "0.201.0", - "0.198.0", - "0.181.0", - "0.177.0", - "0.175.3", - "0.175.2", - "0.175.1", - "0.175.0", - "0.159.3", - "0.159.2", - "0.159.1", - "0.159.0", - "0.158.0", - "0.157.0", - "0.154.6", - "0.154.5", - "0.154.4", - "0.154.3", - "0.154.2", - "0.154.1", - "0.154.0", - "0.153.3", - "0.153.2", - "0.153.1", - "0.153.0", - "0.152.2", - "0.152.1", - "0.152.0", - "0.151.3", - "0.151.2", - "0.151.1", - "0.151.0", - "0.150.4", - "0.150.3", - "0.150.2", - "0.150.1", - "0.150.0", - "0.149.0", - "0.1.41", - "0.1.40", - "0.1.38", - "0.1.37", - "0.1.36", - "0.1.35", - "0.1.34", - "0.1.33", - "0.1.32", - "0.1.31", - "0.1.30", - "0.1.29", - "0.1.28", - "0.1.27", - "0.1.26", - "0.1.25", - "0.1.24", - "0.1.23", - "0.1.22", - "0.1.21" - ], - "cbc316a2-586f-4def-be79-488a1f503564": [ - "1.223.0", - "1.219.0", - "1.218.0", - "1.216.0", - "1.214.0", - "1.213.1", - "1.213.0", - "1.211.1", - "1.211.0", - "1.210.0", - "1.208.0", - "1.206.0", - "1.201.0", - "1.198.0", - "1.181.0", - "1.175.3", - "1.175.2", - "1.175.1", - "1.175.0", - "1.173.0", - "1.171.1", - "1.171.0", - "1.170.2", - "1.170.1", - "1.170.0", - "1.169.2", - "1.169.1", - "1.169.0", - "1.167.1", - "1.167.0", - "1.166.3", - "1.166.2", - "1.166.1", - "1.166.0", - "1.165.2", - "1.165.1", - "1.165.0", - "1.164.1", - "1.164.0", - "1.162.8", - "1.162.7", - "1.162.6", - "1.162.5", - "1.162.4", - "1.162.3", - "1.162.2", - "1.162.1", - "1.162.0", - "1.161.0", - "1.160.7", - "1.160.6", - "1.160.5", - "1.160.4", - "1.160.3", - "1.160.2", - "1.160.1", - "1.160.0", - "1.159.5", - "1.159.4", - "1.159.3", - "1.159.2", - "1.159.1", - "1.159.0", - "1.158.2", - "1.158.1", - "1.158.0", - "1.157.1", - "1.157.0", - "1.155.5", - "1.155.4", - "1.155.3", - "1.155.2", - "1.155.1", - "1.155.0", - "1.154.6", - "1.154.5", - "1.154.4", - "1.154.3", - "1.154.2", - "1.154.1", - "1.154.0", - "1.153.3", - "1.153.2", - "1.153.1", - "1.153.0", - "1.152.3", - "1.152.2", - "1.152.1", - "1.152.0", - "1.151.5", - "1.151.4", - "1.151.3", - "1.151.2", - "1.151.1", - "1.151.0", - "1.150.6", - "1.150.5", - "1.150.4", - "1.150.3", - "1.150.2", - "1.150.1", - "1.150.0", - "1.1.29", - "1.1.26", - "1.1.25", - "1.1.24", - "1.1.23", - "1.1.22", - "1.1.21", - "1.1.20", - "1.1.19", - "1.1.16", - "1.1.17", - "1.1.15", - "1.1.13", - "1.1.14", - "1.1.12", - "1.1.11", - "1.1.10", - "1.1.9", - "1.1.8", - "1.1.7", - "1.1.6", - "1.1.5", - "1.1.4", - "1.1.2", - "1.1.1", - "1.1.0", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0", - "0.219.0", - "0.218.1", - "0.218.0", - "0.216.0", - "0.214.0", - "0.213.0", - "0.212.0", - "0.211.1", - "0.211.0", - "0.210.0", - "0.201.0", - "0.198.0", - "0.181.0", - "0.177.0", - "0.175.3", - "0.175.2", - "0.175.1", - "0.175.0", - "0.159.3", - "0.159.2", - "0.159.1", - "0.159.0", - "0.158.0", - "0.157.0", - "0.154.6", - "0.154.5", - "0.154.4", - "0.154.3", - "0.154.2", - "0.154.1", - "0.154.0", - "0.153.3", - "0.153.2", - "0.153.1", - "0.153.0", - "0.152.2", - "0.152.1", - "0.152.0", - "0.151.3", - "0.151.2", - "0.151.1", - "0.151.0", - "0.150.4", - "0.150.3", - "0.150.2", - "0.150.1", - "0.150.0", - "0.149.0", - "0.1.41", - "0.1.40", - "0.1.38", - "0.1.37", - "0.1.36", - "0.1.35", - "0.1.34", - "0.1.33", - "0.1.32", - "0.1.31", - "0.1.30", - "0.1.29", - "0.1.28", - "0.1.27", - "0.1.26", - "0.1.25", - "0.1.24", - "0.1.23", - "0.1.22", - "0.1.21" - ], - "kubernetesmanifest": [ - "1.223.3", - "1.223.2", - "1.223.1", - "1.223.0", - "1.221.0", - "1.219.0", - "0.224.0", - "0.219.0", - "0.218.0", - "0.212.0", - "0.211.0", - "0.210.0", - "0.208.0", - "0.201.0", - "0.198.0", - "0.185.0", - "0.182.0", - "0.181.0", - "0.179.0", - "0.178.0", - "0.175.1", - "0.175.0", - "0.173.1", - "0.173.0", - "0.169.4", - "0.169.3", - "0.169.2", - "0.169.1", - "0.169.0", - "0.167.1", - "0.167.0", - "0.166.1", - "0.166.0", - "0.165.4", - "0.165.3", - "0.165.2", - "0.165.1", - "0.165.0", - "0.164.1", - "0.164.0", - "0.163.1", - "0.163.0", - "0.162.1", - "0.162.0", - "0.160.7", - "0.160.6", - "0.160.5", - "0.160.4", - "0.160.3", - "0.160.2", - "0.160.1", - "0.160.0", - "0.159.3", - "0.159.2", - "0.159.1", - "0.159.0", - "0.158.1", - "0.158.0", - "0.157.1", - "0.157.0", - "0.156.0", - "0.155.6", - "0.155.5", - "0.155.4", - "0.155.3", - "0.155.2", - "0.155.1", - "0.155.0", - "0.154.7", - "0.154.6", - "0.154.5", - "0.154.4", - "0.154.3", - "0.154.2", - "0.154.1", - "0.154.0", - "0.153.4", - "0.153.3", - "0.153.2", - "0.153.1", - "0.153.0", - "0.152.6", - "0.152.2", - "0.152.5", - "0.152.1", - "0.152.0", - "0.151.7", - "0.151.6", - "0.151.5", - "0.151.4", - "0.151.2", - "0.151.1", - "0.151.0", - "0.150.2", - "0.150.0", - "0.150.5", - "0.149.0", - "0.0.11", - "0.0.5", - "0.0.4", - "0.0.2", - "0.0.10", - "0.0.1", - "0.0.33", - "0.0.30" - ], - "dee316a2-586f-4def-be79-488a1f503dfe": [ - "1.223.3", - "1.223.2", - "1.223.1", - "1.223.0", - "1.221.0", - "1.219.0", - "0.224.0", - "0.219.0", - "0.218.0", - "0.212.0", - "0.211.0", - "0.210.0", - "0.208.0", - "0.201.0", - "0.198.0", - "0.185.0", - "0.182.0", - "0.181.0", - "0.179.0", - "0.178.0", - "0.175.1", - "0.175.0", - "0.173.1", - "0.173.0", - "0.169.4", - "0.169.3", - "0.169.2", - "0.169.1", - "0.169.0", - "0.167.1", - "0.167.0", - "0.166.1", - "0.166.0", - "0.165.4", - "0.165.3", - "0.165.2", - "0.165.1", - "0.165.0", - "0.164.1", - "0.164.0", - "0.163.1", - "0.163.0", - "0.162.1", - "0.162.0", - "0.160.7", - "0.160.6", - "0.160.5", - "0.160.4", - "0.160.3", - "0.160.2", - "0.160.1", - "0.160.0", - "0.159.3", - "0.159.2", - "0.159.1", - "0.159.0", - "0.158.1", - "0.158.0", - "0.157.1", - "0.157.0", - "0.156.0", - "0.155.6", - "0.155.5", - "0.155.4", - "0.155.3", - "0.155.2", - "0.155.1", - "0.155.0", - "0.154.7", - "0.154.6", - "0.154.5", - "0.154.4", - "0.154.3", - "0.154.2", - "0.154.1", - "0.154.0", - "0.153.4", - "0.153.3", - "0.153.2", - "0.153.1", - "0.153.0", - "0.152.6", - "0.152.2", - "0.152.5", - "0.152.1", - "0.152.0", - "0.151.7", - "0.151.6", - "0.151.5", - "0.151.4", - "0.151.2", - "0.151.1", - "0.151.0", - "0.150.2", - "0.150.0", - "0.150.5", - "0.149.0", - "0.0.11", - "0.0.5", - "0.0.4", - "1.0.4" - ], - "kubernetesmanifestbased": ["1.0.4", "0.0.1", "0.0.11"], - "dee316a2-586f-4def-be79-488a1f503dee": [ - "0.0.1", - "0.0.11", - "0.0.2", - "0.0.10", - "0.0.33", - "0.0.30" - ], - "kubectlinstaller": [ - "0.224.0", - "0.218.0", - "0.210.0", - "0.198.0", - "0.181.0", - "0.175.1", - "0.175.0", - "0.171.0", - "0.169.1", - "0.169.0", - "0.167.1", - "0.167.0", - "0.166.1", - "0.166.0", - "0.165.1", - "0.165.0", - "0.164.0", - "0.162.1", - "0.162.0", - "0.160.0", - "0.159.3", - "0.159.2", - "0.159.1", - "0.159.0", - "0.158.0", - "0.154.3", - "0.154.2", - "0.154.1", - "0.154.0", - "0.153.3", - "0.153.2", - "0.153.1", - "0.153.0", - "0.152.1", - "0.152.0", - "0.151.1", - "0.151.0", - "0.150.0" - ], - "8413c881-4959-43d5-8840-b4ea0ffc5cfd": [ - "0.224.0", - "0.218.0", - "0.210.0", - "0.198.0", - "0.181.0", - "0.175.1", - "0.175.0", - "0.171.0", - "0.169.1", - "0.169.0", - "0.167.1", - "0.167.0", - "0.166.1", - "0.166.0", - "0.165.1", - "0.165.0", - "0.164.0", - "0.162.1", - "0.162.0", - "0.160.0", - "0.159.3", - "0.159.2", - "0.159.1", - "0.159.0", - "0.158.0", - "0.154.3", - "0.154.2", - "0.154.1", - "0.154.0", - "0.153.3", - "0.153.2", - "0.153.1", - "0.153.0", - "0.152.1", - "0.152.0", - "0.151.1", - "0.151.0", - "0.150.0" - ], - "jenkinsqueuejob": [ - "2.217.0", - "2.211.0", - "2.209.0", - "2.200.0", - "2.199.0", - "2.198.0", - "2.193.0", - "2.192.1", - "2.192.0", - "2.191.0", - "2.189.0", - "2.181.0", - "2.173.0", - "2.171.0", - "2.167.2", - "2.167.1", - "2.167.0", - "2.151.1", - "2.151.0", - "2.145.0", - "2.144.0", - "2.142.2", - "2.142.1", - "2.142.0", - "2.137.1", - "2.137.0", - "2.136.0", - "2.131.0" - ], - "c24b86d4-4256-4925-9a29-246f81aa64a7": [ - "2.217.0", - "2.211.0", - "2.209.0", - "2.200.0", - "2.199.0", - "2.198.0", - "2.193.0", - "2.192.1", - "2.192.0", - "2.191.0", - "2.189.0", - "2.181.0", - "2.173.0", - "2.171.0", - "2.167.2", - "2.167.1", - "2.167.0", - "2.151.1", - "2.151.0", - "2.145.0", - "2.144.0", - "2.142.2", - "2.142.1", - "2.142.0", - "2.137.1", - "2.137.0", - "2.136.0", - "2.131.0" - ], - "jenkinsdownloadartifacts": [ - "1.220.0", - "1.217.1", - "1.217.0", - "1.216.1", - "1.216.0", - "1.214.0", - "1.212.0", - "1.211.0", - "1.208.0", - "1.206.0", - "1.203.0", - "1.198.0", - "1.190.0", - "1.175.0", - "1.155.8", - "1.155.7", - "1.155.6", - "1.155.5", - "1.155.4", - "1.155.3", - "1.155.2", - "1.155.1", - "1.155.0", - "1.154.0", - "1.151.2", - "1.151.1", - "1.151.0", - "1.147.2", - "1.147.1", - "1.147.0", - "1.146.0", - "1.141.3", - "1.141.2", - "1.141.1", - "1.141.0", - "1.138.0", - "1.137.0", - "1.136.0", - "1.135.0" - ], - "86c37a92-59a7-444b-93c7-220fcf91e29c": [ - "1.220.0", - "1.217.1", - "1.217.0", - "1.216.1", - "1.216.0", - "1.214.0", - "1.212.0", - "1.211.0", - "1.208.0", - "1.206.0", - "1.203.0", - "1.198.0", - "1.190.0", - "1.175.0", - "1.155.8", - "1.155.7", - "1.155.6", - "1.155.5", - "1.155.4", - "1.155.3", - "1.155.2", - "1.155.1", - "1.155.0", - "1.154.0", - "1.151.2", - "1.151.1", - "1.151.0", - "1.147.2", - "1.147.1", - "1.147.0", - "1.146.0", - "1.141.3", - "1.141.2", - "1.141.1", - "1.141.0", - "1.138.0", - "1.137.0", - "1.136.0", - "1.135.0" - ], - "javatoolinstaller": [ - "0.223.0", - "0.221.0", - "0.220.1", - "0.220.0", - "0.218.0", - "0.217.1", - "0.217.0", - "0.216.2", - "0.216.1", - "0.216.0", - "0.211.0", - "0.209.0", - "0.208.0", - "0.206.0", - "0.205.0", - "0.204.0", - "0.200.1", - "0.200.0", - "0.198.0", - "0.194.0", - "0.193.0", - "0.189.0", - "0.188.1", - "0.188.0", - "0.186.1", - "0.186.0", - "0.182.0", - "0.180.0", - "0.179.0", - "0.177.0", - "0.176.0", - "0.175.1", - "0.175.0", - "0.174.2", - "0.174.1", - "0.174.0", - "0.173.1", - "0.173.0", - "0.171.0", - "0.170.1", - "0.170.0", - "0.167.1", - "0.167.0", - "0.165.0", - "0.151.10", - "0.151.9", - "0.151.8", - "0.151.7", - "0.151.6", - "0.151.5", - "0.151.4", - "0.151.3", - "0.151.2", - "0.151.1", - "0.151.0", - "0.141.4", - "0.141.3", - "0.141.2", - "0.141.1", - "0.141.0", - "0.140.0", - "0.138.0", - "0.137.0", - "0.136.0", - "0.134.1" - ], - "c0e0b74f-0931-47c7-ac27-7c5a19456a36": [ - "0.223.0", - "0.221.0", - "0.220.1", - "0.220.0", - "0.218.0", - "0.217.1", - "0.217.0", - "0.216.2", - "0.216.1", - "0.216.0", - "0.211.0", - "0.209.0", - "0.208.0", - "0.206.0", - "0.205.0", - "0.204.0", - "0.200.1", - "0.200.0", - "0.198.0", - "0.194.0", - "0.193.0", - "0.189.0", - "0.188.1", - "0.188.0", - "0.186.1", - "0.186.0", - "0.182.0", - "0.180.0", - "0.179.0", - "0.177.0", - "0.176.0", - "0.175.1", - "0.175.0", - "0.174.2", - "0.174.1", - "0.174.0", - "0.173.1", - "0.173.0", - "0.171.0", - "0.170.1", - "0.170.0", - "0.167.1", - "0.167.0", - "0.165.0", - "0.151.10", - "0.151.9", - "0.151.8", - "0.151.7", - "0.151.6", - "0.151.5", - "0.151.4", - "0.151.3", - "0.151.2", - "0.151.1", - "0.151.0", - "0.141.4", - "0.141.3", - "0.141.2", - "0.141.1", - "0.141.0", - "0.140.0", - "0.138.0", - "0.137.0", - "0.136.0", - "0.134.1" - ], - "invokerestapi": [ - "1.220.0", - "1.218.0", - "1.217.0", - "1.198.0", - "1.152.3", - "1.152.2", - "1.152.1", - "1.152.0", - "1.0.7", - "1.0.6", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1" - ], - "9c3e8943-130d-4c78-ac63-8af81df62dfb": [ - "1.220.0", - "1.218.0", - "1.217.0", - "1.198.0", - "1.152.3", - "1.152.2", - "1.152.1", - "1.152.0", - "1.0.7", - "1.0.6", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1" - ], - "installsshkey": [ - "0.211.0", - "0.200.0", - "0.198.0", - "0.193.0", - "0.189.0", - "0.186.0", - "0.181.0", - "0.180.2", - "0.180.1", - "0.180.0", - "0.175.0", - "0.174.0", - "0.172.0", - "0.171.0", - "0.170.1", - "0.170.0", - "0.169.1", - "0.169.0", - "0.156.1", - "0.156.0", - "0.153.0", - "0.151.2", - "0.151.1", - "0.151.0", - "0.150.1", - "0.150.0", - "0.141.2", - "0.141.1", - "0.141.0", - "0.137.1", - "0.137.0", - "0.136.0", - "0.119.0" - ], - "5c9af2eb-5fc5-42dc-9b91-dc234a8c4400": [ - "0.211.0", - "0.200.0", - "0.198.0", - "0.193.0", - "0.189.0", - "0.186.0", - "0.181.0", - "0.180.2", - "0.180.1", - "0.180.0", - "0.175.0", - "0.174.0", - "0.172.0", - "0.171.0", - "0.170.1", - "0.170.0", - "0.169.1", - "0.169.0", - "0.156.1", - "0.156.0", - "0.153.0", - "0.151.2", - "0.151.1", - "0.151.0", - "0.150.1", - "0.150.0", - "0.141.2", - "0.141.1", - "0.141.0", - "0.137.1", - "0.137.0", - "0.136.0", - "0.119.0" - ], - "installappleprovisioningprofile": [ - "1.220.0", - "1.212.0", - "1.200.0", - "1.198.0", - "1.193.0", - "1.189.0", - "1.186.0", - "1.181.0", - "1.184.0", - "1.180.1", - "1.180.0", - "1.178.0", - "1.176.0", - "1.175.1", - "1.175.0", - "1.171.0", - "1.170.2", - "1.170.1", - "1.170.0", - "1.157.1", - "1.157.0", - "1.156.0", - "1.153.0", - "1.151.2", - "1.151.1", - "1.151.0", - "1.150.0", - "1.149.0", - "1.144.0", - "1.143.0", - "1.141.2", - "1.141.1", - "1.141.0", - "1.137.0", - "1.136.0", - "1.134.0" - ], - "0f9f66ca-250e-40fd-9678-309bcd439d5e": [ - "1.220.0", - "1.212.0", - "1.200.0", - "1.198.0", - "1.193.0", - "1.189.0", - "1.186.0", - "1.181.0", - "1.184.0", - "1.180.1", - "1.180.0", - "1.178.0", - "1.176.0", - "1.175.1", - "1.175.0", - "1.171.0", - "1.170.2", - "1.170.1", - "1.170.0", - "1.157.1", - "1.157.0", - "1.156.0", - "1.153.0", - "1.151.2", - "1.151.1", - "1.151.0", - "1.150.0", - "1.149.0", - "1.144.0", - "1.143.0", - "1.141.2", - "1.141.1", - "1.141.0", - "1.137.0", - "1.136.0", - "1.134.0" - ], - "installapplecertificate": [ - "2.220.0", - "2.219.0", - "2.214.0", - "2.212.0", - "2.200.0", - "2.198.1", - "2.198.0", - "2.193.0", - "2.189.0", - "2.186.0", - "2.181.0", - "2.180.1", - "2.180.0", - "2.178.0", - "2.176.0", - "2.175.1", - "2.175.0", - "2.170.1", - "2.170.0", - "2.157.1", - "2.157.0", - "2.156.0", - "2.153.0", - "2.151.2", - "2.151.1", - "2.151.0", - "2.150.1", - "2.150.0", - "2.149.0", - "2.145.0", - "2.141.2", - "2.141.1", - "2.141.0", - "2.139.0", - "2.137.0", - "2.136.0", - "2.134.1" - ], - "d2eff759-736d-4b7b-8554-7ba0960d49d6": [ - "2.220.0", - "2.219.0", - "2.214.0", - "2.212.0", - "2.200.0", - "2.198.1", - "2.198.0", - "2.193.0", - "2.189.0", - "2.186.0", - "2.181.0", - "2.180.1", - "2.180.0", - "2.178.0", - "2.176.0", - "2.175.1", - "2.175.0", - "2.170.1", - "2.170.0", - "2.157.1", - "2.157.0", - "2.156.0", - "2.153.0", - "2.151.2", - "2.151.1", - "2.151.0", - "2.150.1", - "2.150.0", - "2.149.0", - "2.145.0", - "2.141.2", - "2.141.1", - "2.141.0", - "2.139.0", - "2.137.0", - "2.136.0", - "2.134.1" - ], - "iiswebappmanagementonmachinegroup": [ - "0.198.0", - "0.5.15", - "0.5.14", - "0.5.13", - "0.5.12", - "0.5.11", - "0.5.10", - "0.5.9", - "0.5.8", - "0.5.7", - "0.5.6", - "0.5.5" - ], - "1b2aec60-dc49-11e6-9b76-63056e018cac": [ - "0.198.0", - "0.5.15", - "0.5.14", - "0.5.13", - "0.5.12", - "0.5.11", - "0.5.10", - "0.5.9", - "0.5.8", - "0.5.7", - "0.5.6", - "0.5.5" - ], - "iiswebappdeploymentonmachinegroup": [ - "0.222.0", - "0.217.0", - "0.216.0", - "0.215.0", - "0.208.0", - "0.198.0", - "0.184.2", - "0.184.1", - "0.184.0", - "0.179.0", - "0.178.0", - "0.156.13", - "0.156.11", - "0.156.10", - "0.156.9", - "0.156.8", - "0.156.7", - "0.156.6", - "0.156.5", - "0.156.4", - "0.156.3", - "0.156.2", - "0.156.1", - "0.156.0", - "0.0.59", - "0.0.58", - "0.0.57", - "0.0.56", - "0.0.55", - "0.0.54", - "0.0.53", - "0.0.52", - "0.0.51", - "0.0.50", - "0.0.49", - "0.0.48", - "0.0.47", - "0.0.46", - "0.0.45", - "0.0.44", - "0.0.43", - "0.0.42", - "0.0.41", - "0.0.40", - "0.0.39" - ], - "1b467810-6725-4b6d-accd-886174c09bba": [ - "0.222.0", - "0.217.0", - "0.216.0", - "0.215.0", - "0.208.0", - "0.198.0", - "0.184.2", - "0.184.1", - "0.184.0", - "0.179.0", - "0.178.0", - "0.156.13", - "0.156.11", - "0.156.10", - "0.156.9", - "0.156.8", - "0.156.7", - "0.156.6", - "0.156.5", - "0.156.4", - "0.156.3", - "0.156.2", - "0.156.1", - "0.156.0", - "0.0.59", - "0.0.58", - "0.0.57", - "0.0.56", - "0.0.55", - "0.0.54", - "0.0.53", - "0.0.52", - "0.0.51", - "0.0.50", - "0.0.49", - "0.0.48", - "0.0.47", - "0.0.46", - "0.0.45", - "0.0.44", - "0.0.43", - "0.0.42", - "0.0.41", - "0.0.40", - "0.0.39" - ], - "iiswebappdeployment": [ - "1.198.0", - "1.0.30", - "1.0.29", - "1.0.28", - "1.0.27", - "1.0.26", - "1.0.25", - "1.0.24", - "1.0.20", - "1.0.19", - "1.0.18", - "1.0.17", - "1.0.16", - "1.0.15", - "1.0.14", - "1.0.13", - "1.0.12", - "1.0.11", - "1.0.10", - "1.0.9", - "1.0.8", - "1.0.7", - "1.0.5", - "1.0.6", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0", - "1.1.6", - "1.1.0", - "1.2.2", - "1.2.1" - ], - "89a3a82d-4b3e-4a09-8d40-a793849dc94f": [ - "1.198.0", - "1.0.30", - "1.0.29", - "1.0.28", - "1.0.27", - "1.0.26", - "1.0.25", - "1.0.24", - "1.0.20", - "1.0.19", - "1.0.18", - "1.0.17", - "1.0.16", - "1.0.15", - "1.0.14", - "1.0.13", - "1.0.12", - "1.0.11", - "1.0.10", - "1.0.9", - "1.0.8", - "1.0.7", - "1.0.5", - "1.0.6", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0", - "1.1.6", - "1.1.0", - "1.2.2", - "1.2.1" - ], - "helminstaller": [ - "1.223.0", - "1.218.0", - "1.215.0", - "1.210.0", - "1.198.0", - "1.181.0", - "1.180.0", - "1.175.1", - "1.175.0", - "1.171.0", - "1.169.1", - "1.169.0", - "1.167.1", - "1.167.0", - "1.166.1", - "1.166.0", - "1.165.1", - "1.165.0", - "1.164.0", - "1.162.1", - "1.162.0", - "1.161.0", - "1.159.0", - "1.158.0", - "1.155.1", - "1.155.0", - "1.154.2", - "1.154.1", - "1.154.0", - "1.153.2", - "1.153.1", - "1.153.0", - "1.152.1", - "1.152.0", - "1.151.1", - "1.151.0", - "1.150.0", - "0.223.0", - "0.218.0", - "0.215.0", - "0.213.0", - "0.210.0", - "0.198.0", - "0.181.0", - "0.180.0", - "0.177.0", - "0.175.1", - "0.175.0", - "0.167.2", - "0.167.1", - "0.167.0", - "0.161.0", - "0.155.1", - "0.155.0", - "0.154.0", - "0.153.1", - "0.153.0", - "0.152.1", - "0.152.0", - "0.151.1", - "0.151.0", - "0.1.15", - "0.1.14", - "0.1.13", - "0.1.12", - "0.1.11", - "0.1.10", - "0.1.9", - "0.1.8", - "0.1.7", - "0.1.6", - "0.1.5", - "0.1.4", - "0.1.3" - ], - "068d5909-43e6-48c5-9e01-7c8a94816220": [ - "1.223.0", - "1.218.0", - "1.215.0", - "1.210.0", - "1.198.0", - "1.181.0", - "1.180.0", - "1.175.1", - "1.175.0", - "1.171.0", - "1.169.1", - "1.169.0", - "1.167.1", - "1.167.0", - "1.166.1", - "1.166.0", - "1.165.1", - "1.165.0", - "1.164.0", - "1.162.1", - "1.162.0", - "1.161.0", - "1.159.0", - "1.158.0", - "1.155.1", - "1.155.0", - "1.154.2", - "1.154.1", - "1.154.0", - "1.153.2", - "1.153.1", - "1.153.0", - "1.152.1", - "1.152.0", - "1.151.1", - "1.151.0", - "1.150.0", - "0.223.0", - "0.218.0", - "0.215.0", - "0.213.0", - "0.210.0", - "0.198.0", - "0.181.0", - "0.180.0", - "0.177.0", - "0.175.1", - "0.175.0", - "0.167.2", - "0.167.1", - "0.167.0", - "0.161.0", - "0.155.1", - "0.155.0", - "0.154.0", - "0.153.1", - "0.153.0", - "0.152.1", - "0.152.0", - "0.151.1", - "0.151.0", - "0.1.15", - "0.1.14", - "0.1.13", - "0.1.12", - "0.1.11", - "0.1.10", - "0.1.9", - "0.1.8", - "0.1.7", - "0.1.6", - "0.1.5", - "0.1.4", - "0.1.3" - ], - "helmdeploy": [ - "0.224.0", - "0.223.1", - "0.223.0", - "0.218.0", - "0.217.3", - "0.217.2", - "0.217.1", - "0.217.0", - "0.216.1", - "0.216.0", - "0.215.0", - "0.214.0", - "0.212.0", - "0.211.1", - "0.211.0", - "0.210.0", - "0.208.0", - "0.201.0", - "0.198.0", - "0.183.0", - "0.181.0", - "0.180.0", - "0.179.0", - "0.178.0", - "0.177.0", - "0.176.1", - "0.176.0", - "0.175.4", - "0.175.3", - "0.175.2", - "0.175.1", - "0.175.0", - "0.173.0", - "0.172.3", - "0.172.2", - "0.172.1", - "0.172.0", - "0.171.3", - "0.171.2", - "0.171.1", - "0.171.0", - "0.170.2", - "0.170.1", - "0.170.0", - "0.169.2", - "0.169.1", - "0.168.2", - "0.168.1", - "0.168.0", - "0.167.0", - "0.166.2", - "0.166.1", - "0.166.0", - "0.165.1", - "0.165.0", - "0.164.2", - "0.164.1", - "0.164.0", - "0.162.8", - "0.162.7", - "0.162.6", - "0.162.5", - "0.162.4", - "0.162.3", - "0.162.2", - "0.162.1", - "0.162.0", - "0.160.0", - "0.159.7", - "0.159.6", - "0.159.5", - "0.159.4", - "0.159.2", - "0.159.3", - "0.159.1", - "0.159.0", - "0.158.1", - "0.158.0", - "0.156.3", - "0.156.2", - "0.156.1", - "0.156.0", - "0.155.0", - "0.154.4", - "0.154.3", - "0.154.2", - "0.154.1", - "0.154.0", - "0.153.3", - "0.153.2", - "0.153.1", - "0.153.0", - "0.152.3", - "0.152.2", - "0.152.1", - "0.152.0", - "0.151.3", - "0.151.2", - "0.151.1", - "0.151.0", - "0.138.16", - "0.138.15", - "0.138.14", - "0.138.13", - "0.138.11", - "0.138.12", - "0.138.10", - "0.138.9", - "0.138.8", - "0.138.7", - "0.138.6", - "0.138.5", - "0.138.4", - "0.138.3", - "0.138.2", - "0.138.1", - "0.138.0", - "0.137.3", - "0.137.2", - "0.137.1", - "0.137.0", - "0.1.9", - "0.1.8" - ], - "afa7d54d-537b-4dc8-b60a-e0eeea2c9a87": [ - "0.224.0", - "0.223.1", - "0.223.0", - "0.218.0", - "0.217.3", - "0.217.2", - "0.217.1", - "0.217.0", - "0.216.1", - "0.216.0", - "0.215.0", - "0.214.0", - "0.212.0", - "0.211.1", - "0.211.0", - "0.210.0", - "0.208.0", - "0.201.0", - "0.198.0", - "0.183.0", - "0.181.0", - "0.180.0", - "0.179.0", - "0.178.0", - "0.177.0", - "0.176.1", - "0.176.0", - "0.175.4", - "0.175.3", - "0.175.2", - "0.175.1", - "0.175.0", - "0.173.0", - "0.172.3", - "0.172.2", - "0.172.1", - "0.172.0", - "0.171.3", - "0.171.2", - "0.171.1", - "0.171.0", - "0.170.2", - "0.170.1", - "0.170.0", - "0.169.2", - "0.169.1", - "0.168.2", - "0.168.1", - "0.168.0", - "0.167.0", - "0.166.2", - "0.166.1", - "0.166.0", - "0.165.1", - "0.165.0", - "0.164.2", - "0.164.1", - "0.164.0", - "0.162.8", - "0.162.7", - "0.162.6", - "0.162.5", - "0.162.4", - "0.162.3", - "0.162.2", - "0.162.1", - "0.162.0", - "0.160.0", - "0.159.7", - "0.159.6", - "0.159.5", - "0.159.4", - "0.159.2", - "0.159.3", - "0.159.1", - "0.159.0", - "0.158.1", - "0.158.0", - "0.156.3", - "0.156.2", - "0.156.1", - "0.156.0", - "0.155.0", - "0.154.4", - "0.154.3", - "0.154.2", - "0.154.1", - "0.154.0", - "0.153.3", - "0.153.2", - "0.153.1", - "0.153.0", - "0.152.3", - "0.152.2", - "0.152.1", - "0.152.0", - "0.151.3", - "0.151.2", - "0.151.1", - "0.151.0", - "0.138.16", - "0.138.15", - "0.138.14", - "0.138.13", - "0.138.11", - "0.138.12", - "0.138.10", - "0.138.9", - "0.138.8", - "0.138.7", - "0.138.6", - "0.138.5", - "0.138.4", - "0.138.3", - "0.138.2", - "0.138.1", - "0.138.0", - "0.137.3", - "0.137.2", - "0.137.1", - "0.137.0", - "0.1.9", - "0.1.8" - ], - "gulp": [ - "1.211.0", - "1.206.0", - "1.198.0", - "1.182.0", - "1.166.2", - "1.166.1", - "1.166.0", - "1.158.0", - "1.0.2", - "1.0.1", - "1.0.0", - "0.211.0", - "0.200.0", - "0.198.0", - "0.189.0", - "0.182.0", - "0.166.2", - "0.166.1", - "0.166.0", - "0.151.1", - "0.151.0", - "0.141.2", - "0.141.1", - "0.141.0", - "0.130.0" - ], - "b82cfbe4-34f9-40f5-889e-c8842ca9dd9d": [ - "1.211.0", - "1.206.0", - "1.198.0", - "1.182.0", - "1.166.2", - "1.166.1", - "1.166.0", - "1.158.0", - "1.0.2", - "1.0.1", - "1.0.0", - "0.211.0", - "0.200.0", - "0.198.0", - "0.189.0", - "0.182.0", - "0.166.2", - "0.166.1", - "0.166.0", - "0.151.1", - "0.151.0", - "0.141.2", - "0.141.1", - "0.141.0", - "0.130.0" - ], - "grunt": [ - "0.211.0", - "0.200.0", - "0.198.0", - "0.189.0", - "0.182.0", - "0.166.2", - "0.166.1", - "0.166.0", - "0.151.2", - "0.151.1", - "0.151.0", - "0.141.2", - "0.141.1", - "0.141.0", - "0.130.0" - ], - "521d1e15-f5fb-4b73-a93b-b2fe88a9a286": [ - "0.211.0", - "0.200.0", - "0.198.0", - "0.189.0", - "0.182.0", - "0.166.2", - "0.166.1", - "0.166.0", - "0.151.2", - "0.151.1", - "0.151.0", - "0.141.2", - "0.141.1", - "0.141.0", - "0.130.0" - ], - "gradle": [ - "3.223.0", - "3.221.0", - "3.219.0", - "3.216.0", - "3.208.0", - "3.205.0", - "3.204.0", - "3.200.0", - "3.198.0", - "3.192.0", - "2.223.0", - "2.219.0", - "2.211.0", - "2.208.0", - "2.200.2", - "2.200.1", - "2.200.0", - "2.198.0", - "2.191.0", - "2.189.0", - "2.186.0", - "2.185.0", - "2.181.0", - "2.180.0", - "2.178.0", - "2.176.0", - "2.175.1", - "2.175.0", - "2.173.0", - "2.163.2", - "2.163.1", - "2.163.0", - "2.158.0", - "2.155.0", - "2.153.0", - "2.152.2", - "2.152.1", - "2.152.0", - "2.151.1", - "2.151.0", - "2.149.1", - "2.149.0", - "2.148.0", - "2.143.2", - "2.143.1", - "2.143.0", - "2.141.2", - "2.141.1", - "2.141.0", - "2.140.0", - "2.139.1", - "2.139.0", - "2.137.1", - "2.137.0", - "2.136.0", - "2.135.0" - ], - "8d8eebd8-2b94-4c97-85af-839254cc6da4": [ - "3.223.0", - "3.221.0", - "3.219.0", - "3.216.0", - "3.208.0", - "3.205.0", - "3.204.0", - "3.200.0", - "3.198.0", - "3.192.0", - "2.223.0", - "2.219.0", - "2.211.0", - "2.208.0", - "2.200.2", - "2.200.1", - "2.200.0", - "2.198.0", - "2.191.0", - "2.189.0", - "2.186.0", - "2.185.0", - "2.181.0", - "2.180.0", - "2.178.0", - "2.176.0", - "2.175.1", - "2.175.0", - "2.173.0", - "2.163.2", - "2.163.1", - "2.163.0", - "2.158.0", - "2.155.0", - "2.153.0", - "2.152.2", - "2.152.1", - "2.152.0", - "2.151.1", - "2.151.0", - "2.149.1", - "2.149.0", - "2.148.0", - "2.143.2", - "2.143.1", - "2.143.0", - "2.141.2", - "2.141.1", - "2.141.0", - "2.140.0", - "2.139.1", - "2.139.0", - "2.137.1", - "2.137.0", - "2.136.0", - "2.135.0" - ], - "go": [ - "0.216.0", - "0.210.0", - "0.198.0", - "0.4.2", - "0.4.1", - "0.4.0", - "0.3.2", - "0.3.1", - "0.3.0", - "0.2.6", - "0.2.5", - "0.2.4", - "0.2.3", - "0.2.2", - "0.2.1", - "0.2.0" - ], - "34b37fdd-bbf7-4ef1-b37c-9652ca7bb355": [ - "0.216.0", - "0.210.0", - "0.198.0", - "0.4.2", - "0.4.1", - "0.4.0", - "0.3.2", - "0.3.1", - "0.3.0", - "0.2.6", - "0.2.5", - "0.2.4", - "0.2.3", - "0.2.2", - "0.2.1", - "0.2.0" - ], - "gotool": [ - "0.214.0", - "0.207.0", - "0.198.0", - "0.180.0", - "0.179.0", - "0.3.2", - "0.3.1", - "0.3.0", - "0.2.7", - "0.2.6", - "0.2.5", - "0.2.4", - "0.2.3", - "0.2.2", - "0.2.1", - "0.2.0" - ], - "334727f4-9495-4f9d-a391-fc621d671474": [ - "0.214.0", - "0.207.0", - "0.198.0", - "0.180.0", - "0.179.0", - "0.3.2", - "0.3.1", - "0.3.0", - "0.2.7", - "0.2.6", - "0.2.5", - "0.2.4", - "0.2.3", - "0.2.2", - "0.2.1", - "0.2.0" - ], - "githubrelease": [ - "1.218.0", - "1.217.2", - "1.217.1", - "1.217.0", - "1.211.1", - "1.211.0", - "1.210.0", - "1.201.0", - "1.198.0", - "1.188.0", - "1.181.0", - "1.179.0", - "1.175.1", - "1.175.0", - "1.160.5", - "1.160.4", - "1.160.3", - "1.160.2", - "1.160.1", - "1.0.1", - "1.0.0", - "0.221.0", - "0.211.0", - "0.198.0", - "0.181.0", - "0.179.0", - "0.175.1", - "0.175.0", - "0.160.5", - "0.160.4", - "0.160.3", - "0.160.2", - "0.160.1", - "0.157.1", - "0.157.0", - "0.156.0", - "0.155.0", - "0.153.0", - "0.152.1", - "0.152.0", - "0.151.3", - "0.151.2", - "0.151.1", - "0.151.0", - "0.150.0", - "0.149.1", - "0.149.0", - "0.148.2", - "0.148.1", - "0.148.0", - "0.0.5", - "0.0.4", - "0.0.2", - "0.0.1" - ], - "7b5a6198-adf8-4b16-9939-7addf85708b2": [ - "1.218.0", - "1.217.2", - "1.217.1", - "1.217.0", - "1.211.1", - "1.211.0", - "1.210.0", - "1.201.0", - "1.198.0", - "1.188.0", - "1.181.0", - "1.179.0", - "1.175.1", - "1.175.0", - "1.160.5", - "1.160.4", - "1.160.3", - "1.160.2", - "1.160.1", - "1.0.1", - "1.0.0", - "0.221.0", - "0.211.0", - "0.198.0", - "0.181.0", - "0.179.0", - "0.175.1", - "0.175.0", - "0.160.5", - "0.160.4", - "0.160.3", - "0.160.2", - "0.160.1", - "0.157.1", - "0.157.0", - "0.156.0", - "0.155.0", - "0.153.0", - "0.152.1", - "0.152.0", - "0.151.3", - "0.151.2", - "0.151.1", - "0.151.0", - "0.150.0", - "0.149.1", - "0.149.0", - "0.148.2", - "0.148.1", - "0.148.0", - "0.0.5", - "0.0.4", - "0.0.2", - "0.0.1" - ], - "githubcomment": [ - "0.221.0", - "0.198.0", - "0.181.0", - "0.0.4", - "0.0.3", - "0.0.2", - "0.0.1" - ], - "deea6198-adf8-4b16-9939-7addf85708b2": [ - "0.221.0", - "0.198.0", - "0.181.0", - "0.0.4", - "0.0.3", - "0.0.2", - "0.0.1" - ], - "ftpupload": [ - "2.211.0", - "2.206.0", - "2.201.0", - "2.198.0", - "2.186.1", - "2.186.0", - "2.157.2", - "2.157.1", - "2.157.0", - "2.154.0", - "2.151.2", - "2.151.1", - "2.151.0", - "1.211.0", - "1.200.1", - "1.200.0", - "1.198.0", - "1.186.0", - "1.181.0", - "1.165.2", - "1.165.1", - "1.165.0", - "1.151.1", - "1.151.0", - "1.142.2", - "1.142.1", - "1.142.0", - "1.137.0", - "1.128.0" - ], - "6f8c69a5-b023-428e-a125-fccf4efcb929": [ - "2.211.0", - "2.206.0", - "2.201.0", - "2.198.0", - "2.186.1", - "2.186.0", - "2.157.2", - "2.157.1", - "2.157.0", - "2.154.0", - "2.151.2", - "2.151.1", - "2.151.0", - "1.211.0", - "1.200.1", - "1.200.0", - "1.198.0", - "1.186.0", - "1.181.0", - "1.165.2", - "1.165.1", - "1.165.0", - "1.151.1", - "1.151.0", - "1.142.2", - "1.142.1", - "1.142.0", - "1.137.0", - "1.128.0" - ], - "filetransform": [ - "2.222.0", - "2.215.1", - "2.215.0", - "2.209.0", - "2.206.0", - "2.198.0", - "2.181.0", - "2.179.0", - "2.0.9", - "2.0.8", - "2.0.7", - "2.0.6", - "2.0.5", - "2.0.4", - "2.0.3", - "2.0.2", - "2.0.1", - "2.0.0", - "1.220.0", - "1.215.0", - "1.214.0", - "1.212.0", - "1.211.0", - "1.208.0", - "1.206.0", - "1.198.0", - "1.182.0", - "1.179.0", - "1.178.0", - "1.156.10", - "1.156.9", - "1.156.8", - "1.156.7", - "1.156.6", - "1.156.5", - "1.156.4", - "1.156.3", - "1.156.2", - "1.156.1", - "1.156.0", - "1.153.2", - "1.153.1", - "1.153.0", - "1.1.6", - "1.1.5", - "1.1.4", - "1.1.3", - "1.1.2", - "1.1.1", - "1.1.0", - "1.0.1", - "1.0.0" - ], - "8ce97e91-56cc-4743-bfab-9a9315be5f27": [ - "2.222.0", - "2.215.1", - "2.215.0", - "2.209.0", - "2.206.0", - "2.198.0", - "2.181.0", - "2.179.0", - "2.0.9", - "2.0.8", - "2.0.7", - "2.0.6", - "2.0.5", - "2.0.4", - "2.0.3", - "2.0.2", - "2.0.1", - "2.0.0", - "1.220.0", - "1.215.0", - "1.214.0", - "1.212.0", - "1.211.0", - "1.208.0", - "1.206.0", - "1.198.0", - "1.182.0", - "1.179.0", - "1.178.0", - "1.156.10", - "1.156.9", - "1.156.8", - "1.156.7", - "1.156.6", - "1.156.5", - "1.156.4", - "1.156.3", - "1.156.2", - "1.156.1", - "1.156.0", - "1.153.2", - "1.153.1", - "1.153.0", - "1.1.6", - "1.1.5", - "1.1.4", - "1.1.3", - "1.1.2", - "1.1.1", - "1.1.0", - "1.0.1", - "1.0.0" - ], - "extractfiles": [ - "1.213.0", - "1.211.1", - "1.211.0", - "1.200.0", - "1.198.0", - "1.189.0", - "1.186.0", - "1.184.0", - "1.183.0", - "1.179.0", - "1.178.4", - "1.178.3", - "1.178.2", - "1.178.1", - "1.178.0", - "1.177.0", - "1.176.1", - "1.176.0", - "1.175.0", - "1.165.2", - "1.165.1", - "1.170.0", - "1.165.0", - "1.151.1", - "1.151.0", - "1.142.2", - "1.142.1", - "1.142.0", - "1.112.2" - ], - "5e1e3830-fbfb-11e5-aab1-090c92bc4988": [ - "1.213.0", - "1.211.1", - "1.211.0", - "1.200.0", - "1.198.0", - "1.189.0", - "1.186.0", - "1.184.0", - "1.183.0", - "1.179.0", - "1.178.4", - "1.178.3", - "1.178.2", - "1.178.1", - "1.178.0", - "1.177.0", - "1.176.1", - "1.176.0", - "1.175.0", - "1.165.2", - "1.165.1", - "1.170.0", - "1.165.0", - "1.151.1", - "1.151.0", - "1.142.2", - "1.142.1", - "1.142.0", - "1.112.2" - ], - "duffleinstaller": [ - "0.221.0", - "0.214.0", - "0.212.0", - "0.211.1", - "0.211.0", - "0.210.0", - "0.201.0", - "0.198.0", - "0.181.0", - "0.175.0", - "0.154.5", - "0.154.4", - "0.154.3", - "0.154.2", - "0.154.1", - "0.154.0", - "0.153.2", - "0.153.1", - "0.153.0", - "0.0.7", - "0.0.6", - "0.0.5", - "0.0.4", - "0.151.0", - "0.0.3", - "0.0.2", - "0.0.1" - ], - "11ea7cf0-8a3e-4b5a-98a2-8756cc3094b0": [ - "0.221.0", - "0.214.0", - "0.212.0", - "0.211.1", - "0.211.0", - "0.210.0", - "0.201.0", - "0.198.0", - "0.181.0", - "0.175.0", - "0.154.5", - "0.154.4", - "0.154.3", - "0.154.2", - "0.154.1", - "0.154.0", - "0.153.2", - "0.153.1", - "0.153.0", - "0.0.7", - "0.0.6", - "0.0.5", - "0.0.4", - "0.151.0", - "0.0.3", - "0.0.2", - "0.0.1" - ], - "downloadsecurefile": [ - "1.220.0", - "1.212.0", - "1.200.0", - "1.198.0", - "1.193.0", - "1.188.0", - "1.186.0", - "1.181.0", - "1.180.1", - "1.180.0", - "1.177.1", - "1.177.0", - "1.175.0", - "1.170.1", - "1.170.0", - "1.156.3", - "1.156.2", - "1.156.1", - "1.156.0", - "1.153.0", - "1.151.2", - "1.151.1", - "1.151.0", - "1.150.0", - "1.141.2", - "1.141.1", - "1.141.0", - "1.137.0", - "1.126.0" - ], - "2a6ca863-f2ce-4f4d-8bcb-15e64608ec4b": [ - "1.220.0", - "1.212.0", - "1.200.0", - "1.198.0", - "1.193.0", - "1.188.0", - "1.186.0", - "1.181.0", - "1.180.1", - "1.180.0", - "1.177.1", - "1.177.0", - "1.175.0", - "1.170.1", - "1.170.0", - "1.156.3", - "1.156.2", - "1.156.1", - "1.156.0", - "1.153.0", - "1.151.2", - "1.151.1", - "1.151.0", - "1.150.0", - "1.141.2", - "1.141.1", - "1.141.0", - "1.137.0", - "1.126.0" - ], - "downloadpipelineartifact": [ - "2.198.0", - "2.178.0", - "2.3.1", - "2.3.0", - "2.2.0", - "2.1.2", - "2.1.1", - "2.1.0", - "2.0.0", - "1.198.0", - "1.2.5", - "1.2.4", - "1.2.3", - "1.1.3", - "1.1.1", - "1.1.2", - "1.1.0", - "1.0.0", - "0.140.1", - "0.140.0", - "0.139.0", - "0.151.0", - "0.139.1" - ], - "61f2a582-95ae-4948-b34d-a1b3c4f6a737": [ - "2.198.0", - "2.178.0", - "2.3.1", - "2.3.0", - "2.2.0", - "2.1.2", - "2.1.1", - "2.1.0", - "2.0.0", - "1.198.0", - "1.2.5", - "1.2.4", - "1.2.3", - "1.1.3", - "1.1.1", - "1.1.2", - "1.1.0", - "1.0.0", - "0.140.1", - "0.140.0", - "0.139.0", - "0.151.0", - "0.139.1" - ], - "downloadpackage": [ - "1.221.0", - "1.220.0", - "1.218.1", - "1.218.0", - "1.217.0", - "1.216.0", - "1.215.1", - "1.215.0", - "1.214.1", - "1.214.2", - "1.214.0", - "1.213.0", - "1.211.0", - "1.210.0", - "1.208.1", - "1.208.0", - "1.206.0", - "1.203.0", - "1.202.2", - "1.202.1", - "1.202.0", - "1.198.0", - "1.195.0", - "1.185.0", - "1.184.0", - "1.183.0", - "1.182.2", - "1.182.1", - "1.182.0", - "1.180.0", - "1.179.0", - "1.177.1", - "1.177.0", - "1.176.0", - "1.175.0", - "1.174.0", - "1.171.0", - "1.169.2", - "1.169.1", - "1.169.0", - "1.168.0", - "1.166.1", - "1.166.0", - "1.165.0", - "1.164.0", - "1.161.2", - "1.161.1", - "1.161.0", - "1.160.0", - "1.159.0", - "1.158.1", - "1.158.0", - "1.156.2", - "1.156.1", - "1.156.0", - "1.154.3", - "1.154.2", - "1.154.1", - "1.153.1", - "1.153.0", - "1.152.4", - "1.152.3", - "1.152.2", - "1.152.1", - "1.152.0", - "1.151.4", - "1.151.3", - "1.151.2", - "1.151.1", - "1.151.0", - "1.150.2", - "1.150.1", - "1.150.0", - "1.149.1", - "1.149.0", - "1.148.3", - "1.148.2", - "1.148.1", - "1.148.0", - "0.222.0", - "0.221.0", - "0.218.1", - "0.218.0", - "0.215.0", - "0.214.0", - "0.214.1", - "0.213.0", - "0.210.0", - "0.208.1", - "0.208.0", - "0.206.0", - "0.202.0", - "0.198.0", - "0.183.0", - "0.182.1", - "0.182.0", - "0.180.0", - "0.179.0", - "0.177.1", - "0.177.0", - "0.175.0", - "0.174.0", - "0.171.0", - "0.169.2", - "0.169.1", - "0.169.0", - "0.168.0", - "0.166.1", - "0.166.0", - "0.165.0", - "0.164.0", - "0.161.1", - "0.161.0", - "0.160.0", - "0.159.0", - "0.158.1", - "0.158.0", - "0.156.1", - "0.156.0", - "0.154.3", - "0.154.2", - "0.154.1", - "0.153.1", - "0.153.0", - "0.152.3", - "0.152.2", - "0.152.1", - "0.152.0", - "0.151.2", - "0.151.1", - "0.151.0", - "0.149.0", - "0.1.19", - "0.1.18", - "0.1.17", - "0.1.16", - "0.1.15", - "0.1.14", - "0.1.13", - "0.1.12", - "0.1.11", - "0.1.10", - "0.1.9", - "0.1.8" - ], - "8d6e8f7e-267d-442d-8c92-1f586864c62f": [ - "1.221.0", - "1.220.0", - "1.218.1", - "1.218.0", - "1.217.0", - "1.216.0", - "1.215.1", - "1.215.0", - "1.214.1", - "1.214.2", - "1.214.0", - "1.213.0", - "1.211.0", - "1.210.0", - "1.208.1", - "1.208.0", - "1.206.0", - "1.203.0", - "1.202.2", - "1.202.1", - "1.202.0", - "1.198.0", - "1.195.0", - "1.185.0", - "1.184.0", - "1.183.0", - "1.182.2", - "1.182.1", - "1.182.0", - "1.180.0", - "1.179.0", - "1.177.1", - "1.177.0", - "1.176.0", - "1.175.0", - "1.174.0", - "1.171.0", - "1.169.2", - "1.169.1", - "1.169.0", - "1.168.0", - "1.166.1", - "1.166.0", - "1.165.0", - "1.164.0", - "1.161.2", - "1.161.1", - "1.161.0", - "1.160.0", - "1.159.0", - "1.158.1", - "1.158.0", - "1.156.2", - "1.156.1", - "1.156.0", - "1.154.3", - "1.154.2", - "1.154.1", - "1.153.1", - "1.153.0", - "1.152.4", - "1.152.3", - "1.152.2", - "1.152.1", - "1.152.0", - "1.151.4", - "1.151.3", - "1.151.2", - "1.151.1", - "1.151.0", - "1.150.2", - "1.150.1", - "1.150.0", - "1.149.1", - "1.149.0", - "1.148.3", - "1.148.2", - "1.148.1", - "1.148.0", - "0.222.0", - "0.221.0", - "0.218.1", - "0.218.0", - "0.215.0", - "0.214.0", - "0.214.1", - "0.213.0", - "0.210.0", - "0.208.1", - "0.208.0", - "0.206.0", - "0.202.0", - "0.198.0", - "0.183.0", - "0.182.1", - "0.182.0", - "0.180.0", - "0.179.0", - "0.177.1", - "0.177.0", - "0.175.0", - "0.174.0", - "0.171.0", - "0.169.2", - "0.169.1", - "0.169.0", - "0.168.0", - "0.166.1", - "0.166.0", - "0.165.0", - "0.164.0", - "0.161.1", - "0.161.0", - "0.160.0", - "0.159.0", - "0.158.1", - "0.158.0", - "0.156.1", - "0.156.0", - "0.154.3", - "0.154.2", - "0.154.1", - "0.153.1", - "0.153.0", - "0.152.3", - "0.152.2", - "0.152.1", - "0.152.0", - "0.151.2", - "0.151.1", - "0.151.0", - "0.149.0", - "0.1.19", - "0.1.18", - "0.1.17", - "0.1.16", - "0.1.15", - "0.1.14", - "0.1.13", - "0.1.12", - "0.1.11", - "0.1.10", - "0.1.9", - "0.1.8" - ], - "downloadgithubrelease": [ - "0.215.0", - "0.210.0", - "0.206.0", - "0.205.0", - "0.200.0", - "0.198.0", - "0.160.3", - "0.160.2", - "0.160.1", - "0.160.0", - "0.156.0", - "0.154.0", - "0.151.3", - "0.151.2", - "0.151.1", - "0.149.1", - "0.149.0", - "0.148.2", - "0.148.1", - "0.148.0" - ], - "263abc27-4582-4174-8789-af599697778e": [ - "0.215.0", - "0.210.0", - "0.206.0", - "0.205.0", - "0.200.0", - "0.198.0", - "0.160.3", - "0.160.2", - "0.160.1", - "0.160.0", - "0.156.0", - "0.154.0", - "0.151.3", - "0.151.2", - "0.151.1", - "0.149.1", - "0.149.0", - "0.148.2", - "0.148.1", - "0.148.0" - ], - "downloadgithubnpmpackage": [ - "1.215.0", - "1.207.2", - "1.207.3", - "1.207.1", - "1.207.0", - "1.206.0", - "1.205.0", - "1.198.1", - "1.198.0", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0" - ], - "97411e3d-0241-4b1f-9607-2d2c04b4df51": [ - "1.215.0", - "1.207.2", - "1.207.3", - "1.207.1", - "1.207.0", - "1.206.0", - "1.205.0", - "1.198.1", - "1.198.0", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0" - ], - "downloadfileshareartifacts": [ - "1.220.0", - "1.206.0", - "1.205.0", - "1.200.1", - "1.200.0", - "1.198.0", - "1.154.2", - "1.154.1", - "1.154.0", - "1.151.1", - "1.151.0", - "1.149.0", - "1.147.0", - "1.141.3", - "1.141.2", - "1.141.1", - "1.141.0", - "1.139.0", - "1.137.0" - ], - "e3cf3806-ad30-4ec4-8f1e-8ecd98771aa0": [ - "1.220.0", - "1.206.0", - "1.205.0", - "1.200.1", - "1.200.0", - "1.198.0", - "1.154.2", - "1.154.1", - "1.154.0", - "1.151.1", - "1.151.0", - "1.149.0", - "1.147.0", - "1.141.3", - "1.141.2", - "1.141.1", - "1.141.0", - "1.139.0", - "1.137.0" - ], - "downloadbuildartifacts": [ - "1.220.0", - "1.193.0", - "1.192.0", - "0.222.0", - "0.221.0", - "0.220.0", - "0.217.1", - "0.217.0", - "0.216.0", - "0.212.0", - "0.206.0", - "0.200.1", - "0.200.0", - "0.198.0", - "0.194.0", - "0.193.0", - "0.190.0", - "0.188.3", - "0.188.2", - "0.188.1", - "0.188.0", - "0.186.3", - "0.186.2", - "0.186.1", - "0.186.0", - "0.184.0", - "0.183.0", - "0.178.0", - "0.167.2", - "0.167.1", - "0.167.0", - "0.156.1", - "0.156.0", - "0.155.1", - "0.155.0", - "0.154.0", - "0.152.2", - "0.152.1", - "0.152.0", - "0.151.1", - "0.151.0", - "0.148.1", - "0.148.0", - "0.146.0", - "0.142.3", - "0.142.2", - "0.142.1", - "0.142.0", - "0.141.0", - "0.140.0", - "0.139.0", - "0.138.0", - "0.137.1", - "0.137.0", - "0.136.3", - "0.136.1", - "0.136.2", - "0.136.0", - "0.135.0" - ], - "a433f589-fce1-4460-9ee6-44a624aeb1fb": [ - "1.220.0", - "1.193.0", - "1.192.0", - "0.222.0", - "0.221.0", - "0.220.0", - "0.217.1", - "0.217.0", - "0.216.0", - "0.212.0", - "0.206.0", - "0.200.1", - "0.200.0", - "0.198.0", - "0.194.0", - "0.193.0", - "0.190.0", - "0.188.3", - "0.188.2", - "0.188.1", - "0.188.0", - "0.186.3", - "0.186.2", - "0.186.1", - "0.186.0", - "0.184.0", - "0.183.0", - "0.178.0", - "0.167.2", - "0.167.1", - "0.167.0", - "0.156.1", - "0.156.0", - "0.155.1", - "0.155.0", - "0.154.0", - "0.152.2", - "0.152.1", - "0.152.0", - "0.151.1", - "0.151.0", - "0.148.1", - "0.148.0", - "0.146.0", - "0.142.3", - "0.142.2", - "0.142.1", - "0.142.0", - "0.141.0", - "0.140.0", - "0.139.0", - "0.138.0", - "0.137.1", - "0.137.0", - "0.136.3", - "0.136.1", - "0.136.2", - "0.136.0", - "0.135.0" - ], - "dotnetcoreinstaller": [ - "1.221.0", - "1.214.0", - "1.215.0", - "1.209.0", - "1.204.0", - "1.198.0", - "1.2.0", - "1.1.2", - "1.1.1", - "1.1.0", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0", - "0.220.0", - "0.214.0", - "0.215.0", - "0.209.0", - "0.204.0", - "0.198.0", - "0.3.0", - "0.2.9", - "0.2.8", - "0.2.7", - "0.2.5", - "0.2.4", - "0.2.3", - "0.2.2", - "0.2.1", - "0.2.0", - "0.1.20", - "0.1.19", - "0.1.18", - "0.1.17", - "0.1.16", - "0.1.15", - "0.1.14", - "0.1.13", - "0.1.12", - "0.1.11", - "0.1.10", - "0.1.9", - "0.1.8", - "0.1.7" - ], - "dotnetcorecli": [ - "2.221.0", - "2.220.0", - "2.217.0", - "2.216.0", - "2.210.0", - "2.214.0", - "2.208.1", - "2.208.0", - "2.202.0", - "2.198.0", - "2.187.0", - "2.181.0", - "2.180.0", - "2.179.1", - "2.179.0", - "2.178.0", - "2.177.0", - "2.175.0", - "2.174.0", - "2.173.0", - "2.172.1", - "2.172.0", - "2.171.4", - "2.171.3", - "2.169.2", - "2.169.1", - "2.169.0", - "2.168.0", - "2.167.1", - "2.167.0", - "2.166.2", - "2.166.1", - "2.166.0", - "2.165.0", - "2.164.0", - "2.162.0", - "2.161.0", - "2.160.0", - "2.159.0", - "2.158.1", - "2.158.0", - "2.156.2", - "2.156.1", - "2.156.0", - "2.154.6", - "2.154.5", - "2.154.4", - "2.154.3", - "2.154.2", - "2.154.1", - "2.153.1", - "2.153.0", - "2.152.4", - "2.152.3", - "2.152.2", - "2.152.1", - "2.152.0", - "2.151.1", - "2.151.0", - "2.150.0", - "2.149.0", - "2.148.2", - "2.148.1", - "2.148.0", - "2.147.1", - "2.147.0", - "2.145.4", - "2.145.3", - "2.145.2", - "2.145.1", - "2.145.0", - "2.144.1", - "2.144.0", - "2.141.5", - "2.141.4", - "2.141.3", - "2.141.2", - "2.141.1", - "2.141.0", - "2.139.9", - "2.139.6", - "2.139.4", - "2.139.3", - "2.139.2", - "2.139.1", - "2.139.0", - "2.137.1", - "2.137.0", - "2.136.1", - "2.136.0", - "2.135.0", - "2.132.1" - ], - "5541a522-603c-47ad-91fc-a4b1d163081b": [ - "2.221.0", - "2.220.0", - "2.217.0", - "2.216.0", - "2.210.0", - "2.214.0", - "2.208.1", - "2.208.0", - "2.202.0", - "2.198.0", - "2.187.0", - "2.181.0", - "2.180.0", - "2.179.1", - "2.179.0", - "2.178.0", - "2.177.0", - "2.175.0", - "2.174.0", - "2.173.0", - "2.172.1", - "2.172.0", - "2.171.4", - "2.171.3", - "2.169.2", - "2.169.1", - "2.169.0", - "2.168.0", - "2.167.1", - "2.167.0", - "2.166.2", - "2.166.1", - "2.166.0", - "2.165.0", - "2.164.0", - "2.162.0", - "2.161.0", - "2.160.0", - "2.159.0", - "2.158.1", - "2.158.0", - "2.156.2", - "2.156.1", - "2.156.0", - "2.154.6", - "2.154.5", - "2.154.4", - "2.154.3", - "2.154.2", - "2.154.1", - "2.153.1", - "2.153.0", - "2.152.4", - "2.152.3", - "2.152.2", - "2.152.1", - "2.152.0", - "2.151.1", - "2.151.0", - "2.150.0", - "2.149.0", - "2.148.2", - "2.148.1", - "2.148.0", - "2.147.1", - "2.147.0", - "2.145.4", - "2.145.3", - "2.145.2", - "2.145.1", - "2.145.0", - "2.144.1", - "2.144.0", - "2.141.5", - "2.141.4", - "2.141.3", - "2.141.2", - "2.141.1", - "2.141.0", - "2.139.9", - "2.139.6", - "2.139.4", - "2.139.3", - "2.139.2", - "2.139.1", - "2.139.0", - "2.137.1", - "2.137.0", - "2.136.1", - "2.136.0", - "2.135.0", - "2.132.1" - ], - "docker": [ - "2.221.0", - "2.219.1", - "2.219.0", - "2.214.0", - "2.212.1", - "2.212.0", - "2.211.0", - "2.210.0", - "2.201.0", - "2.198.0", - "2.192.0", - "2.188.0", - "2.187.0", - "2.185.0", - "2.181.2", - "2.181.0", - "2.176.0", - "2.175.0", - "2.173.0", - "2.170.2", - "2.170.1", - "2.170.0", - "2.169.1", - "2.169.0", - "2.166.1", - "2.166.0", - "2.165.0", - "2.162.0", - "2.161.2", - "2.161.1", - "2.161.0", - "2.160.3", - "2.160.2", - "2.160.1", - "2.160.0", - "2.159.0", - "2.157.0", - "2.156.2", - "2.156.1", - "2.156.0", - "2.154.4", - "2.154.3", - "2.155.2", - "2.154.2", - "2.154.1", - "2.154.0", - "2.153.3", - "2.153.2", - "2.153.1", - "2.153.0", - "2.152.2", - "2.152.1", - "2.152.0", - "2.151.2", - "2.151.1", - "2.151.0", - "2.150.5", - "2.150.4", - "2.150.3", - "2.150.2", - "2.150.1", - "2.150.0", - "1.219.1", - "1.219.0", - "1.215.0", - "1.210.0", - "1.198.0", - "1.194.0", - "1.192.0", - "1.187.2", - "1.187.1", - "1.187.0", - "1.181.0", - "1.177.0", - "1.175.0", - "1.165.2", - "1.165.1", - "1.165.0", - "1.157.0", - "1.155.3", - "1.154.3", - "1.154.2", - "1.154.1", - "1.154.0", - "1.153.3", - "1.153.2", - "1.153.1", - "1.153.0", - "1.152.1", - "1.152.0", - "1.151.0", - "1.150.6", - "1.150.5", - "1.150.4", - "1.150.3", - "1.150.2", - "1.150.1", - "1.150.0", - "1.1.31", - "1.1.30", - "1.1.28", - "1.1.27", - "1.1.26", - "1.1.23", - "1.1.21", - "1.1.20", - "1.1.19", - "1.1.18", - "1.1.17", - "1.1.16", - "1.1.15", - "1.1.14", - "1.1.13", - "1.1.12", - "1.1.5", - "1.1.4", - "1.1.3", - "1.1.2", - "1.1.1", - "1.1.0", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0", - "0.221.0", - "0.219.1", - "0.219.0", - "0.214.0", - "0.209.0", - "0.198.0", - "0.194.0", - "0.192.0", - "0.187.2", - "0.187.1", - "0.187.0", - "0.181.0", - "0.177.0", - "0.175.0", - "0.157.2", - "0.157.1", - "0.157.0", - "0.154.2", - "0.154.1", - "0.154.0", - "0.153.3", - "0.153.2", - "0.153.1", - "0.153.0", - "0.152.1", - "0.152.0", - "0.151.0", - "0.150.6", - "0.150.5", - "0.150.4", - "0.150.3", - "0.150.2", - "0.150.1", - "0.150.0", - "0.3.27", - "0.3.26", - "0.3.23", - "0.3.22", - "0.3.21", - "0.3.20", - "0.3.19", - "0.3.18", - "0.3.17", - "0.3.16", - "0.3.15", - "0.3.14", - "0.3.13", - "0.3.12" - ], - "e28912f1-0114-4464-802a-a3a35437fd16": [ - "2.221.0", - "2.219.1", - "2.219.0", - "2.214.0", - "2.212.1", - "2.212.0", - "2.211.0", - "2.210.0", - "2.201.0", - "2.198.0", - "2.192.0", - "2.188.0", - "2.187.0", - "2.185.0", - "2.181.2", - "2.181.0", - "2.176.0", - "2.175.0", - "2.173.0", - "2.170.2", - "2.170.1", - "2.170.0", - "2.169.1", - "2.169.0", - "2.166.1", - "2.166.0", - "2.165.0", - "2.162.0", - "2.161.2", - "2.161.1", - "2.161.0", - "2.160.3", - "2.160.2", - "2.160.1", - "2.160.0", - "2.159.0", - "2.157.0", - "2.156.2", - "2.156.1", - "2.156.0", - "2.154.4", - "2.154.3", - "2.155.2", - "2.154.2", - "2.154.1", - "2.154.0", - "2.153.3", - "2.153.2", - "2.153.1", - "2.153.0", - "2.152.2", - "2.152.1", - "2.152.0", - "2.151.2", - "2.151.1", - "2.151.0", - "2.150.5", - "2.150.4", - "2.150.3", - "2.150.2", - "2.150.1", - "2.150.0", - "1.219.1", - "1.219.0", - "1.215.0", - "1.210.0", - "1.198.0", - "1.194.0", - "1.192.0", - "1.187.2", - "1.187.1", - "1.187.0", - "1.181.0", - "1.177.0", - "1.175.0", - "1.165.2", - "1.165.1", - "1.165.0", - "1.157.0", - "1.155.3", - "1.154.3", - "1.154.2", - "1.154.1", - "1.154.0", - "1.153.3", - "1.153.2", - "1.153.1", - "1.153.0", - "1.152.1", - "1.152.0", - "1.151.0", - "1.150.6", - "1.150.5", - "1.150.4", - "1.150.3", - "1.150.2", - "1.150.1", - "1.150.0", - "1.1.31", - "1.1.30", - "1.1.28", - "1.1.27", - "1.1.26", - "1.1.23", - "1.1.21", - "1.1.20", - "1.1.19", - "1.1.18", - "1.1.17", - "1.1.16", - "1.1.15", - "1.1.14", - "1.1.13", - "1.1.12", - "1.1.5", - "1.1.4", - "1.1.3", - "1.1.2", - "1.1.1", - "1.1.0", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0", - "0.221.0", - "0.219.1", - "0.219.0", - "0.214.0", - "0.209.0", - "0.198.0", - "0.194.0", - "0.192.0", - "0.187.2", - "0.187.1", - "0.187.0", - "0.181.0", - "0.177.0", - "0.175.0", - "0.157.2", - "0.157.1", - "0.157.0", - "0.154.2", - "0.154.1", - "0.154.0", - "0.153.3", - "0.153.2", - "0.153.1", - "0.153.0", - "0.152.1", - "0.152.0", - "0.151.0", - "0.150.6", - "0.150.5", - "0.150.4", - "0.150.3", - "0.150.2", - "0.150.1", - "0.150.0", - "0.3.27", - "0.3.26", - "0.3.23", - "0.3.22", - "0.3.21", - "0.3.20", - "0.3.19", - "0.3.18", - "0.3.17", - "0.3.16", - "0.3.15", - "0.3.14", - "0.3.13", - "0.3.12" - ], - "dockerinstaller": [ - "0.218.0", - "0.217.0", - "0.216.0", - "0.214.0", - "0.213.0", - "0.209.0", - "0.198.0", - "0.181.0", - "0.172.0", - "0.171.0", - "0.166.2", - "0.166.1", - "0.166.0", - "0.1.4", - "0.1.3", - "0.1.2", - "0.1.1", - "0.1.0" - ], - "8e038650-f7bf-11e8-8a6c-8fff434b4eff": [ - "0.218.0", - "0.217.0", - "0.216.0", - "0.214.0", - "0.213.0", - "0.209.0", - "0.198.0", - "0.181.0", - "0.172.0", - "0.171.0", - "0.166.2", - "0.166.1", - "0.166.0", - "0.1.4", - "0.1.3", - "0.1.2", - "0.1.1", - "0.1.0" - ], - "dockercompose": [ - "0.224.0", - "0.220.0", - "0.219.0", - "0.214.0", - "0.198.0", - "0.183.0", - "0.181.1", - "0.181.0", - "0.179.0", - "0.175.0", - "0.173.0", - "0.166.6", - "0.166.5", - "0.166.4", - "0.166.3", - "0.166.2", - "0.166.1", - "0.166.0", - "0.160.4", - "0.160.3", - "0.160.2", - "0.160.1", - "0.160.0", - "0.159.0", - "0.157.0", - "0.156.0", - "0.155.1", - "0.155.0", - "0.154.1", - "0.154.0", - "0.153.3", - "0.153.2", - "0.153.1", - "0.153.0", - "0.152.0", - "0.151.0", - "0.150.6", - "0.150.5", - "0.150.4", - "0.150.3", - "0.150.2", - "0.150.1", - "0.150.0", - "0.4.26", - "0.4.25", - "0.4.24", - "0.4.23", - "0.4.22", - "0.4.21", - "0.4.20", - "0.4.19", - "0.4.18", - "0.4.17", - "0.4.16" - ], - "6975e2d1-96d3-4afc-8a41-498b5d34ea19": [ - "0.224.0", - "0.220.0", - "0.219.0", - "0.214.0", - "0.198.0", - "0.183.0", - "0.181.1", - "0.181.0", - "0.179.0", - "0.175.0", - "0.173.0", - "0.166.6", - "0.166.5", - "0.166.4", - "0.166.3", - "0.166.2", - "0.166.1", - "0.166.0", - "0.160.4", - "0.160.3", - "0.160.2", - "0.160.1", - "0.160.0", - "0.159.0", - "0.157.0", - "0.156.0", - "0.155.1", - "0.155.0", - "0.154.1", - "0.154.0", - "0.153.3", - "0.153.2", - "0.153.1", - "0.153.0", - "0.152.0", - "0.151.0", - "0.150.6", - "0.150.5", - "0.150.4", - "0.150.3", - "0.150.2", - "0.150.1", - "0.150.0", - "0.4.26", - "0.4.25", - "0.4.24", - "0.4.23", - "0.4.22", - "0.4.21", - "0.4.20", - "0.4.19", - "0.4.18", - "0.4.17", - "0.4.16" - ], - "deployvisualstudiotestagent": [ - "2.198.0", - "2.155.3", - "2.155.2", - "2.155.1", - "2.151.1", - "2.151.0", - "2.150.1", - "2.149.1", - "2.1.40", - "2.1.39", - "2.1.38", - "2.1.37", - "2.1.36", - "2.1.35" - ], - "52a38a6a-1517-41d7-96cc-73ee0c60d2b6": [ - "2.198.0", - "2.155.3", - "2.155.2", - "2.155.1", - "2.151.1", - "2.151.0", - "2.150.1", - "2.149.1", - "2.1.40", - "2.1.39", - "2.1.38", - "2.1.37", - "2.1.36", - "2.1.35" - ], - "deletefiles": [ - "1.211.0", - "1.200.0", - "1.198.0", - "1.191.0", - "1.189.0", - "1.186.0", - "1.185.0", - "1.179.0", - "1.177.2", - "1.177.1", - "1.177.0", - "1.176.0", - "1.166.2", - "1.166.1", - "1.166.0", - "1.165.0", - "1.154.0", - "1.1.9", - "1.1.8", - "1.1.7", - "1.1.6", - "1.1.5", - "1.1.4" - ], - "b7e8b412-0437-4065-9371-edc5881de25b": [ - "1.211.0", - "1.200.0", - "1.198.0", - "1.191.0", - "1.189.0", - "1.186.0", - "1.185.0", - "1.179.0", - "1.177.2", - "1.177.1", - "1.177.0", - "1.176.0", - "1.166.2", - "1.166.1", - "1.166.0", - "1.165.0", - "1.154.0", - "1.1.9", - "1.1.8", - "1.1.7", - "1.1.6", - "1.1.5", - "1.1.4" - ], - "delay": [ - "1.1.10", - "1.1.9", - "1.1.8", - "1.1.7", - "1.1.6", - "1.1.5", - "1.1.4", - "1.1.3" - ], - "28782b92-5e8e-4458-9751-a71cd1492bae": [ - "1.1.10", - "1.1.9", - "1.1.8", - "1.1.7", - "1.1.6", - "1.1.5", - "1.1.4", - "1.1.3" - ], - "decryptfile": [ - "1.211.0", - "1.201.0", - "1.200.0", - "1.186.0", - "1.181.0", - "1.165.2", - "1.165.1", - "1.165.0", - "1.151.1", - "1.151.0", - "1.142.2", - "1.142.1", - "1.142.0", - "1.131.0" - ], - "7c6a6b71-4355-4afc-a274-480eab5678e9": [ - "1.211.0", - "1.201.0", - "1.200.0", - "1.186.0", - "1.181.0", - "1.165.2", - "1.165.1", - "1.165.0", - "1.151.1", - "1.151.0", - "1.142.2", - "1.142.1", - "1.142.0", - "1.131.0" - ], - "copyfiles": [ - "2.211.0", - "2.209.0", - "2.208.0", - "2.200.0", - "2.198.1", - "2.198.0", - "2.190.1", - "2.190.0", - "2.189.0", - "2.188.1", - "2.188.0", - "2.186.1", - "2.186.0", - "2.184.0", - "2.180.1", - "2.180.0", - "2.178.0", - "2.164.2", - "2.164.1", - "2.164.0", - "2.158.0", - "2.151.1", - "2.151.0", - "2.117.2", - "2.117.1", - "2.117.0" - ], - "5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c": [ - "2.211.0", - "2.209.0", - "2.208.0", - "2.200.0", - "2.198.1", - "2.198.0", - "2.190.1", - "2.190.0", - "2.189.0", - "2.188.1", - "2.188.0", - "2.186.1", - "2.186.0", - "2.184.0", - "2.180.1", - "2.180.0", - "2.178.0", - "2.164.2", - "2.164.1", - "2.164.0", - "2.158.0", - "2.151.1", - "2.151.0", - "2.117.2", - "2.117.1", - "2.117.0" - ], - "copyfilesoverssh": [ - "0.221.0", - "0.212.0", - "0.205.0", - "0.203.0", - "0.201.0", - "0.200.0", - "0.198.0", - "0.189.0", - "0.186.0", - "0.180.0", - "0.175.1", - "0.175.0", - "0.174.0", - "0.172.3", - "0.172.1", - "0.172.0", - "0.171.0", - "0.170.1", - "0.170.0", - "0.169.2", - "0.169.1", - "0.169.0", - "0.165.0", - "0.151.1", - "0.151.0", - "0.148.0", - "0.142.2", - "0.142.1", - "0.142.0", - "0.137.2", - "0.137.1", - "0.137.0", - "0.131.0" - ], - "67cec91b-0351-4c2f-8465-d74b3d2a2d96": [ - "0.221.0", - "0.212.0", - "0.205.0", - "0.203.0", - "0.201.0", - "0.200.0", - "0.198.0", - "0.189.0", - "0.186.0", - "0.180.0", - "0.175.1", - "0.175.0", - "0.174.0", - "0.172.3", - "0.172.1", - "0.172.0", - "0.171.0", - "0.170.1", - "0.170.0", - "0.169.2", - "0.169.1", - "0.169.0", - "0.165.0", - "0.151.1", - "0.151.0", - "0.148.0", - "0.142.2", - "0.142.1", - "0.142.0", - "0.137.2", - "0.137.1", - "0.137.0", - "0.131.0" - ], - "containerstructuretest": [ - "0.219.0", - "0.216.0", - "0.211.2", - "0.211.1", - "0.211.0", - "0.210.0", - "0.201.0", - "0.198.0", - "0.179.0", - "0.175.0", - "0.173.0", - "0.168.3", - "0.168.2", - "0.168.1", - "0.168.0", - "0.162.1", - "0.162.0", - "0.1.9", - "0.1.8", - "0.1.7", - "0.1.6", - "0.1.5", - "0.1.4", - "0.1.3", - "0.1.2", - "0.1.1", - "0.1.0" - ], - "39bc2c9b-55b7-4835-89cd-6cc699ef7220": [ - "0.219.0", - "0.216.0", - "0.211.2", - "0.211.1", - "0.211.0", - "0.210.0", - "0.201.0", - "0.198.0", - "0.179.0", - "0.175.0", - "0.173.0", - "0.168.3", - "0.168.2", - "0.168.1", - "0.168.0", - "0.162.1", - "0.162.0", - "0.1.9", - "0.1.8", - "0.1.7", - "0.1.6", - "0.1.5", - "0.1.4", - "0.1.3", - "0.1.2", - "0.1.1", - "0.1.0" - ], - "containerbuild": [ - "0.219.0", - "0.217.0", - "0.216.1", - "0.216.0", - "0.213.0", - "0.210.0", - "0.208.0", - "0.198.0", - "0.181.0", - "0.175.1", - "0.175.0", - "0.173.0", - "0.171.0", - "0.165.6", - "0.165.5", - "0.165.4", - "0.165.3", - "0.165.2", - "0.165.1", - "0.165.0", - "0.161.6", - "0.161.5", - "0.161.4", - "0.161.3", - "0.161.2", - "0.161.1", - "0.161.0", - "0.160.5", - "0.160.4", - "0.160.3", - "0.160.2", - "0.160.1" - ], - "8413c881-4959-43d5-8840-b4ea0ffc5cfe": [ - "0.219.0", - "0.217.0", - "0.216.1", - "0.216.0", - "0.213.0", - "0.210.0", - "0.208.0", - "0.198.0", - "0.181.0", - "0.175.1", - "0.175.0", - "0.173.0", - "0.171.0", - "0.165.6", - "0.165.5", - "0.165.4", - "0.165.3", - "0.165.2", - "0.165.1", - "0.165.0", - "0.161.6", - "0.161.5", - "0.161.4", - "0.161.3", - "0.161.2", - "0.161.1", - "0.161.0", - "0.160.5", - "0.160.4", - "0.160.3", - "0.160.2", - "0.160.1" - ], - "condaauthenticate": ["0.222.0", "0.221.0", "0.220.0"], - "543c39b2-11e9-4de8-8b9b-94eea1339891": ["0.222.0", "0.221.0", "0.220.0"], - "cocoapods": [ - "0.220.0", - "0.212.0", - "0.207.0", - "0.201.1", - "0.201.0", - "0.198.0", - "0.189.0", - "0.186.0", - "0.181.0", - "0.151.3", - "0.151.2", - "0.151.1", - "0.151.0", - "0.142.2", - "0.142.1", - "0.142.0", - "0.136.0", - "0.131.0" - ], - "bfc05e0d-839c-42cd-89c7-0f9fbfcab965": [ - "0.220.0", - "0.212.0", - "0.207.0", - "0.201.1", - "0.201.0", - "0.198.0", - "0.189.0", - "0.186.0", - "0.181.0", - "0.151.3", - "0.151.2", - "0.151.1", - "0.151.0", - "0.142.2", - "0.142.1", - "0.142.0", - "0.136.0", - "0.131.0" - ], - "cmdline": [ - "2.212.0", - "2.201.1", - "2.201.0", - "2.200.1", - "2.200.0", - "2.198.0", - "2.182.0", - "2.178.0", - "2.177.3", - "2.177.2", - "2.177.1", - "2.177.0", - "2.176.1", - "2.176.0", - "2.164.2", - "2.164.1", - "2.164.0", - "2.163.0", - "2.151.2", - "2.151.1", - "2.151.0", - "2.148.0", - "2.146.1", - "2.142.2", - "2.142.1", - "2.142.0", - "2.136.0", - "2.135.0", - "2.127.0" - ], - "d9bafed4-0b18-4f58-968d-86655b4d2ce9": [ - "2.212.0", - "2.201.1", - "2.201.0", - "2.200.1", - "2.200.0", - "2.198.0", - "2.182.0", - "2.178.0", - "2.177.3", - "2.177.2", - "2.177.1", - "2.177.0", - "2.176.1", - "2.176.0", - "2.164.2", - "2.164.1", - "2.164.0", - "2.163.0", - "2.151.2", - "2.151.1", - "2.151.0", - "2.148.0", - "2.146.1", - "2.142.2", - "2.142.1", - "2.142.0", - "2.136.0", - "2.135.0", - "2.127.0" - ], - "chef": [ - "1.198.0", - "1.0.24", - "1.0.23", - "1.0.22", - "1.0.21", - "1.0.20", - "1.0.19", - "1.0.18", - "1.0.17", - "1.0.16" - ], - "b719db6c-40a2-4f43-9aff-827825baecae": [ - "1.198.0", - "1.0.24", - "1.0.23", - "1.0.22", - "1.0.21", - "1.0.20", - "1.0.19", - "1.0.18", - "1.0.17", - "1.0.16" - ], - "chefknife": [ - "1.198.0", - "1.0.21", - "1.0.20", - "1.0.19", - "1.0.18", - "1.0.17", - "1.0.16", - "1.0.15", - "1.0.14" - ], - "c7b7ccf9-d6e0-472b-97bb-06b6e43504f3": [ - "1.198.0", - "1.0.21", - "1.0.20", - "1.0.19", - "1.0.18", - "1.0.17", - "1.0.16", - "1.0.15", - "1.0.14" - ], - "cargoauthenticate": [ - "0.223.0", - "0.221.0", - "0.218.0", - "0.216.0", - "0.215.0", - "0.214.2" - ], - "d1d75615-084d-4b9b-91a5-068b5f8c95a9": [ - "0.223.0", - "0.221.0", - "0.218.0", - "0.216.0", - "0.215.0", - "0.214.2" - ], - "cache": ["2.198.0", "2.0.1", "2.0.0"], - "d53ccab4-555e-4494-9d06-11db043fb4a9": [ - "2.198.0", - "2.0.1", - "2.0.0", - "1.198.0", - "1.2.1", - "1.2.0", - "1.1.0", - "1.0.0", - "0.198.0", - "0.3.1", - "0.3.0", - "0.2.0", - "0.1.0" - ], - "cachebeta": [ - "1.198.0", - "1.2.1", - "1.2.0", - "1.1.0", - "1.0.0", - "0.198.0", - "0.3.1", - "0.3.0", - "0.2.0", - "0.1.0" - ], - "curluploader": [ - "2.211.0", - "2.201.0", - "2.200.0", - "2.198.0", - "2.186.0", - "2.181.0", - "2.165.2", - "2.165.1", - "2.165.0", - "2.157.0", - "2.151.1", - "2.151.0", - "2.149.0", - "2.142.3", - "2.142.2", - "2.142.1", - "2.142.0", - "2.137.0", - "2.131.0" - ], - "ad8974d8-de11-11e4-b2fe-7fb898a745f3": [ - "2.211.0", - "2.201.0", - "2.200.0", - "2.198.0", - "2.186.0", - "2.181.0", - "2.165.2", - "2.165.1", - "2.165.0", - "2.157.0", - "2.151.1", - "2.151.0", - "2.149.0", - "2.142.3", - "2.142.2", - "2.142.1", - "2.142.0", - "2.137.0", - "2.131.0" - ], - "cmake": [ - "1.212.0", - "1.201.1", - "1.201.0", - "1.198.0", - "1.188.0", - "1.178.0", - "1.172.0", - "1.170.2", - "1.170.1", - "1.170.0", - "1.166.1", - "1.166.0", - "1.151.1", - "1.151.0", - "1.130.2", - "1.130.1", - "1.130.0" - ], - "7d831c3c-3c68-459a-a5c9-bde6e659596c": [ - "1.212.0", - "1.201.1", - "1.201.0", - "1.198.0", - "1.188.0", - "1.178.0", - "1.172.0", - "1.170.2", - "1.170.1", - "1.170.0", - "1.166.1", - "1.166.0", - "1.151.1", - "1.151.0", - "1.130.2", - "1.130.1", - "1.130.0" - ], - "batchscript": [ - "1.198.0", - "1.185.0", - "1.1.10", - "1.1.9", - "1.1.8", - "1.1.7", - "1.1.6", - "1.1.5", - "1.1.4", - "1.1.3" - ], - "bfc8bf76-e7ac-4a8c-9a55-a944a9f632fd": [ - "1.198.0", - "1.185.0", - "1.1.10", - "1.1.9", - "1.1.8", - "1.1.7", - "1.1.6", - "1.1.5", - "1.1.4", - "1.1.3" - ], - "bash": [ - "3.223.0", - "3.222.1", - "3.222.0", - "3.214.0", - "3.211.0", - "3.201.1", - "3.201.0", - "3.198.0", - "3.195.0", - "3.189.0", - "3.182.0", - "3.179.0", - "3.178.0", - "3.177.2", - "3.177.1", - "3.177.0", - "3.176.0", - "3.171.1", - "3.171.0", - "3.163.3", - "3.163.2", - "3.163.1", - "3.163.0", - "3.159.3", - "3.159.2", - "3.151.3", - "3.151.2", - "3.151.1", - "3.151.0", - "3.148.2", - "3.148.1", - "3.148.0", - "3.142.2", - "3.142.1", - "3.142.0", - "3.136.0", - "3.135.1", - "3.135.0", - "3.127.0" - ], - "azurewebapp": [ - "1.223.1", - "1.223.0", - "1.222.1", - "1.222.0", - "1.221.104", - "1.221.103", - "1.221.102", - "1.221.101", - "1.215.0", - "1.211.0", - "1.208.0", - "1.200.0", - "1.198.0", - "1.195.0", - "1.187.0", - "1.184.4", - "1.184.2", - "1.184.1", - "1.182.0", - "1.168.3", - "1.168.2", - "1.168.1", - "1.168.0", - "1.163.5", - "1.163.4", - "1.163.3", - "1.163.2", - "1.163.1", - "1.163.0", - "1.160.5", - "1.160.4", - "1.160.3", - "1.160.2", - "1.160.1", - "1.160.0", - "1.159.6", - "1.159.5", - "1.159.4", - "1.158.1", - "1.158.0", - "1.157.4", - "1.157.3", - "1.157.2", - "1.157.1", - "1.157.0", - "1.0.21", - "1.0.20", - "1.0.19", - "1.0.18", - "1.0.17", - "1.0.15", - "1.0.14", - "1.0.13", - "1.0.12", - "1.0.11", - "1.0.10", - "1.0.9", - "1.0.8", - "1.0.7", - "1.0.6", - "1.0.4", - "1.0.5", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0" - ], - "18bde28a-8172-45cb-b204-5cef1393dbb1": [ - "1.223.1", - "1.223.0", - "1.222.1", - "1.222.0", - "1.221.104", - "1.221.103", - "1.221.102", - "1.221.101", - "1.215.0", - "1.211.0", - "1.208.0", - "1.200.0", - "1.198.0", - "1.195.0", - "1.187.0", - "1.184.4", - "1.184.2", - "1.184.1", - "1.182.0", - "1.168.3", - "1.168.2", - "1.168.1", - "1.168.0", - "1.163.5", - "1.163.4", - "1.163.3", - "1.163.2", - "1.163.1", - "1.163.0", - "1.160.5", - "1.160.4", - "1.160.3", - "1.160.2", - "1.160.1", - "1.160.0", - "1.159.6", - "1.159.5", - "1.159.4", - "1.158.1", - "1.158.0", - "1.157.4", - "1.157.3", - "1.157.2", - "1.157.1", - "1.157.0", - "1.0.21", - "1.0.20", - "1.0.19", - "1.0.18", - "1.0.17", - "1.0.15", - "1.0.14", - "1.0.13", - "1.0.12", - "1.0.11", - "1.0.10", - "1.0.9", - "1.0.8", - "1.0.7", - "1.0.6", - "1.0.4", - "1.0.5", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0" - ], - "azurewebappcontainer": [ - "1.223.0", - "1.222.0", - "1.221.103", - "1.221.102", - "1.221.101", - "1.215.0", - "1.210.0", - "1.208.0", - "1.198.0", - "1.195.0", - "1.187.0", - "1.184.2", - "1.184.0", - "1.182.0", - "1.178.1", - "1.178.0", - "1.163.7", - "1.163.6", - "1.163.5", - "1.163.4", - "1.163.3", - "1.163.2", - "1.163.1", - "1.163.0", - "1.160.2", - "1.160.1", - "1.160.0", - "1.158.3", - "1.158.2", - "1.158.1", - "1.158.0", - "1.157.3", - "1.157.2", - "1.157.1", - "1.157.0", - "1.0.22", - "1.0.21", - "1.0.20", - "1.0.19", - "1.0.18", - "1.0.16", - "1.0.14", - "1.0.13", - "1.0.12", - "1.0.11", - "1.0.10", - "1.0.9", - "1.0.8", - "1.0.6", - "1.0.7", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0" - ], - "15858991-8bac-4542-99e7-577fef9b5be6": [ - "1.223.0", - "1.222.0", - "1.221.103", - "1.221.102", - "1.221.101", - "1.215.0", - "1.210.0", - "1.208.0", - "1.198.0", - "1.195.0", - "1.187.0", - "1.184.2", - "1.184.0", - "1.182.0", - "1.178.1", - "1.178.0", - "1.163.7", - "1.163.6", - "1.163.5", - "1.163.4", - "1.163.3", - "1.163.2", - "1.163.1", - "1.163.0", - "1.160.2", - "1.160.1", - "1.160.0", - "1.158.3", - "1.158.2", - "1.158.1", - "1.158.0", - "1.157.3", - "1.157.2", - "1.157.1", - "1.157.0", - "1.0.22", - "1.0.21", - "1.0.20", - "1.0.19", - "1.0.18", - "1.0.16", - "1.0.14", - "1.0.13", - "1.0.12", - "1.0.11", - "1.0.10", - "1.0.9", - "1.0.8", - "1.0.6", - "1.0.7", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0" - ], - "azurevmssdeployment": [ - "0.222.0", - "0.221.102", - "0.220.0", - "0.218.0", - "0.217.1", - "0.217.0", - "0.216.1", - "0.216.0", - "0.215.0", - "0.208.0", - "0.207.0", - "0.198.0", - "0.176.0", - "0.175.3", - "0.175.2", - "0.175.1", - "0.175.0", - "0.171.1", - "0.171.0", - "0.1.15", - "0.1.14", - "0.1.13", - "0.1.12", - "0.1.11", - "0.1.10", - "0.1.9", - "0.1.8", - "0.1.7", - "0.1.6", - "0.1.5", - "0.1.4", - "0.1.3", - "0.1.2", - "0.1.1", - "0.1.0", - "0.0.35", - "0.0.34", - "0.0.33", - "0.0.32", - "0.0.31", - "0.0.30", - "0.0.29", - "0.0.28", - "0.0.27", - "0.0.24", - "0.0.26", - "0.0.25", - "0.0.23", - "0.0.22", - "0.0.21", - "0.0.20", - "0.0.19", - "0.0.18", - "0.0.17", - "0.0.16", - "0.0.15", - "0.0.14" - ], - "4dda660c-b643-4598-a4a2-61080d0002d9": [ - "0.222.0", - "0.221.102", - "0.220.0", - "0.218.0", - "0.217.1", - "0.217.0", - "0.216.1", - "0.216.0", - "0.215.0", - "0.208.0", - "0.207.0", - "0.198.0", - "0.176.0", - "0.175.3", - "0.175.2", - "0.175.1", - "0.175.0", - "0.171.1", - "0.171.0", - "0.1.15", - "0.1.14", - "0.1.13", - "0.1.12", - "0.1.11", - "0.1.10", - "0.1.9", - "0.1.8", - "0.1.7", - "0.1.6", - "0.1.5", - "0.1.4", - "0.1.3", - "0.1.2", - "0.1.1", - "0.1.0", - "0.0.35", - "0.0.34", - "0.0.33", - "0.0.32", - "0.0.31", - "0.0.30", - "0.0.29", - "0.0.28", - "0.0.27", - "0.0.24", - "0.0.26", - "0.0.25", - "0.0.23", - "0.0.22", - "0.0.21", - "0.0.20", - "0.0.19", - "0.0.18", - "0.0.17", - "0.0.16", - "0.0.15", - "0.0.14" - ], - "azurestaticwebapp": [ - "0.224.0", - "0.222.0", - "0.220.0", - "0.219.0", - "0.217.0", - "0.208.0", - "0.203.0", - "0.202.0", - "0.200.0", - "0.194.2", - "0.187.2", - "0.187.1", - "0.1.0" - ], - "18aad896-e191-4720-88d6-8ced4806941a": [ - "0.224.0", - "0.222.0", - "0.220.0", - "0.219.0", - "0.217.0", - "0.208.0", - "0.203.0", - "0.202.0", - "0.200.0", - "0.194.2", - "0.187.2", - "0.187.1", - "0.1.0" - ], - "azurespringcloud": [ - "0.223.0", - "0.222.0", - "0.221.102", - "0.221.2", - "0.221.1", - "0.220.1", - "0.220.0", - "0.217.1", - "0.217.0", - "0.216.1", - "0.216.0", - "0.215.2", - "0.215.1", - "0.215.0", - "0.213.0", - "0.212.0", - "0.210.0", - "0.208.0", - "0.207.0", - "0.206.0", - "0.201.0", - "0.198.0", - "0.185.6" - ], - "5679292e-de0e-473a-948e-4874d2d8ef97": [ - "0.223.0", - "0.222.0", - "0.221.102", - "0.221.2", - "0.221.1", - "0.220.1", - "0.220.0", - "0.217.1", - "0.217.0", - "0.216.1", - "0.216.0", - "0.215.2", - "0.215.1", - "0.215.0", - "0.213.0", - "0.212.0", - "0.210.0", - "0.208.0", - "0.207.0", - "0.206.0", - "0.201.0", - "0.198.0", - "0.185.6" - ], - "azurermwebappdeployment": [ - "4.223.4", - "4.223.3", - "4.223.2", - "4.223.1", - "4.223.0", - "4.222.0", - "4.221.103", - "4.221.102", - "4.221.101", - "4.220.0", - "4.217.2", - "4.217.1", - "4.217.0", - "4.216.2", - "4.216.1", - "4.216.0", - "4.215.2", - "4.215.1", - "4.215.0", - "4.214.0", - "4.213.0", - "4.212.0", - "4.208.1", - "4.208.0", - "4.205.13", - "4.198.0", - "4.195.4", - "4.184.4", - "4.184.2", - "4.184.1", - "4.184.0", - "4.181.0", - "4.179.0", - "4.178.1", - "4.178.0", - "4.175.2", - "4.175.1", - "4.175.0", - "4.171.0", - "4.163.9", - "4.163.8", - "4.163.7", - "4.163.6", - "4.163.5", - "4.163.4", - "4.163.3", - "4.163.2", - "4.163.1", - "4.163.0", - "4.160.3", - "4.160.2", - "4.160.1", - "4.160.0", - "4.157.9", - "4.157.8", - "4.157.7", - "4.157.6", - "4.157.5", - "4.157.4", - "4.157.3", - "4.157.2", - "4.157.1", - "4.157.0", - "4.156.7", - "4.156.6", - "4.156.5", - "4.156.4", - "4.156.3", - "4.3.37", - "4.156.2", - "4.156.1", - "4.156.0", - "4.155.0", - "4.3.36", - "4.3.35", - "4.3.34", - "4.3.33", - "4.3.32", - "4.3.31", - "4.3.30", - "4.3.29", - "4.3.28", - "4.3.27", - "4.3.26", - "4.3.25", - "4.3.24", - "4.3.23", - "4.3.22", - "4.3.21", - "4.3.20", - "4.3.19", - "4.3.17", - "4.3.16", - "4.3.15", - "4.3.14", - "4.3.13", - "4.3.12", - "4.3.11", - "4.3.10", - "4.3.9", - "4.3.8", - "4.3.7", - "4.3.6", - "4.3.5", - "4.3.4", - "4.3.3", - "4.3.2", - "4.3.1", - "4.3.0", - "4.2.11", - "4.2.10", - "4.2.9", - "4.2.7", - "4.2.6", - "4.2.5", - "4.2.3", - "4.2.2", - "4.2.1", - "4.2.0", - "4.1.10", - "4.1.9", - "4.1.8", - "4.1.7", - "3.223.0", - "3.221.103", - "3.221.102", - "3.221.101", - "3.221.0", - "3.217.1", - "3.217.0", - "3.216.1", - "3.216.0", - "3.215.0", - "3.213.0", - "3.208.0", - "3.198.0", - "3.195.1", - "3.184.1", - "3.184.0", - "3.179.0", - "3.178.0", - "3.175.3", - "3.175.2", - "3.175.1", - "3.175.0", - "3.163.5", - "3.163.4", - "3.163.3", - "3.163.2", - "3.163.1", - "3.163.0", - "3.160.2", - "3.160.1", - "3.160.0", - "3.4.31", - "3.4.30", - "3.4.29", - "3.4.28", - "3.4.27", - "3.4.26", - "3.4.25", - "3.4.24", - "3.4.23", - "3.4.22", - "3.4.21", - "3.4.20", - "3.4.18", - "3.4.17", - "3.4.16", - "3.4.15", - "3.4.14", - "3.4.13", - "3.4.12", - "3.4.11", - "3.4.10", - "3.4.9", - "3.4.7", - "3.4.6", - "3.4.5", - "3.4.4", - "3.4.3", - "3.4.2", - "3.4.1", - "3.4.0" - ], - "497d490f-eea7-4f2b-ab94-48d9c1acdcb1": [ - "4.223.4", - "4.223.3", - "4.223.2", - "4.223.1", - "4.223.0", - "4.222.0", - "4.221.103", - "4.221.102", - "4.221.101", - "4.220.0", - "4.217.2", - "4.217.1", - "4.217.0", - "4.216.2", - "4.216.1", - "4.216.0", - "4.215.2", - "4.215.1", - "4.215.0", - "4.214.0", - "4.213.0", - "4.212.0", - "4.208.1", - "4.208.0", - "4.205.13", - "4.198.0", - "4.195.4", - "4.184.4", - "4.184.2", - "4.184.1", - "4.184.0", - "4.181.0", - "4.179.0", - "4.178.1", - "4.178.0", - "4.175.2", - "4.175.1", - "4.175.0", - "4.171.0", - "4.163.9", - "4.163.8", - "4.163.7", - "4.163.6", - "4.163.5", - "4.163.4", - "4.163.3", - "4.163.2", - "4.163.1", - "4.163.0", - "4.160.3", - "4.160.2", - "4.160.1", - "4.160.0", - "4.157.9", - "4.157.8", - "4.157.7", - "4.157.6", - "4.157.5", - "4.157.4", - "4.157.3", - "4.157.2", - "4.157.1", - "4.157.0", - "4.156.7", - "4.156.6", - "4.156.5", - "4.156.4", - "4.156.3", - "4.3.37", - "4.156.2", - "4.156.1", - "4.156.0", - "4.155.0", - "4.3.36", - "4.3.35", - "4.3.34", - "4.3.33", - "4.3.32", - "4.3.31", - "4.3.30", - "4.3.29", - "4.3.28", - "4.3.27", - "4.3.26", - "4.3.25", - "4.3.24", - "4.3.23", - "4.3.22", - "4.3.21", - "4.3.20", - "4.3.19", - "4.3.17", - "4.3.16", - "4.3.15", - "4.3.14", - "4.3.13", - "4.3.12", - "4.3.11", - "4.3.10", - "4.3.9", - "4.3.8", - "4.3.7", - "4.3.6", - "4.3.5", - "4.3.4", - "4.3.3", - "4.3.2", - "4.3.1", - "4.3.0", - "4.2.11", - "4.2.10", - "4.2.9", - "4.2.7", - "4.2.6", - "4.2.5", - "4.2.3", - "4.2.2", - "4.2.1", - "4.2.0", - "4.1.10", - "4.1.9", - "4.1.8", - "4.1.7", - "3.223.0", - "3.221.103", - "3.221.102", - "3.221.101", - "3.221.0", - "3.217.1", - "3.217.0", - "3.216.1", - "3.216.0", - "3.215.0", - "3.213.0", - "3.208.0", - "3.198.0", - "3.195.1", - "3.184.1", - "3.184.0", - "3.179.0", - "3.178.0", - "3.175.3", - "3.175.2", - "3.175.1", - "3.175.0", - "3.163.5", - "3.163.4", - "3.163.3", - "3.163.2", - "3.163.1", - "3.163.0", - "3.160.2", - "3.160.1", - "3.160.0", - "3.4.31", - "3.4.30", - "3.4.29", - "3.4.28", - "3.4.27", - "3.4.26", - "3.4.25", - "3.4.24", - "3.4.23", - "3.4.22", - "3.4.21", - "3.4.20", - "3.4.18", - "3.4.17", - "3.4.16", - "3.4.15", - "3.4.14", - "3.4.13", - "3.4.12", - "3.4.11", - "3.4.10", - "3.4.9", - "3.4.7", - "3.4.6", - "3.4.5", - "3.4.4", - "3.4.3", - "3.4.2", - "3.4.1", - "3.4.0" - ], - "azureresourcemanagertemplatedeployment": [ - "3.223.1", - "3.223.0", - "3.220.0", - "3.218.0", - "3.217.1", - "3.217.0", - "3.216.1", - "3.216.0", - "3.214.0", - "3.210.1", - "3.210.0", - "3.209.0", - "3.208.0", - "3.200.0", - "3.199.0", - "3.198.0", - "3.196.0", - "3.192.1", - "3.192.0", - "3.184.1", - "3.184.0", - "3.183.0", - "3.182.0", - "3.181.0", - "3.180.0", - "3.179.1", - "3.179.0", - "3.176.0", - "3.175.1", - "3.175.0", - "3.2.10", - "3.2.8", - "3.2.7", - "3.2.6", - "3.2.5", - "3.2.4", - "3.2.3", - "3.2.2", - "3.2.1", - "3.2.0", - "3.1.19", - "3.1.18", - "3.1.17", - "3.1.16", - "3.1.15", - "3.1.14", - "3.1.13", - "3.1.12", - "3.1.11", - "3.1.10", - "3.1.9", - "3.1.8", - "3.1.7", - "3.1.5", - "3.1.4", - "3.1.3", - "3.1.2", - "3.1.1", - "3.1.0", - "3.0.2", - "3.0.1", - "3.0.0" - ], - "94a74903-f93f-4075-884f-dc11f34058b4": [ - "3.223.1", - "3.223.0", - "3.220.0", - "3.218.0", - "3.217.1", - "3.217.0", - "3.216.1", - "3.216.0", - "3.214.0", - "3.210.1", - "3.210.0", - "3.209.0", - "3.208.0", - "3.200.0", - "3.199.0", - "3.198.0", - "3.196.0", - "3.192.1", - "3.192.0", - "3.184.1", - "3.184.0", - "3.183.0", - "3.182.0", - "3.181.0", - "3.180.0", - "3.179.1", - "3.179.0", - "3.176.0", - "3.175.1", - "3.175.0", - "3.2.10", - "3.2.8", - "3.2.7", - "3.2.6", - "3.2.5", - "3.2.4", - "3.2.3", - "3.2.2", - "3.2.1", - "3.2.0", - "3.1.19", - "3.1.18", - "3.1.17", - "3.1.16", - "3.1.15", - "3.1.14", - "3.1.13", - "3.1.12", - "3.1.11", - "3.1.10", - "3.1.9", - "3.1.8", - "3.1.7", - "3.1.5", - "3.1.4", - "3.1.3", - "3.1.2", - "3.1.1", - "3.1.0", - "3.0.2", - "3.0.1", - "3.0.0", - "2.223.0", - "2.221.102", - "2.220.0", - "2.217.1", - "2.217.0", - "2.216.1", - "2.216.0", - "2.215.0", - "2.209.0", - "2.208.0", - "2.198.0", - "2.196.0", - "2.192.1", - "2.192.0", - "2.184.1", - "2.184.0", - "2.183.0", - "2.182.0", - "2.181.0", - "2.180.0", - "2.179.0", - "2.175.2", - "2.175.1", - "2.175.0", - "2.171.0", - "2.166.4", - "2.166.3", - "2.166.2", - "2.166.1", - "2.166.0", - "2.165.0", - "2.163.8", - "2.163.7", - "2.163.6", - "2.163.5", - "2.163.4", - "2.163.3", - "2.163.2", - "2.163.0", - "2.162.2", - "2.162.1", - "2.157.12", - "2.157.11", - "2.157.10", - "2.157.8", - "2.157.7", - "2.157.6", - "2.157.5", - "2.157.4", - "2.157.3", - "2.157.2", - "2.157.1", - "2.157.0", - "2.156.1", - "2.156.0", - "2.152.4", - "2.152.3", - "2.152.2", - "2.152.1", - "2.152.0", - "2.151.0", - "2.147.4", - "2.147.3", - "2.147.2", - "2.147.1", - "2.147.0", - "2.145.0", - "2.141.5", - "2.141.4", - "2.141.3", - "2.141.2", - "2.141.1", - "2.141.0", - "2.140.0", - "2.139.2", - "2.139.1", - "2.139.0", - "2.138.1", - "2.138.0", - "2.137.1", - "2.137.0", - "2.136.2", - "2.136.1", - "2.136.0", - "2.134.0", - "2.131.3" - ], - "azureresourcegroupdeployment": [ - "2.223.0", - "2.221.102", - "2.220.0", - "2.217.1", - "2.217.0", - "2.216.1", - "2.216.0", - "2.215.0", - "2.209.0", - "2.208.0", - "2.198.0", - "2.196.0", - "2.192.1", - "2.192.0", - "2.184.1", - "2.184.0", - "2.183.0", - "2.182.0", - "2.181.0", - "2.180.0", - "2.179.0", - "2.175.2", - "2.175.1", - "2.175.0", - "2.171.0", - "2.166.4", - "2.166.3", - "2.166.2", - "2.166.1", - "2.166.0", - "2.165.0", - "2.163.8", - "2.163.7", - "2.163.6", - "2.163.5", - "2.163.4", - "2.163.3", - "2.163.2", - "2.163.0", - "2.162.2", - "2.162.1", - "2.157.12", - "2.157.11", - "2.157.10", - "2.157.8", - "2.157.7", - "2.157.6", - "2.157.5", - "2.157.4", - "2.157.3", - "2.157.2", - "2.157.1", - "2.157.0", - "2.156.1", - "2.156.0", - "2.152.4", - "2.152.3", - "2.152.2", - "2.152.1", - "2.152.0", - "2.151.0", - "2.147.4", - "2.147.3", - "2.147.2", - "2.147.1", - "2.147.0", - "2.145.0", - "2.141.5", - "2.141.4", - "2.141.3", - "2.141.2", - "2.141.1", - "2.141.0", - "2.140.0", - "2.139.2", - "2.139.1", - "2.139.0", - "2.138.1", - "2.138.0", - "2.137.1", - "2.137.0", - "2.136.2", - "2.136.1", - "2.136.0", - "2.134.0", - "2.131.3" - ], - "azurepowershell": [ - "5.223.1", - "5.223.0", - "5.222.0", - "5.221.102", - "5.221.100", - "5.220.0", - "5.218.0", - "5.217.1", - "5.217.0", - "5.216.1", - "5.216.0", - "5.215.0", - "5.209.0", - "5.208.0", - "5.202.0", - "5.198.0", - "5.196.0", - "5.195.0", - "5.193.0", - "5.185.0", - "5.184.1", - "5.184.0", - "5.183.0", - "5.179.0", - "5.176.3", - "5.176.2", - "5.176.1", - "5.176.0", - "5.175.1", - "5.175.0", - "5.173.1", - "5.173.0", - "5.171.1", - "5.171.0", - "5.170.1", - "5.170.0", - "5.168.1", - "5.168.0", - "5.167.1", - "5.167.0", - "5.165.0", - "5.162.5", - "5.162.4", - "5.162.3", - "5.162.2", - "5.162.1", - "5.162.0", - "4.223.1", - "4.223.0", - "4.222.0", - "4.221.102", - "4.221.100", - "4.220.0", - "4.218.0", - "4.217.1", - "4.217.0", - "4.216.1", - "4.216.0", - "4.215.0", - "4.209.0", - "4.208.0", - "4.202.0", - "4.198.0", - "4.196.0", - "4.195.0", - "4.193.0", - "4.185.0", - "4.184.1", - "4.184.0", - "4.183.0", - "4.179.0", - "4.176.3", - "4.176.2", - "4.176.1", - "4.176.0", - "4.175.1", - "4.175.0", - "4.173.1", - "4.173.0", - "4.171.1", - "4.171.0", - "4.168.2", - "4.168.1", - "4.168.0", - "4.167.1", - "4.167.0", - "4.159.12", - "4.159.11", - "4.159.10", - "4.159.9", - "4.159.8", - "4.159.7", - "4.159.6", - "4.159.5", - "4.159.4", - "4.159.3", - "4.159.2", - "4.159.1", - "4.159.0", - "4.157.5", - "4.157.4", - "4.157.3", - "4.157.2", - "4.157.1", - "4.157.0", - "4.154.5", - "4.156.0", - "4.154.4", - "4.154.3", - "4.154.2", - "4.154.1", - "4.154.0", - "4.153.0", - "4.0.12", - "4.0.11", - "4.0.10", - "4.0.9", - "4.0.8", - "4.0.7", - "4.0.6", - "4.0.5", - "4.0.4", - "4.0.3", - "4.0.2", - "4.0.1", - "4.0.0", - "4.0.115", - "4.0.98", - "4.0.75", - "4.0.61", - "4.0.45", - "4.0.43", - "3.223.1", - "3.223.0", - "3.222.0", - "3.221.102", - "3.221.100", - "3.220.0", - "3.218.0", - "3.202.0", - "3.198.0", - "3.185.0", - "3.184.0", - "3.179.1", - "3.179.0", - "3.171.4", - "3.171.3", - "3.171.2", - "3.171.1", - "3.171.0", - "3.167.3", - "3.167.2", - "3.167.1", - "3.167.0", - "3.153.3", - "3.153.2", - "3.153.1", - "3.153.0", - "3.1.28", - "3.1.27", - "3.1.26", - "3.1.25", - "3.1.24", - "3.1.23", - "3.1.21", - "3.1.20", - "3.1.19", - "3.1.18", - "3.1.12", - "3.1.13", - "3.1.11", - "3.1.10", - "3.1.9", - "3.1.8", - "3.1.7", - "3.1.6", - "3.1.5", - "3.1.4", - "3.1.3", - "3.1.2", - "3.1.1", - "3.1.0", - "3.0.5", - "3.0.4", - "3.0.3", - "2.223.1", - "2.223.0", - "2.222.0", - "2.221.102", - "2.221.100", - "2.218.0", - "2.202.0", - "2.198.0", - "2.185.0", - "2.184.0", - "2.179.1", - "2.179.0", - "2.171.4", - "2.171.3", - "2.171.2", - "2.171.1", - "2.171.0", - "2.167.3", - "2.167.2", - "2.167.1", - "2.167.0", - "2.153.2", - "2.153.1", - "2.153.0", - "2.1.12", - "2.1.11", - "2.1.10", - "2.1.9", - "2.1.8", - "2.1.7", - "2.1.6", - "2.1.5", - "2.1.4", - "2.1.3", - "2.1.2", - "2.1.1", - "2.1.0" - ], - "72a1931b-effb-4d2e-8fd8-f8472a07cb62": [ - "5.223.1", - "5.223.0", - "5.222.0", - "5.221.102", - "5.221.100", - "5.220.0", - "5.218.0", - "5.217.1", - "5.217.0", - "5.216.1", - "5.216.0", - "5.215.0", - "5.209.0", - "5.208.0", - "5.202.0", - "5.198.0", - "5.196.0", - "5.195.0", - "5.193.0", - "5.185.0", - "5.184.1", - "5.184.0", - "5.183.0", - "5.179.0", - "5.176.3", - "5.176.2", - "5.176.1", - "5.176.0", - "5.175.1", - "5.175.0", - "5.173.1", - "5.173.0", - "5.171.1", - "5.171.0", - "5.170.1", - "5.170.0", - "5.168.1", - "5.168.0", - "5.167.1", - "5.167.0", - "5.165.0", - "5.162.5", - "5.162.4", - "5.162.3", - "5.162.2", - "5.162.1", - "5.162.0", - "4.223.1", - "4.223.0", - "4.222.0", - "4.221.102", - "4.221.100", - "4.220.0", - "4.218.0", - "4.217.1", - "4.217.0", - "4.216.1", - "4.216.0", - "4.215.0", - "4.209.0", - "4.208.0", - "4.202.0", - "4.198.0", - "4.196.0", - "4.195.0", - "4.193.0", - "4.185.0", - "4.184.1", - "4.184.0", - "4.183.0", - "4.179.0", - "4.176.3", - "4.176.2", - "4.176.1", - "4.176.0", - "4.175.1", - "4.175.0", - "4.173.1", - "4.173.0", - "4.171.1", - "4.171.0", - "4.168.2", - "4.168.1", - "4.168.0", - "4.167.1", - "4.167.0", - "4.159.12", - "4.159.11", - "4.159.10", - "4.159.9", - "4.159.8", - "4.159.7", - "4.159.6", - "4.159.5", - "4.159.4", - "4.159.3", - "4.159.2", - "4.159.1", - "4.159.0", - "4.157.5", - "4.157.4", - "4.157.3", - "4.157.2", - "4.157.1", - "4.157.0", - "4.154.5", - "4.156.0", - "4.154.4", - "4.154.3", - "4.154.2", - "4.154.1", - "4.154.0", - "4.153.0", - "4.0.12", - "4.0.11", - "4.0.10", - "4.0.9", - "4.0.8", - "4.0.7", - "4.0.6", - "4.0.5", - "4.0.4", - "4.0.3", - "4.0.2", - "4.0.1", - "4.0.0", - "4.0.115", - "4.0.98", - "4.0.75", - "4.0.61", - "4.0.45", - "4.0.43", - "3.223.1", - "3.223.0", - "3.222.0", - "3.221.102", - "3.221.100", - "3.220.0", - "3.218.0", - "3.202.0", - "3.198.0", - "3.185.0", - "3.184.0", - "3.179.1", - "3.179.0", - "3.171.4", - "3.171.3", - "3.171.2", - "3.171.1", - "3.171.0", - "3.167.3", - "3.167.2", - "3.167.1", - "3.167.0", - "3.153.3", - "3.153.2", - "3.153.1", - "3.153.0", - "3.1.28", - "3.1.27", - "3.1.26", - "3.1.25", - "3.1.24", - "3.1.23", - "3.1.21", - "3.1.20", - "3.1.19", - "3.1.18", - "3.1.12", - "3.1.13", - "3.1.11", - "3.1.10", - "3.1.9", - "3.1.8", - "3.1.7", - "3.1.6", - "3.1.5", - "3.1.4", - "3.1.3", - "3.1.2", - "3.1.1", - "3.1.0", - "3.0.5", - "3.0.4", - "3.0.3", - "2.223.1", - "2.223.0", - "2.222.0", - "2.221.102", - "2.221.100", - "2.218.0", - "2.202.0", - "2.198.0", - "2.185.0", - "2.184.0", - "2.179.1", - "2.179.0", - "2.171.4", - "2.171.3", - "2.171.2", - "2.171.1", - "2.171.0", - "2.167.3", - "2.167.2", - "2.167.1", - "2.167.0", - "2.153.2", - "2.153.1", - "2.153.0", - "2.1.12", - "2.1.11", - "2.1.10", - "2.1.9", - "2.1.8", - "2.1.7", - "2.1.6", - "2.1.5", - "2.1.4", - "2.1.3", - "2.1.2", - "2.1.1", - "2.1.0" - ], - "azurepolicycheckgate": [ - "0.221.1", - "0.221.0", - "0.198.0", - "0.153.2", - "0.153.1", - "0.153.0", - "0.152.1", - "0.152.0", - "0.151.2", - "0.151.1", - "0.151.0", - "0.0.1" - ], - "8ba74703-e94f-4a35-814e-fc21f44578a2": [ - "0.221.1", - "0.221.0", - "0.198.0", - "0.153.2", - "0.153.1", - "0.153.0", - "0.152.1", - "0.152.0", - "0.151.2", - "0.151.1", - "0.151.0", - "0.0.1" - ], - "azurenlbmanagement": [ - "1.224.0", - "1.220.0", - "1.209.0", - "1.198.0", - "1.184.1", - "1.2.2", - "1.2.1", - "1.2.0", - "1.1.6", - "1.1.5", - "1.1.4", - "1.1.3", - "1.1.2", - "1.1.1", - "1.1.0" - ], - "e94f1750-a6a8-11e6-be69-bdf37a7b15d8": [ - "1.224.0", - "1.220.0", - "1.209.0", - "1.198.0", - "1.184.1", - "1.2.2", - "1.2.1", - "1.2.0", - "1.1.6", - "1.1.5", - "1.1.4", - "1.1.3", - "1.1.2", - "1.1.1", - "1.1.0" - ], - "azuremysqldeployment": [ - "1.223.1", - "1.223.0", - "1.222.0", - "1.221.102", - "1.217.1", - "1.217.0", - "1.216.1", - "1.216.0", - "1.215.1", - "1.215.0", - "1.208.0", - "1.205.0", - "1.198.0", - "1.195.3", - "1.184.3", - "1.184.1", - "1.184.0", - "1.183.0", - "1.182.1", - "1.182.0", - "1.179.0", - "1.178.0", - "1.175.2", - "1.175.1", - "1.175.0", - "1.171.0", - "1.156.26", - "1.156.25", - "1.156.24", - "1.156.23", - "1.156.22", - "1.156.21", - "1.156.20", - "1.156.19", - "1.156.18", - "1.156.17", - "1.156.16", - "1.156.15", - "1.156.14", - "1.156.13", - "1.156.12", - "1.156.11", - "1.156.10", - "1.156.9", - "1.156.8", - "1.156.7", - "1.156.6", - "1.156.5", - "1.156.4", - "1.156.3", - "1.156.2", - "1.0.29", - "1.156.1", - "1.156.0", - "1.0.30", - "1.0.28", - "1.0.27", - "1.0.26", - "1.0.25", - "1.0.24", - "1.0.23", - "1.0.22", - "1.0.21", - "1.0.20", - "1.0.19", - "1.0.18", - "1.0.15", - "1.0.17", - "1.0.16", - "1.0.14", - "1.0.13", - "1.0.12", - "1.0.11", - "1.0.10", - "1.0.9", - "1.0.8", - "1.0.7", - "1.0.6", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1" - ], - "bd1bed02-f04e-11e7-8c3f-9a214cf093ae": [ - "1.223.1", - "1.223.0", - "1.222.0", - "1.221.102", - "1.217.1", - "1.217.0", - "1.216.1", - "1.216.0", - "1.215.1", - "1.215.0", - "1.208.0", - "1.205.0", - "1.198.0", - "1.195.3", - "1.184.3", - "1.184.1", - "1.184.0", - "1.183.0", - "1.182.1", - "1.182.0", - "1.179.0", - "1.178.0", - "1.175.2", - "1.175.1", - "1.175.0", - "1.171.0", - "1.156.26", - "1.156.25", - "1.156.24", - "1.156.23", - "1.156.22", - "1.156.21", - "1.156.20", - "1.156.19", - "1.156.18", - "1.156.17", - "1.156.16", - "1.156.15", - "1.156.14", - "1.156.13", - "1.156.12", - "1.156.11", - "1.156.10", - "1.156.9", - "1.156.8", - "1.156.7", - "1.156.6", - "1.156.5", - "1.156.4", - "1.156.3", - "1.156.2", - "1.0.29", - "1.156.1", - "1.156.0", - "1.0.30", - "1.0.28", - "1.0.27", - "1.0.26", - "1.0.25", - "1.0.24", - "1.0.23", - "1.0.22", - "1.0.21", - "1.0.20", - "1.0.19", - "1.0.18", - "1.0.15", - "1.0.17", - "1.0.16", - "1.0.14", - "1.0.13", - "1.0.12", - "1.0.11", - "1.0.10", - "1.0.9", - "1.0.8", - "1.0.7", - "1.0.6", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1" - ], - "azuremonitor": [ - "1.198.0", - "1.183.0", - "1.175.0", - "1.173.0", - "1.157.2", - "1.157.1", - "1.157.0", - "1.151.2", - "1.151.1", - "1.151.0", - "1.0.4", - "1.0.2", - "1.0.1", - "1.0.0", - "0.198.0", - "0.0.16", - "0.0.15", - "0.0.14", - "0.0.13", - "0.0.12", - "0.0.11", - "0.0.10", - "0.0.9" - ], - "99a72e7f-25e4-4576-bf38-22a42b995ed8": [ - "1.198.0", - "1.183.0", - "1.175.0", - "1.173.0", - "1.157.2", - "1.157.1", - "1.157.0", - "1.151.2", - "1.151.1", - "1.151.0", - "1.0.4", - "1.0.2", - "1.0.1", - "1.0.0", - "0.198.0", - "0.0.16", - "0.0.15", - "0.0.14", - "0.0.13", - "0.0.12", - "0.0.11", - "0.0.10", - "0.0.9" - ], - "azurekeyvault": [ - "2.223.0", - "2.220.0", - "2.219.0", - "2.217.1", - "2.217.0", - "2.216.3", - "2.216.2", - "2.216.1", - "2.216.0", - "2.215.0", - "2.214.2", - "2.214.1", - "2.214.0", - "2.211.1", - "2.211.0", - "2.208.0", - "2.207.0", - "2.200.0", - "2.189.0", - "2.186.0", - "1.223.0", - "1.219.0", - "1.217.1", - "1.217.0", - "1.216.2", - "1.216.1", - "1.216.0", - "1.215.0", - "1.214.2", - "1.214.1", - "1.214.0", - "1.213.0", - "1.212.0", - "1.211.2", - "1.211.1", - "1.211.0", - "1.208.0", - "1.200.0", - "1.198.0", - "1.182.1", - "1.182.0", - "1.181.0", - "1.175.2", - "1.175.1", - "1.175.0", - "1.171.0", - "1.169.2", - "1.169.1", - "1.169.0", - "1.155.13", - "1.155.12", - "1.155.11", - "1.155.10", - "1.155.9", - "1.155.8", - "1.155.7", - "1.155.6", - "1.155.5", - "1.155.4", - "1.155.3", - "1.155.2", - "1.155.1", - "1.155.0", - "1.154.1", - "1.0.37", - "1.0.36", - "1.0.35", - "1.0.34", - "1.0.33", - "1.0.32", - "1.0.31", - "1.0.28", - "1.0.27", - "1.0.26", - "1.0.25", - "1.0.24", - "1.0.23", - "1.0.21", - "1.0.20", - "1.0.19", - "1.0.18" - ], - "1e244d32-2dd4-4165-96fb-b7441ca9331e": [ - "2.223.0", - "2.220.0", - "2.219.0", - "2.217.1", - "2.217.0", - "2.216.3", - "2.216.2", - "2.216.1", - "2.216.0", - "2.215.0", - "2.214.2", - "2.214.1", - "2.214.0", - "2.211.1", - "2.211.0", - "2.208.0", - "2.207.0", - "2.200.0", - "2.189.0", - "2.186.0", - "1.223.0", - "1.219.0", - "1.217.1", - "1.217.0", - "1.216.2", - "1.216.1", - "1.216.0", - "1.215.0", - "1.214.2", - "1.214.1", - "1.214.0", - "1.213.0", - "1.212.0", - "1.211.2", - "1.211.1", - "1.211.0", - "1.208.0", - "1.200.0", - "1.198.0", - "1.182.1", - "1.182.0", - "1.181.0", - "1.175.2", - "1.175.1", - "1.175.0", - "1.171.0", - "1.169.2", - "1.169.1", - "1.169.0", - "1.155.13", - "1.155.12", - "1.155.11", - "1.155.10", - "1.155.9", - "1.155.8", - "1.155.7", - "1.155.6", - "1.155.5", - "1.155.4", - "1.155.3", - "1.155.2", - "1.155.1", - "1.155.0", - "1.154.1", - "1.0.37", - "1.0.36", - "1.0.35", - "1.0.34", - "1.0.33", - "1.0.32", - "1.0.31", - "1.0.28", - "1.0.27", - "1.0.26", - "1.0.25", - "1.0.24", - "1.0.23", - "1.0.21", - "1.0.20", - "1.0.19", - "1.0.18" - ], - "azureiotedge": [ - "2.222.0", - "2.221.0", - "2.213.0", - "2.211.0", - "2.202.0", - "2.199.0", - "2.198.0", - "2.4.12", - "2.4.11", - "2.4.10", - "2.4.9", - "2.4.8", - "2.4.7", - "2.4.6", - "2.4.5", - "2.4.4", - "2.4.3", - "2.4.2", - "2.4.1", - "2.4.0", - "2.3.0", - "2.2.1", - "2.2.0", - "2.1.5", - "2.1.4", - "2.1.3", - "2.1.2", - "2.1.1", - "2.1.0", - "2.0.6", - "2.0.5", - "2.0.3", - "2.0.4", - "2.0.2", - "2.0.1", - "2.0.0" - ], - "80f3f6a0-82a6-4a22-ba7a-e5b8c541b9b8": [ - "2.222.0", - "2.221.0", - "2.213.0", - "2.211.0", - "2.202.0", - "2.199.0", - "2.198.0", - "2.4.12", - "2.4.11", - "2.4.10", - "2.4.9", - "2.4.8", - "2.4.7", - "2.4.6", - "2.4.5", - "2.4.4", - "2.4.3", - "2.4.2", - "2.4.1", - "2.4.0", - "2.3.0", - "2.2.1", - "2.2.0", - "2.1.5", - "2.1.4", - "2.1.3", - "2.1.2", - "2.1.1", - "2.1.0", - "2.0.6", - "2.0.5", - "2.0.3", - "2.0.4", - "2.0.2", - "2.0.1", - "2.0.0" - ], - "azurefunction": [ - "1.220.0", - "1.218.0", - "1.217.0", - "1.198.0", - "1.0.12", - "1.0.11", - "1.0.10", - "1.0.9", - "1.0.8", - "1.0.7", - "1.0.6", - "1.0.5", - "1.0.4", - "1.0.3" - ], - "537fdb7a-a601-4537-aa70-92645a2b5ce4": [ - "1.220.0", - "1.218.0", - "1.217.0", - "1.198.0", - "1.0.12", - "1.0.11", - "1.0.10", - "1.0.9", - "1.0.8", - "1.0.7", - "1.0.6", - "1.0.5", - "1.0.4", - "1.0.3" - ], - "azurefunctiononkubernetes": [ - "1.223.1", - "1.223.0", - "1.221.0", - "1.219.0", - "1.218.0", - "1.217.1", - "1.217.0", - "0.224.1", - "0.224.0", - "0.219.0", - "0.218.0", - "0.217.0", - "0.211.0", - "0.210.0", - "0.201.0", - "0.198.0", - "0.180.0", - "0.175.1", - "0.175.0", - "0.173.0", - "0.170.1", - "0.170.0", - "0.169.2", - "0.169.1", - "0.169.0", - "0.167.1", - "0.167.0", - "0.165.3", - "0.165.2", - "0.165.1", - "0.165.0", - "0.164.0", - "0.162.1", - "0.162.0", - "0.160.8", - "0.160.7", - "0.160.6", - "0.160.5", - "0.160.4" - ], - "fd1aa5b9-400c-4f4b-9c0b-069ba74e53c6": [ - "1.223.1", - "1.223.0", - "1.221.0", - "1.219.0", - "1.218.0", - "1.217.1", - "1.217.0", - "0.224.1", - "0.224.0", - "0.219.0", - "0.218.0", - "0.217.0", - "0.211.0", - "0.210.0", - "0.201.0", - "0.198.0", - "0.180.0", - "0.175.1", - "0.175.0", - "0.173.0", - "0.170.1", - "0.170.0", - "0.169.2", - "0.169.1", - "0.169.0", - "0.167.1", - "0.167.0", - "0.165.3", - "0.165.2", - "0.165.1", - "0.165.0", - "0.164.0", - "0.162.1", - "0.162.0", - "0.160.8", - "0.160.7", - "0.160.6", - "0.160.5", - "0.160.4", - "0.160.3", - "0.160.2", - "0.160.1", - "0.160.0" - ], - "azurefunctionsonkubernetes": ["0.160.3", "0.160.2", "0.160.1", "0.160.0"], - "azurefunctionapp": [ - "2.223.1", - "2.223.0", - "2.221.105", - "2.221.104", - "2.221.103", - "2.221.102", - "2.221.101", - "2.219.0", - "2.218.1", - "2.216.1", - "2.216.0", - "2.215.0", - "2.213.0", - "2.211.2", - "2.211.1", - "2.210.0", - "2.209.0", - "2.208.1", - "2.208.0", - "1.223.1", - "1.223.0", - "1.221.105", - "1.221.104", - "1.221.103", - "1.221.102", - "1.221.101", - "1.220.0", - "1.216.1", - "1.216.0", - "1.215.0", - "1.211.1", - "1.209.0", - "1.208.1", - "1.208.0", - "1.206.0", - "1.204.3", - "1.204.1", - "1.200.1", - "1.198.1", - "1.198.0", - "1.195.0", - "1.187.0", - "1.184.3", - "1.184.1", - "1.184.0", - "1.182.0", - "1.181.0", - "1.163.7", - "1.163.6", - "1.163.5", - "1.163.4", - "1.163.3", - "1.163.2", - "1.163.1", - "1.163.0", - "1.160.3", - "1.160.2", - "1.160.1", - "1.160.0", - "1.158.4", - "1.158.3", - "1.158.2", - "1.158.1", - "1.158.0", - "1.157.4", - "1.157.3", - "1.157.1", - "1.157.0", - "1.155.1", - "1.155.0", - "1.0.20", - "1.0.19", - "1.0.18", - "1.0.16", - "1.0.14", - "1.0.13", - "1.0.12", - "1.0.11", - "1.0.10", - "1.0.9", - "1.0.8", - "1.0.7", - "1.0.6", - "1.0.4", - "1.0.5", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0" - ], - "501dd25d-1785-43e4-b4e5-a5c78ccc0573": [ - "2.223.1", - "2.223.0", - "2.221.105", - "2.221.104", - "2.221.103", - "2.221.102", - "2.221.101", - "2.219.0", - "2.218.1", - "2.216.1", - "2.216.0", - "2.215.0", - "2.213.0", - "2.211.2", - "2.211.1", - "2.210.0", - "2.209.0", - "2.208.1", - "2.208.0", - "1.223.1", - "1.223.0", - "1.221.105", - "1.221.104", - "1.221.103", - "1.221.102", - "1.221.101", - "1.220.0", - "1.216.1", - "1.216.0", - "1.215.0", - "1.211.1", - "1.209.0", - "1.208.1", - "1.208.0", - "1.206.0", - "1.204.3", - "1.204.1", - "1.200.1", - "1.198.1", - "1.198.0", - "1.195.0", - "1.187.0", - "1.184.3", - "1.184.1", - "1.184.0", - "1.182.0", - "1.181.0", - "1.163.7", - "1.163.6", - "1.163.5", - "1.163.4", - "1.163.3", - "1.163.2", - "1.163.1", - "1.163.0", - "1.160.3", - "1.160.2", - "1.160.1", - "1.160.0", - "1.158.4", - "1.158.3", - "1.158.2", - "1.158.1", - "1.158.0", - "1.157.4", - "1.157.3", - "1.157.1", - "1.157.0", - "1.155.1", - "1.155.0", - "1.0.20", - "1.0.19", - "1.0.18", - "1.0.16", - "1.0.14", - "1.0.13", - "1.0.12", - "1.0.11", - "1.0.10", - "1.0.9", - "1.0.8", - "1.0.7", - "1.0.6", - "1.0.4", - "1.0.5", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0" - ], - "azurefunctionappcontainer": [ - "1.223.1", - "1.223.0", - "1.222.1", - "1.222.0", - "1.221.103", - "1.221.102", - "1.221.101", - "1.215.0", - "1.208.0", - "1.198.0", - "1.195.0", - "1.193.0", - "1.187.0", - "1.184.2", - "1.184.0", - "1.182.0", - "1.163.7", - "1.163.6", - "1.163.5", - "1.163.4", - "1.163.3", - "1.163.2", - "1.163.1", - "1.163.0", - "1.160.2", - "1.160.1", - "1.160.0", - "1.158.3", - "1.158.2", - "1.158.1", - "1.158.0", - "1.157.3", - "1.157.2", - "1.157.1", - "1.157.0", - "1.156.1", - "1.156.0", - "1.155.0", - "1.0.17", - "1.0.16", - "1.0.15", - "1.0.13", - "1.0.11", - "1.0.10", - "1.0.9", - "1.0.8", - "1.0.7", - "1.0.6", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0" - ], - "13c22ce0-3b93-43f9-aeb7-71fbce7bf5b2": [ - "1.223.1", - "1.223.0", - "1.222.1", - "1.222.0", - "1.221.103", - "1.221.102", - "1.221.101", - "1.215.0", - "1.208.0", - "1.198.0", - "1.195.0", - "1.193.0", - "1.187.0", - "1.184.2", - "1.184.0", - "1.182.0", - "1.163.7", - "1.163.6", - "1.163.5", - "1.163.4", - "1.163.3", - "1.163.2", - "1.163.1", - "1.163.0", - "1.160.2", - "1.160.1", - "1.160.0", - "1.158.3", - "1.158.2", - "1.158.1", - "1.158.0", - "1.157.3", - "1.157.2", - "1.157.1", - "1.157.0", - "1.156.1", - "1.156.0", - "1.155.0", - "1.0.17", - "1.0.16", - "1.0.15", - "1.0.13", - "1.0.11", - "1.0.10", - "1.0.9", - "1.0.8", - "1.0.7", - "1.0.6", - "1.0.5", - "1.0.4", - "1.0.3", - "1.0.2", - "1.0.1", - "1.0.0" - ], - "azurefilecopy": [ - "5.223.1", - "5.223.0", - "5.222.1", - "5.222.0", - "5.221.102", - "5.221.1", - "5.221.0", - "5.219.1", - "5.219.0", - "5.218.0", - "5.217.1", - "5.217.0", - "5.216.1", - "5.216.0", - "5.214.0", - "5.210.3", - "5.210.2", - "5.210.1", - "5.210.0", - "5.209.0", - "5.208.0", - "5.202.0", - "5.200.0", - "5.198.0", - "4.223.1", - "4.223.0", - "4.222.1", - "4.222.0", - "4.221.102", - "4.221.1", - "4.221.0", - "4.219.1", - "4.219.0", - "4.218.0", - "4.217.1", - "4.217.0", - "4.216.1", - "4.216.0", - "4.214.0", - "4.210.3", - "4.210.2", - "4.210.1", - "4.210.0", - "4.209.0", - "4.208.0", - "4.202.0", - "4.200.0", - "4.198.0", - "4.195.0", - "4.185.0", - "4.184.1", - "4.184.0", - "4.183.1", - "4.183.0", - "4.179.0", - "4.178.2", - "4.178.1", - "4.178.0", - "4.175.5", - "4.175.4", - "4.175.3", - "4.175.2", - "4.175.1", - "4.175.0", - "4.171.3", - "4.171.2", - "4.171.1", - "4.171.0", - "4.170.2", - "4.170.1", - "4.170.0", - "4.168.3", - "4.168.2", - "4.168.1", - "4.168.0", - "4.167.0", - "4.166.0", - "4.165.0", - "4.164.0", - "3.223.1", - "3.223.0", - "3.222.1", - "3.222.0", - "3.221.102", - "3.221.1", - "3.221.0", - "3.219.1", - "3.219.0", - "3.218.0", - "3.217.1", - "3.217.0", - "3.216.1", - "3.216.0", - "3.214.0", - "3.209.0", - "3.208.0", - "3.202.0", - "3.200.0", - "3.198.0", - "3.195.1", - "3.184.1", - "3.184.0", - "3.178.1", - "3.178.0", - "3.175.5", - "3.175.4", - "3.175.3", - "3.175.2", - "3.175.1", - "3.175.0", - "3.171.6", - "3.171.5", - "3.171.4", - "3.171.3", - "3.171.2", - "3.171.1", - "3.171.0", - "3.167.4", - "3.167.3", - "3.167.2", - "3.167.1", - "3.167.0", - "3.154.20", - "3.154.19", - "3.154.18", - "3.154.17", - "3.154.16", - "3.154.15", - "3.154.14", - "3.154.13", - "3.154.12", - "3.154.11", - "3.154.10", - "3.154.9", - "3.154.8", - "3.154.7", - "3.154.6", - "3.154.5", - "3.154.4", - "3.154.3", - "3.154.2", - "3.154.1", - "3.154.0", - "3.153.0", - "3.1.11", - "3.1.10", - "3.1.9", - "3.1.8", - "3.1.7", - "3.1.6", - "3.1.5", - "3.0.5", - "3.0.4", - "3.0.3", - "3.0.2", - "3.0.1", - "2.223.1", - "2.223.0", - "2.222.1", - "2.222.0", - "2.221.102", - "2.221.1", - "2.221.0", - "2.219.1", - "2.219.0", - "2.218.0", - "2.217.1", - "2.217.0", - "2.216.1", - "2.216.0", - "2.214.0", - "2.208.0", - "2.202.0", - "2.200.0", - "2.198.0", - "2.195.1", - "2.184.1", - "2.184.0", - "2.178.1", - "2.178.0", - "2.175.5", - "2.175.4", - "2.175.3", - "2.175.2", - "2.175.1", - "2.175.0", - "2.171.6", - "2.171.5", - "2.171.4", - "2.171.3", - "2.171.2", - "2.171.1", - "2.171.0", - "2.167.4", - "2.167.3", - "2.167.2", - "2.167.1", - "2.167.0", - "2.154.19", - "2.154.18", - "2.154.17", - "2.154.16", - "2.154.15", - "2.154.14", - "2.154.13", - "2.154.12", - "2.154.11", - "2.154.10", - "2.154.9", - "2.154.8", - "2.154.7", - "2.154.6", - "2.154.5", - "2.154.4", - "2.154.3", - "2.154.2", - "2.154.1", - "2.154.0", - "2.153.0", - "2.1.9", - "2.1.8", - "2.1.7", - "2.1.6", - "2.1.5", - "2.1.4", - "2.1.3", - "2.1.2", - "2.1.1", - "2.1.0", - "2.0.16", - "2.0.15", - "2.0.14", - "2.0.13", - "2.0.12", - "2.0.11", - "2.0.10", - "2.0.9", - "2.0.8", - "2.0.7", - "2.0.6", - "2.0.5", - "2.0.4", - "2.0.3", - "2.0.2", - "2.0.1", - "2.0.0", - "1.222.0", - "1.221.102", - "1.221.1", - "1.221.0", - "1.219.0", - "1.202.0", - "1.198.0", - "1.178.0", - "1.153.3", - "1.153.2", - "1.153.1", - "1.153.0", - "1.0.151", - "1.0.147", - "1.0.146", - "1.0.145", - "1.0.144", - "1.0.143", - "1.0.142", - "1.0.141", - "1.0.140", - "1.0.139", - "1.0.138", - "1.0.137", - "1.0.116", - "1.0.115", - "1.0.114" - ], - "eb72cb01-a7e5-427b-a8a1-1b31ccac8a43": [ - "5.223.1", - "5.223.0", - "5.222.1", - "5.222.0", - "5.221.102", - "5.221.1", - "5.221.0", - "5.219.1", - "5.219.0", - "5.218.0", - "5.217.1", - "5.217.0", - "5.216.1", - "5.216.0", - "5.214.0", - "5.210.3", - "5.210.2", - "5.210.1", - "5.210.0", - "5.209.0", - "5.208.0", - "5.202.0", - "5.200.0", - "5.198.0", - "4.223.1", - "4.223.0", - "4.222.1", - "4.222.0", - "4.221.102", - "4.221.1", - "4.221.0", - "4.219.1", - "4.219.0", - "4.218.0", - "4.217.1", - "4.217.0", - "4.216.1", - "4.216.0", - "4.214.0", - "4.210.3", - "4.210.2", - "4.210.1", - "4.210.0", - "4.209.0", - "4.208.0", - "4.202.0", - "4.200.0", - "4.198.0", - "4.195.0", - "4.185.0", - "4.184.1", - "4.184.0", - "4.183.1", - "4.183.0", - "4.179.0", - "4.178.2", - "4.178.1", - "4.178.0", - "4.175.5", - "4.175.4", - "4.175.3", - "4.175.2", - "4.175.1", - "4.175.0", - "4.171.3", - "4.171.2", - "4.171.1", - "4.171.0", - "4.170.2", - "4.170.1", - "4.170.0", - "4.168.3", - "4.168.2", - "4.168.1", - "4.168.0", - "4.167.0", - "4.166.0", - "4.165.0", - "4.164.0", - "3.223.1", - "3.223.0", - "3.222.1", - "3.222.0", - "3.221.102", - "3.221.1", - "3.221.0", - "3.219.1", - "3.219.0", - "3.218.0", - "3.217.1", - "3.217.0", - "3.216.1", - "3.216.0", - "3.214.0", - "3.209.0", - "3.208.0", - "3.202.0", - "3.200.0", - "3.198.0", - "3.195.1", - "3.184.1", - "3.184.0", - "3.178.1", - "3.178.0", - "3.175.5", - "3.175.4", - "3.175.3", - "3.175.2", - "3.175.1", - "3.175.0", - "3.171.6", - "3.171.5", - "3.171.4", - "3.171.3", - "3.171.2", - "3.171.1", - "3.171.0", - "3.167.4", - "3.167.3", - "3.167.2", - "3.167.1", - "3.167.0", - "3.154.20", - "3.154.19", - "3.154.18", - "3.154.17", - "3.154.16", - "3.154.15", - "3.154.14", - "3.154.13", - "3.154.12", - "3.154.11", - "3.154.10", - "3.154.9", - "3.154.8", - "3.154.7", - "3.154.6", - "3.154.5", - "3.154.4", - "3.154.3", - "3.154.2", - "3.154.1", - "3.154.0", - "3.153.0", - "3.1.11", - "3.1.10", - "3.1.9", - "3.1.8", - "3.1.7", - "3.1.6", - "3.1.5", - "3.0.5", - "3.0.4", - "3.0.3", - "3.0.2", - "3.0.1", - "2.223.1", - "2.223.0", - "2.222.1", - "2.222.0", - "2.221.102", - "2.221.1", - "2.221.0", - "2.219.1", - "2.219.0", - "2.218.0", - "2.217.1", - "2.217.0", - "2.216.1", - "2.216.0", - "2.214.0", - "2.208.0", - "2.202.0", - "2.200.0", - "2.198.0", - "2.195.1", - "2.184.1", - "2.184.0", - "2.178.1", - "2.178.0", - "2.175.5", - "2.175.4", - "2.175.3", - "2.175.2", - "2.175.1", - "2.175.0", - "2.171.6", - "2.171.5", - "2.171.4", - "2.171.3", - "2.171.2", - "2.171.1", - "2.171.0", - "2.167.4", - "2.167.3", - "2.167.2", - "2.167.1", - "2.167.0", - "2.154.19", - "2.154.18", - "2.154.17", - "2.154.16", - "2.154.15", - "2.154.14", - "2.154.13", - "2.154.12", - "2.154.11", - "2.154.10", - "2.154.9", - "2.154.8", - "2.154.7", - "2.154.6", - "2.154.5", - "2.154.4", - "2.154.3", - "2.154.2", - "2.154.1", - "2.154.0", - "2.153.0", - "2.1.9", - "2.1.8", - "2.1.7", - "2.1.6", - "2.1.5", - "2.1.4", - "2.1.3", - "2.1.2", - "2.1.1", - "2.1.0", - "2.0.16", - "2.0.15", - "2.0.14", - "2.0.13", - "2.0.12", - "2.0.11", - "2.0.10", - "2.0.9", - "2.0.8", - "2.0.7", - "2.0.6", - "2.0.5", - "2.0.4", - "2.0.3", - "2.0.2", - "2.0.1", - "2.0.0", - "1.222.0", - "1.221.102", - "1.221.1", - "1.221.0", - "1.219.0", - "1.202.0", - "1.198.0", - "1.178.0", - "1.153.3", - "1.153.2", - "1.153.1", - "1.153.0", - "1.0.151", - "1.0.147", - "1.0.146", - "1.0.145", - "1.0.144", - "1.0.143", - "1.0.142", - "1.0.141", - "1.0.140", - "1.0.139", - "1.0.138", - "1.0.137", - "1.0.116", - "1.0.115", - "1.0.114" - ], - "azurecontainerapps": [ - "1.223.1", - "1.223.0", - "1.222.0", - "1.221.0", - "1.220.0", - "0.223.0", - "0.222.0", - "0.221.102", - "0.220.0", - "0.218.0", - "0.215.0", - "0.213.0" - ], - "cad8dd6a-de28-4d89-a7db-1bc20a2fbb2d": [ - "1.223.1", - "1.223.0", - "1.222.0", - "1.221.0", - "1.220.0", - "0.223.0", - "0.222.0", - "0.221.102", - "0.220.0", - "0.218.0", - "0.215.0", - "0.213.0" - ], - "azurecloudpowershelldeployment": [ - "2.223.1", - "2.223.0", - "2.222.0", - "1.223.1", - "1.223.0", - "1.222.0", - "1.221.102", - "1.221.0", - "1.218.0", - "1.202.0", - "1.198.0", - "1.184.0", - "1.175.3", - "1.175.2", - "1.175.1", - "1.175.0", - "1.171.2", - "1.171.1", - "1.171.0", - "1.167.3", - "1.167.2", - "1.167.1", - "1.167.0", - "1.158.1", - "1.158.0", - "1.156.0", - "1.155.1", - "1.155.0", - "1.153.0", - "1.3.16", - "1.3.15", - "1.3.14", - "1.3.13", - "1.3.12", - "1.3.11", - "1.3.10", - "1.3.9", - "1.3.8", - "1.3.7", - "1.3.6", - "1.3.5", - "1.3.4" - ], - "2ca8fe15-42ea-4b26-80f1-e0738ec17e89": [ - "2.223.1", - "2.223.0", - "2.222.0", - "1.223.1", - "1.223.0", - "1.222.0", - "1.221.102", - "1.221.0", - "1.218.0", - "1.202.0", - "1.198.0", - "1.184.0", - "1.175.3", - "1.175.2", - "1.175.1", - "1.175.0", - "1.171.2", - "1.171.1", - "1.171.0", - "1.167.3", - "1.167.2", - "1.167.1", - "1.167.0", - "1.158.1", - "1.158.0", - "1.156.0", - "1.155.1", - "1.155.0", - "1.153.0", - "1.3.16", - "1.3.15", - "1.3.14", - "1.3.13", - "1.3.12", - "1.3.11", - "1.3.10", - "1.3.9", - "1.3.8", - "1.3.7", - "1.3.6", - "1.3.5", - "1.3.4" - ], - "azurecli": [ - "2.223.0", - "2.220.0", - "2.217.1", - "2.217.0", - "2.216.0", - "2.215.0", - "2.213.0", - "2.208.0", - "2.198.0", - "2.1.2", - "2.1.1", - "2.1.0", - "2.0.17", - "2.0.16", - "2.0.15", - "2.0.14", - "2.0.13", - "2.0.12", - "2.0.11", - "2.0.10", - "2.0.9", - "2.0.8", - "2.0.7", - "2.0.6", - "2.0.5", - "2.0.4", - "2.0.3", - "2.0.2", - "2.0.1", - "2.0.0", - "1.223.0", - "1.220.0", - "1.216.0", - "1.215.0", - "1.213.0", - "1.213.1", - "1.208.0", - "1.198.0", - "1.164.0", - "1.163.3", - "1.163.2", - "1.163.1", - "1.163.0", - "1.157.0", - "1.156.0", - "1.155.1", - "1.152.3", - "1.152.2", - "1.152.1", - "1.152.0", - "1.151.0", - "1.150.0", - "1.149.0", - "1.147.0", - "1.144.4", - "1.144.3", - "1.144.2", - "1.144.1", - "1.143.2", - "1.143.1", - "1.140.3", - "1.140.2", - "1.140.1", - "1.140.0", - "1.137.3", - "1.137.2", - "1.137.1", - "1.137.0", - "1.132.0" - ], - "46e4be58-730b-4389-8a2f-ea10b3e5e815": [ - "2.223.0", - "2.220.0", - "2.217.1", - "2.217.0", - "2.216.0", - "2.215.0", - "2.213.0", - "2.208.0", - "2.198.0", - "2.1.2", - "2.1.1", - "2.1.0", - "2.0.17", - "2.0.16", - "2.0.15", - "2.0.14", - "2.0.13", - "2.0.12", - "2.0.11", - "2.0.10", - "2.0.9", - "2.0.8", - "2.0.7", - "2.0.6", - "2.0.5", - "2.0.4", - "2.0.3", - "2.0.2", - "2.0.1", - "2.0.0", - "1.223.0", - "1.220.0", - "1.216.0", - "1.215.0", - "1.213.0", - "1.213.1", - "1.208.0", - "1.198.0", - "1.164.0", - "1.163.3", - "1.163.2", - "1.163.1", - "1.163.0", - "1.157.0", - "1.156.0", - "1.155.1", - "1.152.3", - "1.152.2", - "1.152.1", - "1.152.0", - "1.151.0", - "1.150.0", - "1.149.0", - "1.147.0", - "1.144.4", - "1.144.3", - "1.144.2", - "1.144.1", - "1.143.2", - "1.143.1", - "1.140.3", - "1.140.2", - "1.140.1", - "1.140.0", - "1.137.3", - "1.137.2", - "1.137.1", - "1.137.0", - "1.132.0" - ], - "azureappservicesettings": [ - "1.223.0", - "1.222.0", - "1.221.102", - "1.215.0", - "1.214.0", - "1.208.0", - "1.198.0", - "1.194.0", - "1.187.0", - "1.184.2", - "1.184.0", - "1.182.0", - "1.170.2", - "1.170.1", - "1.170.0", - "1.163.5", - "1.163.4", - "1.163.3", - "1.163.2", - "1.163.1", - "1.163.0", - "1.160.3", - "1.160.2", - "1.160.1", - "1.160.0", - "1.158.3", - "1.158.2", - "1.158.1", - "1.158.0", - "1.0.2", - "1.0.1", - "1.0.0" - ], - "3eeea460-bffa-11e9-9cb5-2a2ae2dbcce4": [ - "1.223.0", - "1.222.0", - "1.221.102", - "1.215.0", - "1.214.0", - "1.208.0", - "1.198.0", - "1.194.0", - "1.187.0", - "1.184.2", - "1.184.0", - "1.182.0", - "1.170.2", - "1.170.1", - "1.170.0", - "1.163.5", - "1.163.4", - "1.163.3", - "1.163.2", - "1.163.1", - "1.163.0", - "1.160.3", - "1.160.2", - "1.160.1", - "1.160.0", - "1.158.3", - "1.158.2", - "1.158.1", - "1.158.0", - "1.0.2", - "1.0.1", - "1.0.0" - ], - "azureappservicemanage": [ - "0.223.0", - "0.221.104", - "0.221.103", - "0.221.101", - "0.221.0", - "0.220.0", - "0.217.2", - "0.217.1", - "0.217.0", - "0.216.1", - "0.216.0", - "0.215.0", - "0.214.0", - "0.210.0", - "0.208.0", - "0.206.0", - "0.200.0", - "0.198.0", - "0.195.0", - "0.184.1", - "0.175.2", - "0.175.1", - "0.175.0", - "0.171.0", - "0.162.7", - "0.162.6", - "0.162.5", - "0.162.4", - "0.162.3", - "0.162.2", - "0.162.1", - "0.2.66", - "0.2.65", - "0.2.64", - "0.2.63", - "0.2.62", - "0.2.61", - "0.2.60", - "0.2.59", - "0.2.58", - "0.2.57", - "0.2.55", - "0.2.54", - "0.2.53", - "0.2.52", - "0.2.51", - "0.2.50", - "0.2.49", - "0.2.48", - "0.2.47", - "0.2.46", - "0.2.45", - "0.2.44", - "0.2.43", - "0.2.42", - "0.2.41", - "0.2.40", - "0.2.39", - "0.2.38", - "0.2.36", - "0.2.35", - "0.2.34", - "0.2.33", - "0.2.32" - ], - "f045e430-8704-11e6-968f-e717e6411619": [ - "0.223.0", - "0.221.104", - "0.221.103", - "0.221.101", - "0.221.0", - "0.220.0", - "0.217.2", - "0.217.1", - "0.217.0", - "0.216.1", - "0.216.0", - "0.215.0", - "0.214.0", - "0.210.0", - "0.208.0", - "0.206.0", - "0.200.0", - "0.198.0", - "0.195.0", - "0.184.1", - "0.175.2", - "0.175.1", - "0.175.0", - "0.171.0", - "0.162.7", - "0.162.6", - "0.162.5", - "0.162.4", - "0.162.3", - "0.162.2", - "0.162.1", - "0.2.66", - "0.2.65", - "0.2.64", - "0.2.63", - "0.2.62", - "0.2.61", - "0.2.60", - "0.2.59", - "0.2.58", - "0.2.57", - "0.2.55", - "0.2.54", - "0.2.53", - "0.2.52", - "0.2.51", - "0.2.50", - "0.2.49", - "0.2.48", - "0.2.47", - "0.2.46", - "0.2.45", - "0.2.44", - "0.2.43", - "0.2.42", - "0.2.41", - "0.2.40", - "0.2.39", - "0.2.38", - "0.2.36", - "0.2.35", - "0.2.34", - "0.2.33", - "0.2.32" - ], - "automatedanalysis": ["0.198.0", "0.171.0"], - "6b519857-1a20-4248-bae8-aad039015afb": ["0.198.0", "0.171.0"], - "archivefiles": [ - "2.215.0", - "2.213.0", - "2.211.1", - "2.211.0", - "2.206.0", - "2.201.2", - "2.201.1", - "2.201.0", - "2.198.0", - "2.189.0", - "2.188.0", - "2.186.0", - "2.185.0", - "2.184.0", - "2.179.0", - "2.177.2", - "2.177.1", - "2.177.0", - "2.174.0", - "2.161.2", - "2.161.1", - "2.161.0", - "2.159.0", - "2.158.0", - "2.152.0", - "2.151.2", - "2.151.1", - "2.151.0", - "2.145.1", - "2.145.0", - "2.127.1", - "2.127.0" - ], - "d8b84976-e99a-4b86-b885-4849694435b0": [ - "2.215.0", - "2.213.0", - "2.211.1", - "2.211.0", - "2.206.0", - "2.201.2", - "2.201.1", - "2.201.0", - "2.198.0", - "2.189.0", - "2.188.0", - "2.186.0", - "2.185.0", - "2.184.0", - "2.179.0", - "2.177.2", - "2.177.1", - "2.177.0", - "2.174.0", - "2.161.2", - "2.161.1", - "2.161.0", - "2.159.0", - "2.158.0", - "2.152.0", - "2.151.2", - "2.151.1", - "2.151.0", - "2.145.1", - "2.145.0", - "2.127.1", - "2.127.0" - ], - "appcentertest": [ - "1.223.1", - "1.223.0", - "1.221.1", - "1.221.0", - "1.218.0", - "1.214.0", - "1.208.1", - "1.208.0", - "1.207.0", - "1.205.2", - "1.205.1", - "1.205.0", - "1.198.0", - "1.152.3", - "1.152.2", - "1.152.1", - "1.152.0", - "1.151.0", - "1.149.0", - "1.148.0", - "1.137.2", - "1.137.1", - "1.137.0", - "1.131.0" - ], - "ad5cd22a-be4e-48bb-adce-181a32432da5": [ - "1.223.1", - "1.223.0", - "1.221.1", - "1.221.0", - "1.218.0", - "1.214.0", - "1.208.1", - "1.208.0", - "1.207.0", - "1.205.2", - "1.205.1", - "1.205.0", - "1.198.0", - "1.152.3", - "1.152.2", - "1.152.1", - "1.152.0", - "1.151.0", - "1.149.0", - "1.148.0", - "1.137.2", - "1.137.1", - "1.137.0", - "1.131.0" - ], - "appcenterdistribute": [ - "3.223.0", - "3.221.1", - "3.221.0", - "3.214.0", - "3.209.1", - "3.209.0", - "3.200.0", - "3.199.0", - "3.198.0", - "3.195.0", - "3.186.0", - "3.173.0", - "3.160.2", - "3.160.1", - "3.160.0", - "3.159.0", - "3.158.0", - "3.157.0", - "3.156.0", - "3.154.1", - "3.154.0", - "3.153.0", - "3.152.1", - "3.151.1", - "3.151.0", - "3.150.1", - "3.150.0", - "2.214.0", - "2.209.1", - "2.209.0", - "2.198.0", - "2.173.0", - "2.152.3", - "2.152.2", - "2.152.1", - "2.151.1", - "2.151.0", - "2.149.0", - "2.0.0", - "1.223.0", - "1.214.0", - "1.209.1", - "1.209.0", - "1.198.0", - "1.194.0", - "1.173.0", - "1.152.3", - "1.152.2", - "1.152.1", - "1.151.1", - "1.151.0", - "1.147.0", - "1.146.0", - "1.139.2", - "1.139.1", - "1.139.0", - "1.138.0", - "1.137.1", - "1.137.0", - "1.136.0", - "1.134.0" - ], - "b832bec5-8c27-4fef-9fb8-6bec8524ad8a": [ - "3.223.0", - "3.221.1", - "3.221.0", - "3.214.0", - "3.209.1", - "3.209.0", - "3.200.0", - "3.199.0", - "3.198.0", - "3.195.0", - "3.186.0", - "3.173.0", - "3.160.2", - "3.160.1", - "3.160.0", - "3.159.0", - "3.158.0", - "3.157.0", - "3.156.0", - "3.154.1", - "3.154.0", - "3.153.0", - "3.152.1", - "3.151.1", - "3.151.0", - "3.150.1", - "3.150.0", - "2.214.0", - "2.209.1", - "2.209.0", - "2.198.0", - "2.173.0", - "2.152.3", - "2.152.2", - "2.152.1", - "2.151.1", - "2.151.0", - "2.149.0", - "2.0.0", - "1.223.0", - "1.214.0", - "1.209.1", - "1.209.0", - "1.198.0", - "1.194.0", - "1.173.0", - "1.152.3", - "1.152.2", - "1.152.1", - "1.151.1", - "1.151.0", - "1.147.0", - "1.146.0", - "1.139.2", - "1.139.1", - "1.139.0", - "1.138.0", - "1.137.1", - "1.137.0", - "1.136.0", - "1.134.0" - ], - "androidsigning": [ - "3.220.0", - "3.201.0", - "3.200.0", - "3.198.0", - "3.193.0", - "3.188.0", - "3.186.0", - "3.181.0", - "3.180.1", - "3.180.0", - "3.178.0", - "3.177.0", - "3.176.0", - "3.175.0", - "3.170.1", - "3.170.0", - "3.156.1", - "3.156.0", - "3.153.0", - "3.151.2", - "3.151.1", - "3.151.0", - "3.150.0", - "3.145.0", - "3.141.2", - "3.141.1", - "3.141.0", - "3.137.0", - "2.220.0", - "2.201.0", - "2.200.0", - "2.198.0", - "2.193.0", - "2.188.0", - "2.186.0", - "2.181.0", - "2.180.1", - "2.180.0", - "2.178.0", - "2.175.0", - "2.170.1", - "2.170.0", - "2.156.1", - "2.156.0", - "2.153.0", - "2.151.2", - "2.151.1", - "2.151.0", - "2.150.0", - "2.145.0", - "2.141.2", - "2.141.1", - "2.141.0", - "2.137.0", - "2.135.0" - ], - "80f3f6a0-82a6-4a22-ba7a-e5b8c541b9b9": [ - "3.220.0", - "3.201.0", - "3.200.0", - "3.198.0", - "3.193.0", - "3.188.0", - "3.186.0", - "3.181.0", - "3.180.1", - "3.180.0", - "3.178.0", - "3.177.0", - "3.176.0", - "3.175.0", - "3.170.1", - "3.170.0", - "3.156.1", - "3.156.0", - "3.153.0", - "3.151.2", - "3.151.1", - "3.151.0", - "3.150.0", - "3.145.0", - "3.141.2", - "3.141.1", - "3.141.0", - "3.137.0", - "2.220.0", - "2.201.0", - "2.200.0", - "2.198.0", - "2.193.0", - "2.188.0", - "2.186.0", - "2.181.0", - "2.180.1", - "2.180.0", - "2.178.0", - "2.175.0", - "2.170.1", - "2.170.0", - "2.156.1", - "2.156.0", - "2.153.0", - "2.151.2", - "2.151.1", - "2.151.0", - "2.150.0", - "2.145.0", - "2.141.2", - "2.141.1", - "2.141.0", - "2.137.0", - "2.135.0" - ], - "ant": [ - "1.212.0", - "1.208.0", - "1.201.0", - "1.200.1", - "1.200.0", - "1.198.0", - "1.189.0", - "1.181.0", - "1.175.1", - "1.175.0", - "1.158.2", - "1.158.1", - "1.158.0", - "1.155.0", - "1.151.2", - "1.151.1", - "1.151.0", - "1.149.0", - "1.143.1", - "1.143.0", - "1.141.2", - "1.141.1", - "1.141.0", - "1.140.1", - "1.140.0", - "1.139.1", - "1.139.0", - "1.137.0", - "1.135.0" - ], - "3a6a2d63-f2b2-4e93-bcf9-0cbe22f5dc26": [ - "1.212.0", - "1.208.0", - "1.201.0", - "1.200.1", - "1.200.0", - "1.198.0", - "1.189.0", - "1.181.0", - "1.175.1", - "1.175.0", - "1.158.2", - "1.158.1", - "1.158.0", - "1.155.0", - "1.151.2", - "1.151.1", - "1.151.0", - "1.149.0", - "1.143.1", - "1.143.0", - "1.141.2", - "1.141.1", - "1.141.0", - "1.140.1", - "1.140.0", - "1.139.1", - "1.139.0", - "1.137.0", - "1.135.0" - ] -} diff --git a/docs/development/adding-a-package-manager.md b/docs/development/adding-a-package-manager.md index cc40ee1c8a53246..6c70ba8e00fe608 100644 --- a/docs/development/adding-a-package-manager.md +++ b/docs/development/adding-a-package-manager.md @@ -1,18 +1,19 @@ # Adding a Package Manager -This document describes the steps to take if you want to add a new language/package manager. +This document explains how to add a new language/package manager. ## Code structure -Each package manager lives under `lib/modules/manager/*`, and is often tightly coupled to datasources under `lib/modules/datasource/*`. +Code for package managers goes in the `lib/modules/manager/*` directory. +The package manager code is often tightly coupled to the datasource code in `lib/modules/datasource/*`. -Versioning logic (e.g. SemVer, PEP 440) lives under `lib/modules/versioning/*`. +Versioning logic like Semver or PEP 440 goes in `lib/modules/versioning/*`. Common application logic for Renovate, not specific to particular managers, usually lives under `lib/workers/*`. ## Manager requirements -The manager's `index.ts` file supports the following values/functions: +The manager's `index.ts` file supports the following values or functions: | Value/function | Optional | Async | | ----------------------------- | -------- | ----- | @@ -29,36 +30,43 @@ The manager's `index.ts` file supports the following values/functions: ### `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. +For example: + +- to increase the version of a Maven module if a package has been updated +- to bump the Helm chart version, if a subchart version has been updated ### `extractPackageFile(content, packageFile, config)` (async, semi-mandatory) -This function is mandatory unless you use `extractAllPackageFiles` instead. +This function is mandatory, unless you use `extractAllPackageFiles` instead. It takes as arguments the file's content and optionally the file's full file pathname and config. -The function returns an array of detected/extracted dependencies, including: +The function returns an array of detected or extracted dependencies, including the: - dependency name -- dependency type (e.g. dependencies, devDependencies, etc) +- dependency type (dependencies, devDependencies, etc) - currentValue -- versioning used (e.g. SemVer, PEP 440) +- versioning used (like SemVer, PEP 440) The `extractPackageFile` function doesn't need to fully _understand_ the file or syntax that it gets. -It needs to understand enough to extract an accurate list of dependencies. +It needs to understand enough to extract a correct list of dependencies. + +In general, we extract _all_ dependencies from each dependency file, even if they have values we don't support. -As a general approach, we extract _all_ dependencies from each dependency file, even if they have values we don't support. -Any dependency file that has values we cannot renovate, should have a `skipReason` message added to the `extractPackageFile` function. -Make sure the `skipReason` variable string is helpful to someone reading the logs. +If the function reads parts of a dependency file that it can't parse, it should give a `skipReason` message to the `extractPackageFile` function. +Make sure the `skipReason` message is helpful to someone reading the logs. -Also, if a file is passed to `extractPackageFile` which is a "false match" (e.g. not an actual package file, or has no dependencies) then this function can return `null` to have it ignored and removed from the list of package files. +If `extractPackageFile` is passed a file which is a "false match", so not a package file, or a file with no dependencies then it can return `null`. +Downstream this results in the file being ignored and removed from the list of package files. ### `extractAllPackageFiles(packageFiles)` (async, optional) -Use this function instead of `extractPackageFile` if the package manager cannot parse/extract all package files in parallel. +Normally a package manager parses or extracts all package files in _parallel_, and can thus use the `extractPackageFile` function. +If the package manager you're adding works in _serial_, use this function instead. -For example, npm/Yarn needs to correlate package files together for features such as Lerna and Workspaces, so it's necessary to iterate through them all together after initial parsing. +For example the npm and Yarn package manager must process the `package.json` and `package-lock` or `yarn.lock` files together. +This allows features like Lerna and Workspaces to work. +This means that for npm or Yarn we need to iterate through all package files after the initial parsing. -As another example, Gradle needs to call a command via a child process in order to extract dependencies, so that must be done first. +As another example, in order for Gradle to extract dependencies Renovate must first call a command via a child process. The `extractAllPackageFiles` function takes an array of filenames as input. It returns an array of filenames and dependencies. @@ -66,9 +74,9 @@ It returns an array of filenames and dependencies. ### `getRangeStrategy(config)` (optional) Write this optional function if you want the manager to support "auto" range strategies. -For example, pinning or not pinning a dependency, depending on other values in the package file. +For example, pinning or _not_ pinning a dependency, depending on other values in the package file. -The `npm` manager uses the `getRangeStrategy` function to pin `devDependencies` but not `dependencies` unless the package file is detected as an app. +The `npm` manager uses the `getRangeStrategy` function to pin `devDependencies` but not `dependencies`, unless the package file is detected as an app. If left undefined, then a default `getRangeStrategy` will be used that always returns "replace". @@ -78,12 +86,12 @@ 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. +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. +We often use `updateArtifacts` to update lock files indirectly. To _directly_ update dependencies in lock files: use `updateLockedDependency` instead. diff --git a/docs/development/best-practices.md b/docs/development/best-practices.md index 2a78558b07233fe..2b1d0096acf9f61 100644 --- a/docs/development/best-practices.md +++ b/docs/development/best-practices.md @@ -6,10 +6,10 @@ Follow these best practices when you're working on our code. ## Git branch names Branch names should start with a [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) scope like `feat/` or `fix/`. -If you're closing an issue with your PR then put the issue number after that. -Finally, add some short human-readable text to make it easier to identify. +If you're closing an issue with your PR then put the issue number after the scope. +Finally, describe the changes in the branch in a few words. -For example: +Some good branch names: - `feat/13732-cacache-cleanup` - `fix/15431-gitea-automerge-strategy` @@ -27,7 +27,7 @@ Read the [GitHub Docs, renaming a branch](https://docs.github.com/en/repositorie - Prefer full function declarations for readability and better stack traces, so avoid `const func = ():void => {}` - Prefer `interface` over `type` for TypeScript type declarations -- Avoid [Enums](https://github.com/renovatebot/renovate/issues/13743), use union or [immutable objects](https://github.com/renovatebot/renovate/blob/5043379847818ac1fa71ff69c098451975e95710/lib/modules/versioning/pep440/range.ts#L8-L20) instead +- Avoid [Enums](https://github.com/renovatebot/renovate/issues/13743), use unions or [immutable objects](https://github.com/renovatebot/renovate/blob/5043379847818ac1fa71ff69c098451975e95710/lib/modules/versioning/pep440/range.ts#L8-L20) instead - Always add unit tests for full code coverage - Only use `istanbul` comments for unreachable code coverage that is needed for `codecov` completion - Use descriptive `istanbul` comments @@ -44,7 +44,7 @@ Read the [GitHub Docs, renaming a branch](https://docs.github.com/en/repositorie - Use `function foo(){...}` to declare named functions - Use function declaration instead of assigning function expression into local variables (`const f = function(){...}`) (TypeScript already prevents rebinding functions) - Exception: if the function accesses the outer scope's `this` then use arrow functions assigned to variables instead of function declarations -- Regular functions (as opposed to arrow functions and methods) _should not_ access `this` +- Regular functions _should not_ access `this`, but arrow functions and methods may access `this` - Only use nested functions when the [lexical scope](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Closures) is used #### Use arrow functions in expressions @@ -63,8 +63,8 @@ bar(() => { }); ``` -Generally `this` pointer _should not_ be rebound. -Function expressions may only be used if dynamically rebinding `this` is needed. +Generally the `this` pointer _should not_ be rebound. +Only use function expressions if you need to dynamically rebind `this`. Source: [Google TypeScript Style Guide, function declarations](https://google.github.io/styleguide/tsguide.html#function-declarations). @@ -76,7 +76,8 @@ Write code that is easier to read, review and maintain. Avoid "clever" code that's hard to understand. Prefer verbose code which is easier for others to read and maintain than concise code which may be hard or slower for others to understand. -For example, Array `reduce()` functions are often hard to understand first time, and can be replaced with simpler `for` loops which run just as fast but are simpler to understand and maintain. +For example, Array `reduce()` functions are often hard to understand first time, and can be replaced with simpler `for` loops. +A `for` loop is just as fast but is simpler to understand and maintain. #### Write single purpose functions @@ -111,7 +112,7 @@ function print(...) { /* code */ } #### Keep indentation level low Fail quickly. -Nested code logic is difficult to read and prone to logic mistakes. +Nested code logic is hard to read and prone to logic mistakes. ```ts function foo(str: string): boolean { @@ -147,11 +148,16 @@ function foo(str: string): boolean { ## Logging -Use logger metadata if logging for `WARN`, `ERROR`, `FATAL`, or if the result is a complex metadata object needing a multiple-line pretty stringification. -Otherwise, inline metadata into the log message if logging at `INFO` or below, or if the metadata object is complex. +For `WARN`, `ERROR` and `FATAL log messages use logger metadata. +Also use logger metadata the result is a complex metadata object needing a multiple-line pretty stringification. + +For `INFO` log messages inline the metadata into the log message. +Also inline the metadata if the metadata object is complex. -`WARN` and above messages are often used in metrics or error catching services, and should have a consistent `msg` component so that they will be automatically grouped/associated together. -Metadata which is separate from its message is harder for human readability, so try to combine it in the message unless it's too complex to do so. +`WARN`, `ERROR` and `FATAL` messages are often used in metrics or error catching services. +These log messages should have a consistent `msg` component, so they can be automatically grouped or associated. +Metadata that's seperate from its message is hard for humans to read. +Try to combine the metadata into the message, unless it's too complex to do so. Good: @@ -179,7 +185,8 @@ const a = new Array(2); // [undefined, undefined] const b = new Array(2, 3); // [2, 3]; ``` -Instead, always use bracket notation to initialize arrays, or `from` to initialize an Array with a certain size i.e. +Instead, always use bracket notation to initialize arrays, or `from` to initialize an Array with a certain size. +For example: ```ts // [0, 0, 0, 0, 0] @@ -198,7 +205,7 @@ Use `for ( ... of ...)` loops instead of `[Array|Set|Map].prototype.forEach` and Only use `Array.prototype.map()` when the return value is used, otherwise use `for ( ... of ...)`. -[Source](https://google.github.io/styleguide/tsguide.html#iterating-objects) +Source: [Google TypeScript Style Guide, iterating objects](https://google.github.io/styleguide/tsguide.html#iterating-objects) ## Exports @@ -206,11 +213,12 @@ Use named exports in all code. Avoid default `exports`. This way all `imports` follow the same pattern. -[Source, reasoning and examples.](https://google.github.io/styleguide/tsguide.html#exports) +Source: [Google TypeScript Style Guide, exports](https://google.github.io/styleguide/tsguide.html#exports) ## Imports -Use [ES6 module](https://exploringjs.com/es6/ch_modules.html#sec_basics-of-es6-modules) syntax, i.e. +Use [ES6 module](https://exploringjs.com/es6/ch_modules.html#sec_basics-of-es6-modules) syntax. +For example: ```ts import { square, diag } from 'lib'; @@ -228,8 +236,8 @@ import x = require('...'); ## HTTP & RESTful API request handling -Prefer using `Http` from `util/http` to simplify HTTP request handling and to enable authentication and caching, As our `Http` class will transparently handle host rules. -Example: +Prefer using `Http` from `util/http` to simplify HTTP request handling and to enable authentication and caching, as our `Http` class will transparently handle host rules. +For example: ```ts import { Http } from '../../../util/http'; @@ -250,14 +258,23 @@ Never use `Promise.reject` in async functions, instead throw an `Error` class ty ## Dates and times -Use [`Luxon`](https://www.npmjs.com/package/luxon) to handle dates and times. +Use the [`Luxon` package](https://www.npmjs.com/package/luxon) to handle dates and times. Use `UTC` to be time zone independent. -[Example](https://github.com/renovatebot/renovate/blob/5043379847818ac1fa71ff69c098451975e95710/lib/modules/versioning/distro.ts#L133-L134) +[Example from our code](https://github.com/renovatebot/renovate/blob/5043379847818ac1fa71ff69c098451975e95710/lib/modules/versioning/distro.ts#L133-L134) +: + +```ts +if (end) { + const now = DateTime.now().toUTC(); + const eol = DateTime.fromISO(end, { zone: 'utc' }); + return eol < now; +} +``` ## Unit testing -- Separate _Arrange_, _Act_ and _Assert_ phases with empty line +- Separate the _Arrange_, _Act_ and _Assert_ phases with newlines - Use `it.each` rather than `test.each` - Prefer [Tagged Template Literal](https://jestjs.io/docs/api#2-testeachtablename-fn-timeout) style for `it.each`, Prettier will help with formatting - See [Example](https://github.com/renovatebot/renovate/blob/768e178419437a98f5ce4996bafd23f169e530b4/lib/modules/platform/util.spec.ts#L8-L18) @@ -272,11 +289,12 @@ Use `UTC` to be time zone independent. - huge complex objects where you only need to test parts - Avoid exporting functions purely for the purpose of testing unless you really need to - Avoid cast or prefer `x as T` instead of `x` cast - - Use `partial()` from `test/util` If only a partial object is required, + - Use `partial()` from `test/util` if only a partial object is required ## Fixtures -- Use `Fixture` class for loading fixtures +Use the `Fixture` class to load fixtures. +For example: ```ts Fixture.get('./file.json'); // for loading string data @@ -286,7 +304,7 @@ Fixture.getBinary('./file.json'); // for retrieving a buffer ## Working with vanilla JS files (renovate/tools only) -Use [JSDoc](https://jsdoc.app/index.html) to declare types and function prototypes. +Declare types and function prototypes with [JSDoc](https://jsdoc.app/index.html). [Example](https://github.com/renovatebot/renovate/blob/5043379847818ac1fa71ff69c098451975e95710/tools/distro-json-generate.mjs#L7-L17) @@ -300,8 +318,8 @@ Use [JSDoc](https://jsdoc.app/index.html) to declare types and function prototyp [Source](https://en.wikipedia.org/wiki/Pure_function) - Omit constructors when defining Static classes -- [No `#private` fields](https://google.github.io/styleguide/tsguide.html#private-fields). instead, use TypeScript's visibility annotations -- Avoid underscore suffixes or prefixes, for example: `_prop`, use [whole words](https://google.github.io/styleguide/tsguide.html#properties-used-outside-of-class-lexical-scope) as suffix/prefix i.e. `internalProp` +- [No `#private` fields](https://google.github.io/styleguide/tsguide.html#private-fields), use TypeScript's visibility annotations instead +- Avoid underscore suffixes or prefixes like `_prop`, instead use [whole words](https://google.github.io/styleguide/tsguide.html#properties-used-outside-of-class-lexical-scope) as the suffix or prefix like `internalProp` ## regex @@ -316,5 +334,5 @@ You can do this by running this Git command: git config --global core.autocrlf input ``` -This prevents the carriage return `\r\n` which may confuse Renovate bot. +This prevents the carriage return `\r\n` which may confuse Renovate. You can also set the line endings in your repository by adding `* text=auto eol=lf` to your `.gitattributes` file. diff --git a/docs/development/creating-editing-renovate-presets.md b/docs/development/creating-editing-renovate-presets.md index 2e7c5468a9c6093..1d4e59ad8f87bf8 100644 --- a/docs/development/creating-editing-renovate-presets.md +++ b/docs/development/creating-editing-renovate-presets.md @@ -27,7 +27,7 @@ We have multiple kinds of `group:` presets, with different rules. ##### Rules for `group:*` presets 1. Finally, any other `group:*` presets can be added if they are beneficial to a wide number of users -1. They don't need to be added to `group:recommended`, meaning that users will "opt in" to them one by one and not get them automatically from `config:base`, which includes `group:monorepo` and `group:recommended` +1. They don't need to be added to `group:recommended`, meaning that users will "opt in" to them one by one and not get them automatically from `config:recommended`, which includes `group:monorepo` and `group:recommended` #### Replacement presets diff --git a/docs/development/local-development.md b/docs/development/local-development.md index f2ca1324128c9ea..9857221030a5cc9 100644 --- a/docs/development/local-development.md +++ b/docs/development/local-development.md @@ -29,6 +29,10 @@ sudo apt-get update sudo apt-get install -y git build-essential nodejs yarn ``` +#### Nix + +To enter a development shell with the necessary packages, run `nix-shell --packages gcc gitFull nodejs yarn`. + #### Windows Follow these steps to set up your development environment on Windows 10. diff --git a/docs/development/readme.md b/docs/development/readme.md index 1d3ead22bb84ee7..7f26712b7bb07f8 100644 --- a/docs/development/readme.md +++ b/docs/development/readme.md @@ -1,6 +1,9 @@ # Renovate Developer Docs -This directory is intended to provide documentation for developers/contributors on the Renovate project. -For information on how to configure Renovate as an end-user, please see the [Renovate bot documentation](https://docs.renovatebot.com). +> **Note** +> If you're an end-user of Renovate, please read the [Renovate documentation](https://docs.renovatebot.com). -If you want to contribute to Renovate or get it running locally for some other reason, please check out [contributing guidelines](../../.github/contributing.md) for steps on how to set up the project locally. +The `docs/development` directory is for developers and contributors. +The Markdown files explain how to work on Renovate's code. + +If you need to get Renovate running locally, to contribute, or for some other reason, please read our [contributing guidelines](../../.github/contributing.md) to learn how. diff --git a/docs/usage/bazel.md b/docs/usage/bazel.md index 3ac4e97554a4135..000f0688f0f8d4f 100644 --- a/docs/usage/bazel.md +++ b/docs/usage/bazel.md @@ -5,22 +5,171 @@ description: Bazel dependencies support in Renovate # Bazel -Renovate supports upgrading dependencies in Bazel `WORKSPACE` files. +Renovate upgrades dependencies in Bazel `WORKSPACE` files and `MODULE.bazel` files. ## How it works 1. Bazel support is enabled automatically -2. Renovate will search repositories for any `WORKSPACE` files in the repository -3. Existing dependencies will be extracted from `container_pull`, `oci_pull`, `git_repository`, `go_repository`, `maven_install`, and `http_archive`/`http_file` declarations -4. Renovate will replace any old versions with the latest version available +1. Renovate searches the repository for any `WORKSPACE` and `MODULE.bazel` files +1. Renovate extracts the dependencies it finds from the files (see below for the supported dependency declarations) +1. Renovate updates old dependencies to the latest version -## git_repository +## Bazel module (`MODULE.bazel`) support -Renovate will update any `git_repository` declaration that has the following: +### Bazel registry discovery -1. name -2. remote matching `https://github.com//.git` -3. tag using a valid SemVer +Renovate searches [Bazel registries](https://bazel.build/external/registry) to find new Bazel module versions. +You customize the registries your Bazel workspace uses by including [`--registry`](https://bazel.build/reference/command-line-reference#flag--registry) entries in your [`.bazelrc` files](https://bazel.build/run/bazelrc). +Renovate checks the workspace's `.bazelrc` files for custom registry entries. +If no registries are found, Renovate defaults to the [Bazel Central Registry](https://bcr.bazel.build/). + +Here are some important points about Renovate's Bazel registry searches. +Renovate: + +- uses _all_ `--registry` values found in a workspace's `.bazelrc` file +- uses any files that are transitively imported by a `.bazelrc` file +- only uses `--registry` values that are not associated with [a configuration](https://bazel.build/run/bazelrc#config) +- queries the registries in the order that they are found in the `.bazelrc` file + +#### Example: multiple `.bazelrc` files + +In this example, there is a `.bazelrc` file which imports another file called `.registry.bazelrc`. +Both files have `--registry` values: + +``` +# ------------- +# .bazelrc File +# ------------- +import .registry.bazelrc +build --registry=https://raw.githubusercontent.com/bazelbuild/bazel-central-registry/main + +# ---------------------- +# .registry.bazelrc File +# ---------------------- +build --registry=https://example.com/custom_registry +``` + +The final registry list is: + +1. `` +1. `` + +#### Example: registry entries using Bazel configuration + +In this example, a `.bazelrc` file has registry values with and without a configuration: + +``` +# ------------- +# .bazelrc File +# ------------- +build:ci --registry=https://internal.server/custom_registry +build --registry=https://raw.githubusercontent.com/bazelbuild/bazel-central-registry/main +``` + +In this case the `https://internal.server/custom_registry` is ignored. +The final registry list is: + +1. `` + +### Supported Bazel module declarations + +#### `bazel_dep` + +Renovate updates the `version` value for a [`bazel_dep`](https://bazel.build/rules/lib/globals/module#bazel_dep) declaration. + +```python +bazel_dep(name = "cgrindel_bazel_starlib", version = "0.15.0") +``` + +In the example above, Renovate evaluates the `0.15.0` version against the repository's registries. +If Renovate finds a newer version, it updates `0.15.0` to match that version. + +#### `git_override` + +If Renovate finds a [`git_override`](https://bazel.build/rules/lib/globals/module#git_override), it ignores the related `bazel_dep` entry and instead evaluates the `commit` value at the specified `remote`. + +```python +bazel_dep(name = "cgrindel_bazel_starlib", version = "0.15.0") + +git_override( + module_name = "cgrindel_bazel_starlib", + commit = "fb47f0e9f7c376a7700fc9fe3319231ae57880df", + remote = "https://github.com/cgrindel/bazel-starlib.git", +) +``` + +If the primary branch has a newer commit than in the list, Renovate updates the `commit` value. + +#### `single_version_override` + +The [`single_version_override`](https://bazel.build/rules/lib/globals/module#single_version_override) is a declaration with many purposes. +Renovate only evaluates _two_ attributes from this declaration: `version` and `registry`. + +If a `version` is specified, it overrides the version in the `bazel_dep`. +In the following example, Renovate notices that the version is pinned to `1.2.3`. +This results in `rules_foo` being ignored for update evaluation. + +```python +bazel_dep(name = "rules_foo", version = "1.2.4") + +single_version_override( + module_name = "rules_foo", + version = "1.2.3", +) +``` + +If a `registry` is specified, Renovate uses the specified registry URL to check for a new version. +In the following example, Renovate only uses the `https://example.com/custom_registry` registry to discover `rules_foo` versions. +Any registry values specified in the repository's `.bazelrc` files are ignored for the `rules_foo` module. + +```python +bazel_dep(name = "rules_foo", version = "1.2.3") + +single_version_override( + module_name = "rules_foo", + registry = "https://example.com/custom_registry", +) +``` + +#### `archive_override` and `local_path_override` + +If Renovate finds an [`archive_override`](https://bazel.build/rules/lib/globals/module#archive_override) or a [`local_path_override`](https://bazel.build/rules/lib/globals/module#local_path_override), it ignores the related `bazel_dep`. +Because these declarations lack versionable attributes, Renovate does not update them. + +```python +bazel_dep(name = "rules_foo", version = "1.2.3") + +archive_override( + module_name = "rules_foo", + urls = [ + "https://example.com/archive.tar.gz", + ], +) +``` + +#### `multiple_version_override` + +Renovate ignores [`multiple_version_override`](https://bazel.build/rules/lib/globals/module#multiple_version_override). +`multiple_version_override` does not affect the processing of version updates for a module. + +## Legacy `WORKSPACE` files + +Renovate extracts dependencies from: + +- `container_pull` +- `oci_pull` +- `git_repository` +- `go_repository` +- `maven_install` +- `http_archive` or `http_file` declarations + +### `git_repository` + +Renovate updates any `git_repository` declaration that has the following: + +1. `name` +1. `remote` matching `https://github.com//.git` +1. `tag` using a valid SemVer e.g.: @@ -34,13 +183,13 @@ git_repository( Renovate uses the list of **tags** on the remote repository (GitHub) to detect a new version. -## http_archive and http_file +### `http_archive` and `http_file` -Renovate will update any `http_archive` or `http_file` declaration that has the following: +Renovate updates any `http_archive` or `http_file` declaration that has the following: -1. name -2. url matching `https://github.com///releases/download//.tar.gz` -3. sha256 +1. `name` +1. `url` matching `https://github.com///releases/download//.tar.gz` +1. `sha256` e.g.: @@ -54,7 +203,7 @@ http_archive( Renovate uses the list of **releases** that it finds at the `url` to detect a new version. -## maven_install +### `maven_install` By default, Maven dependencies are extracted in the context of Gradle versioning scheme. To change it, configure `packageRules` like this: diff --git a/docs/usage/config-presets.md b/docs/usage/config-presets.md index 0afcd775de82998..7322f4981001536 100644 --- a/docs/usage/config-presets.md +++ b/docs/usage/config-presets.md @@ -101,7 +101,7 @@ You can set a Git tag (like a SemVer) to use a specific release of your shared c An example of a small rule is `:preserveSemverRanges`, which has the description "Preserve (but continue to upgrade) any existing SemVer ranges.". It simply sets the configuration option `rangeStrategy` to `replace`. -An example of a full config is `config:base`, which is Renovate's default configuration. +An example of a full config is `config:recommended`, which is Renovate's default configuration. It mostly uses Renovate config defaults but adds a few smart customizations such as grouping monorepo packages together. @@ -111,8 +111,8 @@ It mostly uses Renovate config defaults but adds a few smart customizations such ## How to Use Preset Configs -By default, Renovate App's onboarding PR suggests the `["config:base]"` preset. -If you're self hosting, and want to use the `config:base` preset, then you must add `"onboardingConfig": { "extends": ["config:base"] }` to your bot's config. +By default, Renovate App's onboarding PR suggests the `["config:recommended]"` preset. +If you're self hosting, and want to use the `config:recommended` preset, then you must add `"onboardingConfig": { "extends": ["config:recommended"] }` to your bot's config. Read the [Full Config Presets](https://docs.renovatebot.com/presets-config/) page to learn more about our `config:` presets. @@ -120,18 +120,18 @@ A typical onboarding `renovate.json` looks like this: ```json { - "extends": ["config:base"] + "extends": ["config:recommended"] } ``` Here's an example of using presets to change Renovate's behavior. -You're happy with the `config:base` preset, but want Renovate to create PRs when you're not at the office. +You're happy with the `config:recommended` preset, but want Renovate to create PRs when you're not at the office. You look at our `schedule:` presets, and find the `schedule:nonOfficeHours` preset. You put `schedule:nonOfficeHours` in the `extends` array of your `renovate.json` file, like this: ```json { - "extends": ["config:base", "schedule:nonOfficeHours"] + "extends": ["config:recommended", "schedule:nonOfficeHours"] } ``` @@ -256,7 +256,7 @@ For example: "version": "0.0.1", "renovate-config": { "default": { - "extends": ["config:base", "schedule:nonOfficeHours"] + "extends": ["config:recommended", "schedule:nonOfficeHours"] } } } diff --git a/docs/usage/configuration-options.md b/docs/usage/configuration-options.md index acd6a58f18dc4a2..9e7cf1f6b1b1a93 100644 --- a/docs/usage/configuration-options.md +++ b/docs/usage/configuration-options.md @@ -300,6 +300,14 @@ With a negation, all branches except those matching the regex will be added to t } ``` +You can also use the special `"$default"` string to denote the repository's default branch, which is useful if you have it in an org preset, e.g.: + +```json +{ + "baseBranches": ["$default", "/^release\\/.*/"] +} +``` + !!! note Do _not_ use the `baseBranches` config option when you've set a `forkToken`. @@ -312,7 +320,7 @@ Configuring this to `true` means that Renovate will detect and apply the default ## branchConcurrentLimit By default, Renovate won't enforce any concurrent branch limits. -The `config:base` preset that many extend from limits the number of concurrent branches to 10, but in many cases a limit as low as 3 or 5 can be most efficient for a repository. +The `config:recommended` preset that many extend from limits the number of concurrent branches to 10, but in many cases a limit as low as 3 or 5 can be most efficient for a repository. If you want the same limit for both concurrent branches and concurrent PRs, then set a value for `prConcurrentLimit` and it will be re-used for branch calculations too. But if you want to allow more concurrent branches than concurrent PRs, you can configure both values (e.g. `branchConcurrentLimit=5` and `prConcurrentLimit=3`). @@ -594,11 +602,37 @@ Renovate supports two options: - `none`: No release filtering (all releases allowed) - `strict`: If the release's constraints match the package file constraints, then it's included -We are working on adding more advanced filtering options. +More advanced filtering options may come in future. -Note: There must be a `constraints` object in your Renovate config for this to work. +There must be a `constraints` object in your Renovate config, or constraints detected from package files, for this to work. This feature is limited to `packagist`, `npm`, and `pypi` datasources. + +!!! warning + Enabling this feature may result in many package updates being filtered out silently. + See below for a description of how it works. + +When `constraintsFiltering=strict`, the following logic applies: + +- Are there `constraints` for this repository, either detected from source or from config? +- Does this package's release declare constraints of its own (e.g. `engines` in Node.js)? +- If so, filter out this release unless the repository constraint is a _subset_ of the release constraint + +Here are some examples: + +| Your repo engines.node | Dependency release engines.node | Result | +| ------------------------ | ------------------------------- | -------- | +| `18` | `16 \|\| 18` | allowed | +| `^18.10.0` | `>=18` | allowed | +| `^16.10.0 \|\| >=18.0.0` | `>= 16.0.0` | allowed | +| `>=16` | `16 \|\| 18` | filtered | +| `16` | `^16.10.0` | filtered | + +When using with `npm`, we recommend you: + +- Use `constraintsFiltering` on `dependencies`, not `devDependencies` (usually you do not need to be strict about development dependencies) +- Do _not_ enable `rollbackPrs` at the same time (otherwise your _current_ version may be rolled back if it's incompatible) + ## defaultRegistryUrls Override a datasource's default registries with this config option. @@ -614,13 +648,13 @@ Compare that to `registryUrls`, which are a way to _override_ registries. ## dependencyDashboard -Starting from version `v26.0.0` the "Dependency Dashboard" is enabled by default as part of the commonly-used `config:base` preset. +Starting from version `v26.0.0` the "Dependency Dashboard" is enabled by default as part of the commonly-used `config:recommended` preset. To disable the Dependency Dashboard, add the preset `:disableDependencyDashboard` or set `dependencyDashboard` to `false`. ```json { - "extends": ["config:base", ":disableDependencyDashboard"] + "extends": ["config:recommended", ":disableDependencyDashboard"] } ``` @@ -923,7 +957,14 @@ A similar one could strip leading `v` prefixes: ## fetchReleaseNotes -Set this to `false` if you want to disable release notes fetching. +Use this config option to configure release notes fetching. +The available options are: + +- `off` - disable release notes fetching +- `branch` - fetch release notes while creating/updating branch +- `pr`(default) - fetches release notes while creating/updating pull-request + +It is not recommended to set fetchReleaseNotes=branch unless you are embedding release notes in commit information, because it results in a performance decrease. Renovate can fetch release notes when they are hosted on one of these platforms: @@ -1532,7 +1573,7 @@ For instance if you have a project with an `"examples/"` directory you wish to i ``` Renovate's default ignore is `node_modules` and `bower_components` only. -If you are extending from the popular `config:base` preset then it adds ignore patterns for `vendor`, `examples`, `test(s)` and `fixtures` directories too. +If you are extending from the popular `config:recommended` preset then it adds ignore patterns for `vendor`, `examples`, `test(s)` and `fixtures` directories too. ## ignorePlugins @@ -1553,12 +1594,12 @@ For example, consider this config: ```json { - "extends": ["config:base"], + "extends": ["config:recommended"], "ignorePresets": [":prHourlyLimit2"] } ``` -It would take the entire `"config:base"` preset - which has a lot of sub-presets - but ignore the `":prHourlyLimit2"` rule. +It would take the entire `"config:recommended"` preset - which has a lot of sub-presets - but ignore the `":prHourlyLimit2"` rule. ## ignoreReviewers @@ -2543,18 +2584,19 @@ This way Renovate can use GitHub's [Commit signing support for bots and other Gi Table with options: -| Name | Description | -| ------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `bundlerConservative` | Enable conservative mode for `bundler` (Ruby dependencies). This will only update the immediate dependency in the lockfile instead of all subdependencies. | -| `gomodMassage` | Enable massaging `replace` directives before calling `go` commands. | -| `gomodTidy` | Run `go mod tidy` after Go module updates. This is implicitly enabled for major module updates when `gomodUpdateImportPaths` is enabled. | -| `gomodTidy1.17` | Run `go mod tidy -compat=1.17` after Go module updates. | -| `gomodTidyE` | Run `go mod tidy -e` after Go module updates. | -| `gomodUpdateImportPaths` | Update source import paths on major module updates, using [mod](https://github.com/marwan-at-work/mod). | -| `npmDedupe` | Run `npm dedupe` after `package-lock.json` updates. | -| `pnpmDedupe` | Run `pnpm dedupe` after `pnpm-lock.yaml` updates. | -| `yarnDedupeFewer` | Run `yarn-deduplicate --strategy fewer` after `yarn.lock` updates. | -| `yarnDedupeHighest` | Run `yarn-deduplicate --strategy highest` (`yarn dedupe --strategy highest` for Yarn >=2.2.0) after `yarn.lock` updates. | +| Name | Description | +| ---------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `bundlerConservative` | Enable conservative mode for `bundler` (Ruby dependencies). This will only update the immediate dependency in the lockfile instead of all subdependencies. | +| `gomodMassage` | Enable massaging `replace` directives before calling `go` commands. | +| `gomodTidy` | Run `go mod tidy` after Go module updates. This is implicitly enabled for major module updates when `gomodUpdateImportPaths` is enabled. | +| `gomodTidy1.17` | Run `go mod tidy -compat=1.17` after Go module updates. | +| `gomodTidyE` | Run `go mod tidy -e` after Go module updates. | +| `gomodUpdateImportPaths` | Update source import paths on major module updates, using [mod](https://github.com/marwan-at-work/mod). | +| `helmUpdateSubChartArchives` | Update subchart archives in the `/charts` folder. | +| `npmDedupe` | Run `npm dedupe` after `package-lock.json` updates. | +| `pnpmDedupe` | Run `pnpm dedupe` after `pnpm-lock.yaml` updates. | +| `yarnDedupeFewer` | Run `yarn-deduplicate --strategy fewer` after `yarn.lock` updates. | +| `yarnDedupeHighest` | Run `yarn-deduplicate --strategy highest` (`yarn dedupe --strategy highest` for Yarn >=2.2.0) after `yarn.lock` updates. | ## postUpgradeTasks @@ -2586,7 +2628,7 @@ The `postUpgradeTasks` configuration consists of three fields: A list of commands that are executed after Renovate has updated a dependency but before the commit is made. -You can use variable templating in your commands if [`allowPostUpgradeCommandTemplating`](./self-hosted-configuration.md#allowpostupgradecommandtemplating) is enabled. +You can use variable templating in your commands as long as [`allowPostUpgradeCommandTemplating`](./self-hosted-configuration.md#allowpostupgradecommandtemplating) is enabled. !!! note @@ -2823,7 +2865,7 @@ Defaults to `true`. ## python -Currently the only Python package manager is `pip` - specifically for `requirements.txt` and `requirements.pip` files - so adding any config to this `python` object is essentially the same as adding it to the `pip_requirements` object instead. +Currently the only Python package manager is `pip` - specifically for `requirements.txt` and `requirements.pip` files, or any file that matches the pattern `requirements-*.(txt|pip)` - so adding any config to this `python` object is essentially the same as adding it to the `pip_requirements` object instead. ## rangeStrategy @@ -2880,18 +2922,27 @@ It is also recommended to avoid `rebaseWhen=never` as it can result in conflicte Avoid setting `rebaseWhen=never` and then also setting `prCreation=not-pending` as this can prevent creation of PRs. -## recreateClosed +## recreateWhen + +This feature used to be called `recreateClosed`. -By default, Renovate will detect if it has proposed an update to a project before and not propose the same one again. -For example the Webpack 3.x case described above. -This field lets you customize this behavior down to a per-package level. -For example we override it to `true` in the following cases where branch names and PR titles need to be reused: +By default, Renovate detects if it proposed an update to a project before, and will not propose the same update again. +For example the Webpack 3.x case described in the [`separateMajorMinor`](#separatemajorminor) documentation. +You can use `recreateWhen` to customize this behavior down to a per-package level. +For example we override it to `always` in the following cases where branch names and PR titles must be reused: - Package groups - When pinning versions - Lock file maintenance -Typically you shouldn't need to modify this setting. +You can select which behavior you want from Renovate: + +- `always`: Recreates all closed or blocking PRs +- `auto`: The default option. Recreates only immortal PRs (default) +- `never`: No PR is recreated, doesn't matter if it is immortal or not + +We recommend that you stick with the default setting for this option. +Only change this setting if you really need to. ## regexManagers @@ -3175,16 +3226,17 @@ You can use the `registryAliases` object to set registry aliases. This feature works with the following managers: +- [`ansible`](/modules/manager/ansible) +- [`docker-compose`](/modules/manager/docker-compose) +- [`dockerfile`](/modules/manager/dockerfile) +- [`droneci`](/modules/manager/droneci) +- [`gitlabci`](/modules/manager/gitlabci/) - [`helm-requirements`](/modules/manager/helm-requirements/) -- [`helmv3`](/modules/manager/helmv3/) - [`helmfile`](/modules/manager/helmfile/) -- [`gitlabci`](/modules/manager/gitlabci/) -- [`dockerfile`](/modules/manager/dockerfile) -- [`docker-compose`](/modules/manager/docker-compose) +- [`helmv3`](/modules/manager/helmv3/) - [`kubernetes`](/modules/manager/kubernetes) -- [`ansible`](/modules/manager/ansible) -- [`droneci`](/modules/manager/droneci) - [`terraform`](/modules/manager/terraform) +- [`woodpecker`](/modules/manager/woodpecker) ## registryUrls diff --git a/docs/usage/docker.md b/docs/usage/docker.md index 30a1a307c26877e..02261916afb23f6 100644 --- a/docs/usage/docker.md +++ b/docs/usage/docker.md @@ -185,7 +185,7 @@ Add all paths to ignore into the `ignorePaths` configuration field. e.g. ```json { - "extends": ["config:base"], + "extends": ["config:recommended"], "ignorePaths": ["docker/old-files/"] } ``` @@ -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.115.2 +FROM renovate/renovate:35.141.3 # 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 93c32c663cc48eb..8d52d603baa2bf7 100644 --- a/docs/usage/examples/self-hosting.md +++ b/docs/usage/examples/self-hosting.md @@ -248,7 +248,7 @@ module.exports = { token: '**gitlab_token**', platform: 'gitlab', onboardingConfig: { - extends: ['config:base'], + extends: ['config:recommended'], }, repositories: ['username/repo', 'orgname/repo'], }; diff --git a/docs/usage/faq.md b/docs/usage/faq.md index 9980fc64339868d..06a97ac3e144767 100644 --- a/docs/usage/faq.md +++ b/docs/usage/faq.md @@ -29,6 +29,11 @@ The Renovate team only fixes bugs in an older version if: If you're using the hosted app, you don't need to do anything, as the Renovate maintainers update the hosted app regularly. If you're self hosting Renovate, use the latest release if possible. +## When are new Renovate OSS releases added to the hosted Mend Renovate App? + +The Renovate maintainers manually update the hosted app. +This means the hosted app can lag a few hours to a week behind the open source version. + ## Renovate core features not supported on all platforms | Feature | Platforms which lack feature | See Renovate issue(s) | diff --git a/docs/usage/getting-started/installing-onboarding.md b/docs/usage/getting-started/installing-onboarding.md index 5aa5c0d3d7e4d28..1cfcb77976747f8 100644 --- a/docs/usage/getting-started/installing-onboarding.md +++ b/docs/usage/getting-started/installing-onboarding.md @@ -108,7 +108,7 @@ Sometimes Renovate detects that an override to these defaults is needed, and wil Please check the docs on this website for an exhaustive Configuration Reference. To help you get started, here are some of the most commonly changed (overridden) configuration settings: -- **rangeStrategy**: By default (with zero config) it's `"replace"` but the `"config:base"` preset overrides it to `"auto"`. Some prefer `"bump"`. +- **rangeStrategy**: By default (with zero config) it's `"replace"` but the `"config:recommended"` preset overrides it to `"auto"`. Some prefer `"bump"`. - **labels**: Labels to assign to Pull Requests - **assignees**: GitHub user(s) to assign the Pull Requests to diff --git a/docs/usage/getting-started/use-cases.md b/docs/usage/getting-started/use-cases.md index b2e48f4e4347ad2..095d72521d0007f 100644 --- a/docs/usage/getting-started/use-cases.md +++ b/docs/usage/getting-started/use-cases.md @@ -213,7 +213,7 @@ This also means that you might want a similar config for all of your repositorie You can use configuration "presets" to avoid duplicating your configuration across your repositories. Configuration presets are JSON configuration files which are committed to repositories and then referenced from others. -Renovate includes over 100 built-in presets, like the default recommended `config:base` preset. +Renovate includes over 100 built-in presets, like the default recommended `config:recommended` preset. The typical workflow for a company is: diff --git a/docs/usage/java.md b/docs/usage/java.md index 405df5c50cedb1e..6f3b4624aff9141 100644 --- a/docs/usage/java.md +++ b/docs/usage/java.md @@ -10,14 +10,14 @@ This includes libraries and plugins as well as the Gradle Wrapper. ## LTS releases -The `config:base` preset includes the `workarounds:javaLTSVersions` preset. +The `config:recommended` preset includes the `workarounds:javaLTSVersions` preset. The workaround limits Renovate to upgrade to LTS versions of the Java runtime only. If you want Renovate to offer all `major` Java updates then add `workarounds:javaLTSVersions` to the `ignorePreset` array: ```json { - "extends": ["config:base"], + "extends": ["config:recommended"], "ignorePresets": ["workarounds:javaLTSVersions"] } ``` diff --git a/docs/usage/key-concepts/dashboard.md b/docs/usage/key-concepts/dashboard.md index 2e9ff58cb87677c..a564d63dc9f41f1 100644 --- a/docs/usage/key-concepts/dashboard.md +++ b/docs/usage/key-concepts/dashboard.md @@ -23,7 +23,7 @@ To turn on the Dashboard manually, add the `:dependencyDashboard` preset to your ```json { - "extends": ["config:base", ":dependencyDashboard"] + "extends": ["config:recommended", ":dependencyDashboard"] } ``` @@ -41,7 +41,7 @@ To disable the Dependency Dashboard, add the preset `:disableDependencyDashboard ```json { - "extends": ["config:base", ":disableDependencyDashboard"] + "extends": ["config:recommended", ":disableDependencyDashboard"] } ``` @@ -86,7 +86,7 @@ To require manual approval for _all updates_, add the `:dependencyDashboardAppro ```json { - "extends": ["config:base", ":dependencyDashboardApproval"] + "extends": ["config:recommended", ":dependencyDashboardApproval"] } ``` diff --git a/docs/usage/key-concepts/presets.md b/docs/usage/key-concepts/presets.md index d9906d7f120639a..8efa6357948020d 100644 --- a/docs/usage/key-concepts/presets.md +++ b/docs/usage/key-concepts/presets.md @@ -18,17 +18,17 @@ Use presets to: ## How to use presets -Let's say you're using the `config:base` preset, and want to pin your GitHub Action digests. +Let's say you're using the `config:recommended` preset, and want to pin your GitHub Action digests. Instead of writing your own Renovate config, you search through Renovate's built-in presets. You find the the `helpers:pinGitHubActionDigests` preset and add it to the `extends` array: ```json { - "extends": ["config:base", "helpers:pinGitHubActionDigests"] + "extends": ["config:recommended", "helpers:pinGitHubActionDigests"] } ``` -Renovate now follows the rules for `config:base` plus the rules for `helpers:pinGitHubActionDigests`. +Renovate now follows the rules for `config:recommended` plus the rules for `helpers:pinGitHubActionDigests`. If there is a logical conflict between presets, then the last preset in the array wins. ## Managing config for many repositories diff --git a/docs/usage/key-concepts/pull-requests.md b/docs/usage/key-concepts/pull-requests.md index 4f63045a5f7765a..7e2af2e96a9bb19 100644 --- a/docs/usage/key-concepts/pull-requests.md +++ b/docs/usage/key-concepts/pull-requests.md @@ -76,6 +76,7 @@ If you regularly wish to close immortal PRs, it's an indication that you may be ### How to fix immortal PRs Avoid grouping dependencies together which have different versions, or which you have a high chance of wanting to ignore. +If you have immortal PRs which you want to keep closed, then set `"recreateWhen": "never"`. #### Major updates require Dependency Dashboard approval diff --git a/docs/usage/modules/manager/index.md b/docs/usage/modules/manager/index.md index d6051b6c54eb2d5..dbf5a0aadac4c31 100644 --- a/docs/usage/modules/manager/index.md +++ b/docs/usage/modules/manager/index.md @@ -52,7 +52,7 @@ Renovate will _extend_ the existing [`fileMatch`](/configuration-options/#filema In other words, the regular expression are "additive". If a manager matches a file that you _don't_ want it to, ignore it using the [`ignorePaths`](/configuration-options/#ignorepaths) configuration option. Also, if you ever find that Renovate is _not_ matching a file name that you're certain it should, check your preset config isn't the cause of it. -The `config:base` preset ignores common test and example directory names, for example. +The `config:recommended` preset ignores common test and example directory names, for example. ### Enabling and disabling managers diff --git a/docs/usage/python.md b/docs/usage/python.md index 2bc96d3b854aa68..5c26884db95e8ca 100644 --- a/docs/usage/python.md +++ b/docs/usage/python.md @@ -26,6 +26,9 @@ Legacy versions with the `===` prefix are ignored. ## Alternative file names For the `pip_requirements` manager, the default file matching regex for `requirements.txt` follows common file name conventions. + +It will match `requirements.txt` and `requirements.pip`, and any file in the format `requirements-*.txt` or `requirements-*.pip`, to allow for common filename patterns such as `requirements-dev.txt`. + But Renovate may not find all your files. You can tell Renovate where to find your file(s) by setting your own `fileMatch` regex: diff --git a/docs/usage/reading-list.md b/docs/usage/reading-list.md index a862d5655e13b5c..76ad793ead61b4a 100644 --- a/docs/usage/reading-list.md +++ b/docs/usage/reading-list.md @@ -22,8 +22,8 @@ If you're self-hosting or need to update private packages, complete the relevant 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) +- Stick with the `config:recommended` preset +- Use the Dependency Dashboard (`config:recommended` enables it automatically) - Read the pages in the "Beginners" list - Only create custom Renovate configuration when really needed diff --git a/docs/usage/self-hosted-configuration.md b/docs/usage/self-hosted-configuration.md index 52fff74b4e526b8..4e130b580761ef3 100644 --- a/docs/usage/self-hosted-configuration.md +++ b/docs/usage/self-hosted-configuration.md @@ -124,6 +124,11 @@ If using negations, all repositories except those who match the regex are added } ``` +## autodiscoverTopics + +Some platforms allow you to add tags, or topics, to repositories and retrieve repository lists by specifying those +topics. Set this variable to a list of strings, all of which will be topics for the autodiscovered repositories. + ## baseDir By default Renovate uses a temporary directory like `/tmp/renovate` to store its data. @@ -326,17 +331,25 @@ For example, if you set `dockerChildPrefix=myprefix_` then the final container c !!! note Dangling containers are only removed when Renovate runs again with the same prefix. -## dockerImagePrefix +## dockerCliOptions + +You can use `dockerCliOptions` to pass Docker CLI options to Renovate's sidecar Docker containers. + +For example, `{"dockerCliOptions": "--memory=4g"}` will add a CLI flag to the `docker run` command that limits the amount of memory Renovate's sidecar Docker container can use to 4 gigabytes. + +Read the [Docker Docs, configure runtime resource contraints](https://docs.docker.com/config/containers/resource_constraints/) to learn more. + +## dockerSidecarImage -By default Renovate pulls the sidecar Docker containers from `docker.io/containerbase`. -You can use the `dockerImagePrefix` option to override this default. +By default Renovate pulls the sidecar Docker containers from `ghcr.io/containerbase/sidecar`. +You can use the `dockerSidecarImage` option to override this default. -Say you want to pull your images from `ghcr.io/containerbase` to bypass Docker Hub limits. +Say you want to pull a custom image from `ghcr.io/your_company/sidecar`. You would put this in your configuration file: ```json { - "dockerImagePrefix": "ghcr.io/containerbase" + "dockerSidecarImage": "ghcr.io/your_company/sidecar" } ``` @@ -413,9 +426,20 @@ In practice, it is implemented by converting the `force` configuration into a `p This is set to `true` by default, meaning that any settings (such as `schedule`) take maximum priority even against custom settings existing inside individual repositories. It will also override any settings in `packageRules`. -## forkToken +## forkOrg + +This configuration option lets you choose an organization you want repositories forked into when "fork mode" is enabled. +It must be set to a GitHub Organization name and not a GitHub user account. +When set, "allow edits by maintainers" will be false for PRs because GitHub does not allow this setting for organizations. + +This can be used if you're migrating from user-based forks to organization-based forks. -You probably don't need this option - it is an experimental setting developed for the Forking Renovate hosted GitHub App. +If you've set a `forkOrg` then Renovate will: + +1. Check if a fork exists in the preferred organization before checking it exists in the fork user's account +1. If no fork exists: it will be created in the `forkOrg`, not the user account + +## forkToken If this value is configured then Renovate: diff --git a/docs/usage/self-hosted-experimental.md b/docs/usage/self-hosted-experimental.md index 5945938bef3cbf4..010813cb665080d 100644 --- a/docs/usage/self-hosted-experimental.md +++ b/docs/usage/self-hosted-experimental.md @@ -71,14 +71,12 @@ Source: [AWS S3 documentation - Interface BucketEndpointInputConfig](https://doc If set, Renovate will terminate the whole process group of a terminated child process spawned by Renovate. -## `RENOVATE_X_MATCH_PACKAGE_NAMES_MORE` +## `RENOVATE_X_DELETE_CONFIG_FILE` -If set, you'll get the following behavior. +If `true` Renovate tries to delete the self-hosted config file after reading it. +You can set the config file Renovate should read with the `RENOVATE_CONFIG_FILE` environment variable. -When using `matchPackageNames` and `matchPackagePatterns` matchers: - -1. Renovate first tries to match against `depName` -2. If `depName` doesn't match then Renovate tries to match against `packageName` +The process that runs Renovate must have the correct permissions to delete the config file. ## `RENOVATE_X_MERGE_CONFIDENCE_API_BASE_URL` diff --git a/docs/usage/semantic-commits.md b/docs/usage/semantic-commits.md index 5ba0f2e1f4f0e59..6d1d2e86ad7c249 100644 --- a/docs/usage/semantic-commits.md +++ b/docs/usage/semantic-commits.md @@ -16,7 +16,7 @@ When Renovate finds Angular-style commits, Renovate creates commit messages and By default, Renovate uses the `chore` prefix. -If you extend from `config:base` then Renovate: +If you extend from `config:recommended` then Renovate: - still defaults to the `chore` prefix - uses the `fix` prefix for npm production dependencies diff --git a/docs/usage/user-stories/maintaining-aur-packages-with-renovate.md b/docs/usage/user-stories/maintaining-aur-packages-with-renovate.md index a9da98da7578d27..9c3902bc18a4193 100644 --- a/docs/usage/user-stories/maintaining-aur-packages-with-renovate.md +++ b/docs/usage/user-stories/maintaining-aur-packages-with-renovate.md @@ -1,3 +1,7 @@ +--- +title: Maintaining AUR packages with Renovate +--- +