diff --git a/.github/workflows/actionlint.yaml b/.github/workflows/actionlint.yaml index 68676fbd0a..8acdabeb8c 100644 --- a/.github/workflows/actionlint.yaml +++ b/.github/workflows/actionlint.yaml @@ -6,7 +6,8 @@ on: jobs: validate: + name: Actionlint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: reviewdog/action-actionlint@v1 diff --git a/.github/workflows/package-lint.yaml b/.github/workflows/package-lint.yaml deleted file mode 100644 index 77849d00bf..0000000000 --- a/.github/workflows/package-lint.yaml +++ /dev/null @@ -1,19 +0,0 @@ ---- -name: Package lint - -on: - - pull_request - -jobs: - validate: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - run: | - mapfile -t EXTRA_FILES < <(find packages -type f -not -name package.yaml) - if [[ ${#EXTRA_FILES[@]} -gt 0 ]]; then - for file in "${EXTRA_FILES[@]}"; do - echo "::error file=${file},line=1::Only package.yaml files are allowed inside packages/." - done - exit 1 - fi diff --git a/.github/workflows/package-tests.yaml b/.github/workflows/package-tests.yaml index 73b5dcdefd..689844395f 100644 --- a/.github/workflows/package-tests.yaml +++ b/.github/workflows/package-tests.yaml @@ -11,99 +11,20 @@ on: required: true jobs: - package-diff: - name: Check package diffs + lint: + name: Registry lint runs-on: ubuntu-latest - outputs: - all_changed_files: ${{ steps.changed-packages.outputs.all_changed_files }} - any_changed: ${{ steps.changed-packages.outputs.any_changed }} - - steps: - - uses: actions/checkout@v3 - - name: Get changed package definitions - id: changed-packages - uses: tj-actions/changed-files@v36 - with: - files: | - packages/**/package.yaml - - validate: - name: Validate package definitions - runs-on: ubuntu-latest - needs: package-diff - if: ${{ github.event.inputs.packages || needs.package-diff.outputs.any_changed == 'true' }} steps: - - uses: actions/checkout@v3 - - uses: mason-org/actions/validate-schema@v1 + - uses: actions/checkout@v4 with: - packages: ${{ github.event.inputs.packages || needs.package-diff.outputs.all_changed_files }} - - tests: - name: Test packages - needs: [package-diff, validate] - if: ${{ github.event.inputs.packages || needs.package-diff.outputs.any_changed == 'true' }} - strategy: - fail-fast: false - matrix: - # If making changes remember to update the manual workflow as well. - target: - - darwin_arm64 - - darwin_x64 - - linux_arm - - linux_arm64 - - linux_arm64_gnu - - linux_arm_gnu - - linux_x64 - - linux_x64_gnu - - linux_x86 - - win_arm - - win_arm64 - - win_x64 - - win_x86 - - include: - - target: linux_x64 - runs-on: ubuntu-latest - - target: linux_x64_gnu - runs-on: ubuntu-latest - - target: linux_x86 - runs-on: ubuntu-latest - - target: linux_arm - runs-on: ubuntu-latest - - target: linux_arm_gnu - runs-on: ubuntu-latest - - target: linux_arm64 - runs-on: ubuntu-latest - - target: linux_arm64_gnu - runs-on: ubuntu-latest - - target: darwin_x64 - runs-on: macos-latest - - target: darwin_arm64 - runs-on: macos-latest - - target: win_x64 - runs-on: windows-latest - - target: win_x86 - runs-on: windows-latest - - target: win_arm64 - runs-on: windows-latest - - target: win_arm - runs-on: windows-latest - - runs-on: ${{ matrix.runs-on }} - steps: - - uses: actions/checkout@v3 - - uses: mason-org/actions/tests@v1 + fetch-depth: 1 + - uses: mason-org/actions/registry-lint@v1 with: - packages: ${{ github.event.inputs.packages || needs.package-diff.outputs.all_changed_files }} - target: ${{ matrix.target }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - # This job is used for branch protection rule - # Add this job to `Status checks that are required` - status-check: - name: Status check - runs-on: ubuntu-latest - needs: tests - if: 'failure() || cancelled()' - steps: - - run: exit 1 + packages: ${{ github.event.inputs.packages }} + + test: + name: Package tests + needs: lint + uses: mason-org/actions/.github/workflows/package-tests.yaml@v1 + with: + packages: ${{ github.event.inputs.packages }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c53915e327..68391b8b11 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -3,77 +3,14 @@ name: Release on: push: - tags: - - "**" branches: - main jobs: - tag: - name: Tag - runs-on: ubuntu-latest - permissions: - contents: write - outputs: - tag: ${{ steps.tag.outputs.tag }} - should-release: ${{ steps.tag.outputs.should-release }} - - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 2 - - id: adjnoun - uses: mason-org/actions/adj-noun-generator@v1 - - id: tag - name: Get/create tag - shell: bash - run: | - if [[ $GITHUB_REF =~ ^refs/tags ]]; then - echo "Releasing tag $GITHUB_REF_NAME" - printf "tag=%s\nshould-release=true" "$GITHUB_REF_NAME" >> "$GITHUB_OUTPUT" - elif [[ $(git diff-tree --name-only --no-commit-id HEAD -- packages | wc -l) -gt 0 ]]; then - declare TAG - TAG=$(date +%Y-%m-%d)-$ADJNOUN - printf "tag=%s\nshould-release=true" "$TAG" >> "$GITHUB_OUTPUT" - echo "Tagging and pushing $TAG" - git tag "$TAG" HEAD - git push origin "$TAG" - else - echo "No tag was pushed, and no package definition was changed." - echo "should-release=false" >> "$GITHUB_OUTPUT" - fi - env: - GITHUB_REF: ${{ github.ref }} - GITHUB_REF_NAME: ${{ github.ref_name }} - ADJNOUN: ${{ steps.adjnoun.outputs.word }} - release: - needs: [tag] - if: ${{ needs.tag.outputs.should-release == 'true' }} name: Release runs-on: ubuntu-latest permissions: contents: write - steps: - - uses: actions/checkout@v3 - - name: Set up yq - shell: bash - run: | - sudo curl -fL "https://github.com/mikefarah/yq/releases/download/v4.30.6/yq_linux_amd64" -o /usr/local/bin/yq - sudo chmod +x /usr/local/bin/yq - - name: Compile - shell: bash - run: | - yq ea '[.]' -o json packages/*/package.yaml > registry.json - zip -r registry.json.zip registry.json - sha256sum registry.json registry.json.zip > checksums.txt - - name: Release - uses: softprops/action-gh-release@v1 - with: - tag_name: ${{ needs.tag.outputs.tag }} - fail_on_unmatched_files: true - generate_release_notes: false - files: | - registry.json.zip - checksums.txt + - uses: mason-org/actions/registry-release@v1 diff --git a/.github/workflows/validate-renovate.yaml b/.github/workflows/validate-renovate.yaml index 768f715b7c..3c1752d319 100644 --- a/.github/workflows/validate-renovate.yaml +++ b/.github/workflows/validate-renovate.yaml @@ -9,13 +9,14 @@ on: jobs: validate: + name: Validate renovate config runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Check for config changes id: diff - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v44 with: files: | renovate.json5 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6e453587e0..027c57accb 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -55,8 +55,8 @@ # Schema -Package definitions are validated against a well-defined [JSON schema](./schemas/). The full schema is hosted on -. +Package definitions are validated against a well-defined [JSON schema](https://github.com/mason-org/registry-schema). +The full schema is hosted on . > [!TIP] > Use [b0o/SchemaStore.nvim](https://github.com/b0o/SchemaStore.nvim) and the [YAML language diff --git a/packages/actionlint/package.yaml b/packages/actionlint/package.yaml index 05b3204e9f..a5f95b0f53 100644 --- a/packages/actionlint/package.yaml +++ b/packages/actionlint/package.yaml @@ -10,7 +10,7 @@ categories: - Linter source: - id: pkg:github/rhysd/actionlint@v1.7.1 + id: pkg:github/rhysd/actionlint@v1.7.4 asset: - target: darwin_x64 file: actionlint_{{ version | strip_prefix "v" }}_darwin_amd64.tar.gz diff --git a/packages/ada-language-server/package.yaml b/packages/ada-language-server/package.yaml index d2b364ffe6..21a6897ef3 100644 --- a/packages/ada-language-server/package.yaml +++ b/packages/ada-language-server/package.yaml @@ -10,19 +10,54 @@ categories: - LSP source: - id: pkg:github/AdaCore/ada_language_server@24.0.5 + id: pkg:github/AdaCore/ada_language_server@26.0.202411173 asset: - - target: [darwin_x64, darwin_arm64] - file: als-{{version}}-macOS_amd64.zip - bin: x64/darwin/ada_language_server + - target: darwin_x64 + file: als-{{version}}-darwin-x64.tar.gz + bin: integration/vscode/ada/x64/darwin/ada_language_server + - target: darwin_arm64 + file: als-{{version}}-darwin-arm64.tar.gz + bin: integration/vscode/ada/arm64/darwin/ada_language_server + - target: linux_arm64_gnu + file: als-{{version}}-linux-arm64.tar.gz + bin: integration/vscode/ada/arm64/linux/ada_language_server - target: linux_x64_gnu - file: als-{{version}}-Linux_amd64.zip - bin: x64/linux/ada_language_server + file: als-{{version}}-linux-x64.tar.gz + bin: integration/vscode/ada/x64/linux/ada_language_server - target: win_x64 - file: als-{{version}}-Windows_amd64.zip - bin: x64/win32/ada_language_server.exe + file: als-{{version}}-win32-x64.tar.gz + bin: integration/vscode/ada/x64/win32/ada_language_server.exe version_overrides: + - constraint: semver:<=25.0.20241014 + id: pkg:github/AdaCore/ada_language_server@25.0.20241014 + asset: + - target: darwin_x64 + file: x64-darwin.tar.gz + bin: integration/vscode/ada/x64/darwin/ada_language_server + - target: darwin_arm64 + file: arm64-darwin.tar.gz + bin: integration/vscode/ada/arm64/darwin/ada_language_server + - target: linux_x64_gnu + file: x64-linux.tar.gz + bin: integration/vscode/ada/x64/linux/ada_language_server + - target: win_x64 + file: x64-win32.tar.gz + bin: integration/vscode/ada/x64/win32/ada_language_server.exe + + - constraint: semver:<=24.0.6 + id: pkg:github/AdaCore/ada_language_server@24.0.6 + asset: + - target: [darwin_x64, darwin_arm64] + file: als-{{version}}-macOS_amd64.zip + bin: x64/darwin/ada_language_server + - target: linux_x64_gnu + file: als-{{version}}-Linux_amd64.zip + bin: x64/linux/ada_language_server + - target: win_x64 + file: als-{{version}}-Windows_amd64.zip + bin: x64/win32/ada_language_server.exe + - constraint: semver:<=23.0.19 id: pkg:github/AdaCore/ada_language_server@23.0.19 asset: diff --git a/packages/aiken/package.yaml b/packages/aiken/package.yaml index f617cafc5a..e78b0ed92e 100644 --- a/packages/aiken/package.yaml +++ b/packages/aiken/package.yaml @@ -10,20 +10,20 @@ categories: - LSP source: - id: pkg:github/aiken-lang/aiken@v1.0.26-alpha + id: pkg:github/aiken-lang/aiken@v1.1.9 asset: - target: darwin_x64 - file: aiken_{{ version }}_darwin_amd64.tar.gz - bin: aiken + file: aiken-x86_64-apple-darwin.tar.gz + bin: aiken-x86_64-apple-darwin/aiken - target: darwin_arm64 - file: aiken_{{ version }}_darwin_arm64.tar.gz - bin: aiken + file: aiken-aarch64-apple-darwin.tar.gz + bin: aiken-aarch64-apple-darwin/aiken - target: linux_x64 - file: aiken_{{ version }}_linux_amd64.tar.gz - bin: aiken + file: aiken-x86_64-unknown-linux-gnu.tar.gz + bin: aiken-x86_64-unknown-linux-gnu/aiken - target: win_x64 - file: aiken_{{ version }}_win32_amd64.zip - bin: aiken.exe + file: aiken-x86_64-pc-windows-msvc.tar.gz + bin: aiken-x86_64-pc-windows-msvc/aiken.exe bin: aiken: "{{source.asset.bin}}" diff --git a/packages/angular-language-server/package.yaml b/packages/angular-language-server/package.yaml index 726224f3ac..330105cb12 100644 --- a/packages/angular-language-server/package.yaml +++ b/packages/angular-language-server/package.yaml @@ -12,46 +12,41 @@ categories: - LSP source: - id: pkg:npm/%40angular/language-server@18.0.0 + id: pkg:npm/%40angular/language-server@19.0.3 extra_packages: - - typescript@5.1.3 + - typescript@5.4.5 version_overrides: - - constraint: semver:<=14.1.0 - id: pkg:npm/%40angular/language-server@14.1.0 + - constraint: semver:<=17.3.2 + id: pkg:npm/%40angular/language-server@17.3.2 extra_packages: - - typescript@4.7.4 + - typescript@5.3.2 - - constraint: semver:<=14.0.1 - id: pkg:npm/%40angular/language-server@14.0.1 + - constraint: semver:<=16.2.0 + id: pkg:npm/%40angular/language-server@16.2.0 extra_packages: - - typescript@4.5.4 + - typescript@5.1.3 - - constraint: semver:<=13.3.4 - id: pkg:npm/%40angular/language-server@13.3.4 + - constraint: semver:<=15.2.1 + id: pkg:npm/%40angular/language-server@15.2.1 extra_packages: - - typescript@~4.6.2 + - typescript@4.8.2 - - constraint: semver:<=13.2.6 - id: pkg:npm/%40angular/language-server@13.2.6 + - constraint: semver:<=14.2.0 + id: pkg:npm/%40angular/language-server@14.2.0 extra_packages: - - typescript@4.5.4 + - typescript@4.8.2 - - constraint: semver:<=13.1.1 - id: pkg:npm/%40angular/language-server@13.1.1 + - constraint: semver:<=13.3.4 + id: pkg:npm/%40angular/language-server@13.3.4 extra_packages: - - typescript@4.4.3 + - typescript@4.6.2 - constraint: semver:<=12.2.3 id: pkg:npm/%40angular/language-server@12.2.3 extra_packages: - typescript@4.3.4 - - constraint: semver:<=12.0.5 - id: pkg:npm/%40angular/language-server@12.0.5 - extra_packages: - - typescript@4.2.4 - - constraint: semver:<=11.2.14 id: pkg:npm/%40angular/language-server@11.2.14 extra_packages: diff --git a/packages/ansible-lint/package.yaml b/packages/ansible-lint/package.yaml index 1820fa6cf4..659b3487cc 100644 --- a/packages/ansible-lint/package.yaml +++ b/packages/ansible-lint/package.yaml @@ -12,7 +12,7 @@ categories: - Linter source: - id: pkg:pypi/ansible-lint@24.5.0 + id: pkg:pypi/ansible-lint@24.12.2 supported_platforms: - unix diff --git a/packages/antlers-language-server/package.yaml b/packages/antlers-language-server/package.yaml index 1ce3dce271..f75fd94b17 100644 --- a/packages/antlers-language-server/package.yaml +++ b/packages/antlers-language-server/package.yaml @@ -12,7 +12,7 @@ categories: - LSP source: - id: pkg:npm/antlers-language-server@1.3.12 + id: pkg:npm/antlers-language-server@1.3.14 bin: antlersls: npm:antlersls diff --git a/packages/apex-language-server/package.yaml b/packages/apex-language-server/package.yaml index fdd1b8cc01..bc62f8b945 100644 --- a/packages/apex-language-server/package.yaml +++ b/packages/apex-language-server/package.yaml @@ -12,7 +12,7 @@ categories: - LSP source: - id: pkg:github/forcedotcom/salesforcedx-vscode@v60.13.1 + id: pkg:github/forcedotcom/salesforcedx-vscode@v62.9.1 asset: file: salesforcedx-vscode-apex-{{ version | strip_prefix "v" }}.vsix diff --git a/packages/asm-lsp/package.yaml b/packages/asm-lsp/package.yaml index 6e7c15b465..2ab8e9b82c 100644 --- a/packages/asm-lsp/package.yaml +++ b/packages/asm-lsp/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:cargo/asm-lsp@0.6.0?locked=false + id: pkg:cargo/asm-lsp@0.9.0?locked=false bin: asm-lsp: cargo:asm-lsp diff --git a/packages/ast-grep/package.yaml b/packages/ast-grep/package.yaml index 8308d1c823..58e074be56 100644 --- a/packages/ast-grep/package.yaml +++ b/packages/ast-grep/package.yaml @@ -28,7 +28,7 @@ categories: - LSP source: - id: pkg:npm/%40ast-grep/cli@0.22.4 + id: pkg:npm/%40ast-grep/cli@0.32.2 bin: ast-grep: npm:ast-grep diff --git a/packages/astro-language-server/package.yaml b/packages/astro-language-server/package.yaml index 63041b08ce..f14f1eaa99 100644 --- a/packages/astro-language-server/package.yaml +++ b/packages/astro-language-server/package.yaml @@ -10,9 +10,10 @@ categories: - LSP source: - id: pkg:npm/%40astrojs/language-server@2.10.0 + id: pkg:npm/%40astrojs/language-server@2.15.4 extra_packages: - typescript + - "@astrojs/ts-plugin" schemas: lsp: vscode:https://raw.githubusercontent.com/withastro/language-tools/@astrojs/language-server@{{version}}/packages/vscode/package.json diff --git a/packages/autopep8/package.yaml b/packages/autopep8/package.yaml index 69da679669..024698f274 100644 --- a/packages/autopep8/package.yaml +++ b/packages/autopep8/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:pypi/autopep8@2.2.0 + id: pkg:pypi/autopep8@2.3.1 bin: autopep8: pypi:autopep8 diff --git a/packages/autotools-language-server/package.yaml b/packages/autotools-language-server/package.yaml index acfc675427..b1f4a65418 100644 --- a/packages/autotools-language-server/package.yaml +++ b/packages/autotools-language-server/package.yaml @@ -13,7 +13,3 @@ source: bin: autotools-language-server: pypi:autotools-language-server - -ci_skip: - # Due to version not found issue - - win_x64 diff --git a/packages/awk-language-server/package.yaml b/packages/awk-language-server/package.yaml index 928bc2a60b..26474d736a 100644 --- a/packages/awk-language-server/package.yaml +++ b/packages/awk-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/awk-language-server@0.10.5 + id: pkg:npm/awk-language-server@0.10.6 schemas: lsp: vscode:https://raw.githubusercontent.com/Beaglefoot/awk-language-server/server-{{version}}/client/package.json diff --git a/packages/bacon-ls/package.yaml b/packages/bacon-ls/package.yaml new file mode 100644 index 0000000000..824e46d09f --- /dev/null +++ b/packages/bacon-ls/package.yaml @@ -0,0 +1,16 @@ +--- +name: bacon-ls +description: Rust diagnostic provider based on Bacon +homepage: https://github.com/crisidev/bacon-ls +licenses: + - MIT +languages: + - Rust +categories: + - LSP + +source: + id: pkg:cargo/bacon-ls@0.3.0 + +bin: + bacon-ls: cargo:bacon-ls diff --git a/packages/bacon/package.yaml b/packages/bacon/package.yaml new file mode 100644 index 0000000000..4977852278 --- /dev/null +++ b/packages/bacon/package.yaml @@ -0,0 +1,16 @@ +--- +name: bacon +description: Bacon is a background rust code checker +homepage: https://github.com/Canop/bacon +licenses: + - AGPL-3.0-or-later +languages: + - Rust +categories: + - Linter + +source: + id: pkg:cargo/bacon@3.6.0 + +bin: + bacon: cargo:bacon diff --git a/packages/basedpyright/package.yaml b/packages/basedpyright/package.yaml index 54720446fc..7be9815ef7 100644 --- a/packages/basedpyright/package.yaml +++ b/packages/basedpyright/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:pypi/basedpyright@1.12.4 + id: pkg:pypi/basedpyright@1.23.1 schemas: lsp: vscode:https://raw.githubusercontent.com/DetachHead/basedpyright/v{{version}}/packages/vscode-pyright/package.json diff --git a/packages/bash-language-server/package.yaml b/packages/bash-language-server/package.yaml index 8f1603b706..2583c061db 100644 --- a/packages/bash-language-server/package.yaml +++ b/packages/bash-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/bash-language-server@5.3.3 + id: pkg:npm/bash-language-server@5.4.2 schemas: lsp: vscode:https://raw.githubusercontent.com/bash-lsp/bash-language-server/server-{{version}}/vscode-client/package.json diff --git a/packages/beancount-language-server/package.yaml b/packages/beancount-language-server/package.yaml index a80aed8a16..ddaa5727da 100644 --- a/packages/beancount-language-server/package.yaml +++ b/packages/beancount-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:cargo/beancount-language-server@1.3.4?locked=false + id: pkg:cargo/beancount-language-server@1.3.5?locked=false bin: beancount-language-server: cargo:beancount-language-server diff --git a/packages/bibtex-tidy/package.yaml b/packages/bibtex-tidy/package.yaml index 9508f37f59..b4a515e87c 100644 --- a/packages/bibtex-tidy/package.yaml +++ b/packages/bibtex-tidy/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:npm/bibtex-tidy@1.13.0 + id: pkg:npm/bibtex-tidy@1.14.0 bin: bibtex-tidy: npm:bibtex-tidy diff --git a/packages/bicep-lsp/package.yaml b/packages/bicep-lsp/package.yaml index af074bd327..c58f487266 100644 --- a/packages/bicep-lsp/package.yaml +++ b/packages/bicep-lsp/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/Azure/bicep@v0.27.1 + id: pkg:github/Azure/bicep@v0.32.4 asset: file: vscode-bicep.vsix diff --git a/packages/biome/package.yaml b/packages/biome/package.yaml index b32d26a40f..bfa3475696 100644 --- a/packages/biome/package.yaml +++ b/packages/biome/package.yaml @@ -14,7 +14,7 @@ categories: - Formatter source: - id: pkg:npm/@biomejs/biome@1.7.3 + id: pkg:npm/@biomejs/biome@1.9.4 schemas: lsp: vscode:https://raw.githubusercontent.com/biomejs/biome-vscode/main/package.json diff --git a/packages/black/package.yaml b/packages/black/package.yaml index 2311952fdd..63b8bdcffd 100644 --- a/packages/black/package.yaml +++ b/packages/black/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:pypi/black@24.4.2 + id: pkg:pypi/black@24.10.0 bin: black: pypi:black diff --git a/packages/brighterscript-formatter/package.yaml b/packages/brighterscript-formatter/package.yaml index 494639d665..1b14955b8c 100644 --- a/packages/brighterscript-formatter/package.yaml +++ b/packages/brighterscript-formatter/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:npm/brighterscript-formatter@1.7.2 + id: pkg:npm/brighterscript-formatter@1.7.6 bin: bsfmt: npm:bsfmt diff --git a/packages/brighterscript/package.yaml b/packages/brighterscript/package.yaml index 7b1e7d86b0..a3c1726915 100644 --- a/packages/brighterscript/package.yaml +++ b/packages/brighterscript/package.yaml @@ -11,7 +11,7 @@ categories: - LSP source: - id: pkg:npm/brighterscript@0.67.1 + id: pkg:npm/brighterscript@0.68.2 bin: bsc: npm:bsc diff --git a/packages/bsl-language-server/package.yaml b/packages/bsl-language-server/package.yaml index 249d2b6281..f1244f5019 100644 --- a/packages/bsl-language-server/package.yaml +++ b/packages/bsl-language-server/package.yaml @@ -11,7 +11,7 @@ categories: - LSP source: - id: pkg:github/1c-syntax/bsl-language-server@v0.22.0 + id: pkg:github/1c-syntax/bsl-language-server@v0.23.1 asset: file: bsl-language-server-{{ version | strip_prefix "v" }}-exec.jar diff --git a/packages/bslint/package.yaml b/packages/bslint/package.yaml index aacca8aa63..4e298403f8 100644 --- a/packages/bslint/package.yaml +++ b/packages/bslint/package.yaml @@ -10,7 +10,7 @@ categories: - Linter source: - id: pkg:npm/%40rokucommunity/bslint@0.8.21 + id: pkg:npm/%40rokucommunity/bslint@0.8.26 bin: bslint: npm:bslint diff --git a/packages/buf-language-server/package.yaml b/packages/buf-language-server/package.yaml index 82c2d9cdbc..9bff10d317 100644 --- a/packages/buf-language-server/package.yaml +++ b/packages/buf-language-server/package.yaml @@ -11,7 +11,7 @@ categories: - LSP source: - id: pkg:golang/github.com/bufbuild/buf-language-server@v0.0.0-20221121155404-1e927a5df512#cmd/bufls + id: pkg:golang/github.com/bufbuild/buf-language-server@v0.0.0-20240213221648-8e42e5e2e24f#cmd/bufls bin: bufls: golang:bufls diff --git a/packages/buf/package.yaml b/packages/buf/package.yaml index fd93e6633d..7bd70358eb 100644 --- a/packages/buf/package.yaml +++ b/packages/buf/package.yaml @@ -14,7 +14,7 @@ categories: - Formatter source: - id: pkg:github/bufbuild/buf@v1.32.2 + id: pkg:github/bufbuild/buf@v1.48.0 asset: - target: darwin_x64 file: buf-Darwin-x86_64 diff --git a/packages/buildifier/package.yaml b/packages/buildifier/package.yaml index a759457a59..041ba5ca89 100644 --- a/packages/buildifier/package.yaml +++ b/packages/buildifier/package.yaml @@ -11,7 +11,7 @@ categories: - Formatter source: - id: pkg:github/bazelbuild/buildtools@v7.1.2 + id: pkg:github/bazelbuild/buildtools@v7.3.1 asset: - target: darwin_x64 file: buildifier-darwin-amd64 diff --git a/packages/cairo-language-server/package.yaml b/packages/cairo-language-server/package.yaml index 790d2cc335..6dae075821 100644 --- a/packages/cairo-language-server/package.yaml +++ b/packages/cairo-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:cargo/cairo-language-server@2.6.3 + id: pkg:cargo/cairo-language-server@2.9.2 bin: cairo-language-server: cargo:cairo-language-server diff --git a/packages/cds-lsp/package.yaml b/packages/cds-lsp/package.yaml index 8244de1240..6d4e251be0 100644 --- a/packages/cds-lsp/package.yaml +++ b/packages/cds-lsp/package.yaml @@ -11,7 +11,7 @@ categories: - Formatter source: - id: pkg:npm/%40sap/cds-lsp@7.9.0 + id: pkg:npm/%40sap/cds-lsp@8.5.1 bin: cds-lsp: npm:cds-lsp diff --git a/packages/cfn-lint/package.yaml b/packages/cfn-lint/package.yaml index adff76d465..845a04fc20 100644 --- a/packages/cfn-lint/package.yaml +++ b/packages/cfn-lint/package.yaml @@ -14,7 +14,7 @@ categories: - Linter source: - id: pkg:pypi/cfn-lint@0.87.4 + id: pkg:pypi/cfn-lint@1.22.2 bin: cfn-lint: pypi:cfn-lint diff --git a/packages/circleci-yaml-language-server/package.yaml b/packages/circleci-yaml-language-server/package.yaml index f4e7f7fd2f..61260672ca 100644 --- a/packages/circleci-yaml-language-server/package.yaml +++ b/packages/circleci-yaml-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/CircleCI-Public/circleci-yaml-language-server@0.11.1 + id: pkg:github/CircleCI-Public/circleci-yaml-language-server@0.12.0 asset: - target: darwin_arm64 file: diff --git a/packages/circom-lsp/package.yaml b/packages/circom-lsp/package.yaml new file mode 100644 index 0000000000..1f0ccd6b8b --- /dev/null +++ b/packages/circom-lsp/package.yaml @@ -0,0 +1,18 @@ +--- +name: circom-lsp +description: A Language Server Protocol Implementation for Circom +homepage: https://github.com/rubydusa/circom-lsp +licenses: + - GPL-3.0 + +languages: + - Circom + +categories: + - LSP + +source: + id: pkg:cargo/circom-lsp@0.1.3 + +bin: + circom-lsp: cargo:circom-lsp diff --git a/packages/clang-format/package.yaml b/packages/clang-format/package.yaml index 5f29e9b985..ca9661a6dc 100644 --- a/packages/clang-format/package.yaml +++ b/packages/clang-format/package.yaml @@ -15,7 +15,7 @@ categories: - Formatter source: - id: pkg:pypi/clang-format@18.1.5 + id: pkg:pypi/clang-format@19.1.5 bin: clang-format: pypi:clang-format diff --git a/packages/clangd/package.yaml b/packages/clangd/package.yaml index f51722eb2e..18f43ebd40 100644 --- a/packages/clangd/package.yaml +++ b/packages/clangd/package.yaml @@ -13,7 +13,7 @@ categories: - LSP source: - id: pkg:github/clangd/clangd@18.1.3 + id: pkg:github/clangd/clangd@19.1.2 asset: - target: [darwin_x64, darwin_arm64] file: clangd-mac-{{version}}.zip diff --git a/packages/clarinet/package.yaml b/packages/clarinet/package.yaml index c01c2161ea..63b0af5606 100644 --- a/packages/clarinet/package.yaml +++ b/packages/clarinet/package.yaml @@ -12,7 +12,7 @@ categories: - Runtime source: - id: pkg:github/hirosystems/clarinet@v2.6.0 + id: pkg:github/hirosystems/clarinet@v2.12.0 asset: - target: darwin_arm64 file: clarinet-darwin-arm64.tar.gz diff --git a/packages/clj-kondo/package.yaml b/packages/clj-kondo/package.yaml index acc9a7503b..fdee9ca20b 100644 --- a/packages/clj-kondo/package.yaml +++ b/packages/clj-kondo/package.yaml @@ -14,7 +14,7 @@ categories: source: # renovate:versioning=loose - id: pkg:github/clj-kondo/clj-kondo@v2024.05.24 + id: pkg:github/clj-kondo/clj-kondo@v2024.11.14 asset: - target: darwin_arm64 file: clj-kondo-{{ version | strip_prefix "v" }}-macos-aarch64.zip diff --git a/packages/cljfmt/package.yaml b/packages/cljfmt/package.yaml index 2780f41a1b..0f9ef85877 100644 --- a/packages/cljfmt/package.yaml +++ b/packages/cljfmt/package.yaml @@ -11,7 +11,7 @@ categories: - Formatter source: - id: pkg:github/weavejester/cljfmt@0.12.0 + id: pkg:github/weavejester/cljfmt@0.13.0 asset: - target: darwin_arm64 file: cljfmt-{{ version }}-darwin-aarch64.tar.gz diff --git a/packages/clojure-lsp/package.yaml b/packages/clojure-lsp/package.yaml index 8f3d5d96eb..74425751da 100644 --- a/packages/clojure-lsp/package.yaml +++ b/packages/clojure-lsp/package.yaml @@ -12,7 +12,7 @@ categories: source: # renovate:versioning=loose - id: pkg:github/clojure-lsp/clojure-lsp@2024.04.22-11.50.26 + id: pkg:github/clojure-lsp/clojure-lsp@2024.11.08-17.49.29 asset: - target: darwin_arm64 file: clojure-lsp-native-macos-aarch64.zip diff --git a/packages/cobol-language-support/package.yaml b/packages/cobol-language-support/package.yaml index 6ccb1a7b52..eb4ffda613 100644 --- a/packages/cobol-language-support/package.yaml +++ b/packages/cobol-language-support/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/eclipse-che4z/che-che4z-lsp-for-cobol@2.1.1 + id: pkg:github/eclipse-che4z/che-che4z-lsp-for-cobol@2.3.0 asset: - target: darwin_arm64 file: cobol-language-support-darwin-arm64-{{version}}.vsix diff --git a/packages/codelldb/package.yaml b/packages/codelldb/package.yaml index 5f6351d350..178eb06a8f 100644 --- a/packages/codelldb/package.yaml +++ b/packages/codelldb/package.yaml @@ -13,26 +13,49 @@ categories: - DAP source: - id: pkg:github/vadimcn/vscode-lldb@v1.10.0 + id: pkg:github/vadimcn/vscode-lldb@v1.11.1 asset: - target: darwin_x64 - file: codelldb-x86_64-darwin.vsix + file: codelldb-darwin-x64.vsix bin: exec:extension/adapter/codelldb - target: darwin_arm64 - file: codelldb-aarch64-darwin.vsix + file: codelldb-darwin-arm64.vsix bin: exec:extension/adapter/codelldb - target: linux_x64_gnu - file: codelldb-x86_64-linux.vsix + file: codelldb-linux-x64.vsix bin: exec:extension/adapter/codelldb - target: linux_arm64_gnu - file: codelldb-aarch64-linux.vsix + file: codelldb-linux-arm64.vsix bin: exec:extension/adapter/codelldb - target: linux_arm_gnu - file: codelldb-arm-linux.vsix + file: codelldb-linux-armhf.vsix bin: exec:extension/adapter/codelldb - target: win_x64 - file: codelldb-x86_64-windows.vsix + file: codelldb-win32-x64.vsix bin: extension/adapter/codelldb.exe + version_overrides: + - constraint: semver:<=v1.10.0 + id: pkg:github/vadimcn/vscode-lldb@v1.10.0 + asset: + - target: darwin_x64 + file: codelldb-x86_64-darwin.vsix + bin: exec:extension/adapter/codelldb + - target: darwin_arm64 + file: codelldb-aarch64-darwin.vsix + bin: exec:extension/adapter/codelldb + - target: linux_x64_gnu + file: codelldb-x86_64-linux.vsix + bin: exec:extension/adapter/codelldb + - target: linux_arm64_gnu + file: codelldb-aarch64-linux.vsix + bin: exec:extension/adapter/codelldb + - target: linux_arm_gnu + file: codelldb-arm-linux.vsix + bin: exec:extension/adapter/codelldb + - target: win_x64 + file: codelldb-x86_64-windows.vsix + bin: extension/adapter/codelldb.exe + bin: codelldb: "{{source.asset.bin}}" diff --git a/packages/codeql/package.yaml b/packages/codeql/package.yaml index 3ef1fbb33f..af58f31b71 100644 --- a/packages/codeql/package.yaml +++ b/packages/codeql/package.yaml @@ -13,7 +13,7 @@ categories: - LSP source: - id: pkg:github/github/codeql-cli-binaries@v2.17.3 + id: pkg:github/github/codeql-cli-binaries@v2.20.0 asset: - target: [darwin_x64, darwin_arm64] file: codeql-osx64.zip diff --git a/packages/commitlint/package.yaml b/packages/commitlint/package.yaml index 772c98a74e..201937278f 100644 --- a/packages/commitlint/package.yaml +++ b/packages/commitlint/package.yaml @@ -9,7 +9,7 @@ categories: - Linter source: - id: pkg:npm/%40commitlint/cli@19.3.0 + id: pkg:npm/%40commitlint/cli@19.6.1 extra_packages: - "@commitlint/config-conventional" - "commitlint-format-json" diff --git a/packages/contextive/package.yaml b/packages/contextive/package.yaml index e0c4d90cc4..b66e7a81e6 100644 --- a/packages/contextive/package.yaml +++ b/packages/contextive/package.yaml @@ -12,7 +12,7 @@ categories: - LSP source: - id: pkg:github/dev-cycles/contextive@v1.11.0 + id: pkg:github/dev-cycles/contextive@v1.12.1 asset: - target: linux_x64_gnu file: Contextive.LanguageServer-linux-x64-{{ version | strip_prefix "v" }}.zip diff --git a/packages/cpplint/package.yaml b/packages/cpplint/package.yaml index 8f845dd368..06bcbf606c 100644 --- a/packages/cpplint/package.yaml +++ b/packages/cpplint/package.yaml @@ -11,7 +11,7 @@ categories: - Linter source: - id: pkg:pypi/cpplint@1.6.1 + id: pkg:pypi/cpplint@2.0.0 bin: cpplint: pypi:cpplint diff --git a/packages/cpptools/package.yaml b/packages/cpptools/package.yaml index 72f4679084..53cc10cd14 100644 --- a/packages/cpptools/package.yaml +++ b/packages/cpptools/package.yaml @@ -12,32 +12,58 @@ categories: - DAP source: - id: pkg:github/microsoft/vscode-cpptools@v1.20.5 + id: pkg:github/microsoft/vscode-cpptools@v1.22.11 asset: - target: darwin_x64 - file: cpptools-osx.vsix + file: cpptools-macOS-x64.vsix bin: extension/debugAdapters/bin/OpenDebugAD7 - target: darwin_arm64 - file: cpptools-osx-arm64.vsix + file: cpptools-macOS-arm64.vsix bin: extension/debugAdapters/bin/OpenDebugAD7 - target: linux_arm64 - file: cpptools-linux-aarch64.vsix + file: cpptools-linux-arm64.vsix bin: extension/debugAdapters/bin/OpenDebugAD7 - target: linux_x64 - file: cpptools-linux.vsix + file: cpptools-linux-x64.vsix bin: extension/debugAdapters/bin/OpenDebugAD7 - target: linux_arm - file: cpptools-linux-armhf.vsix + file: cpptools-linux-arm32.vsix bin: extension/debugAdapters/bin/OpenDebugAD7 - target: win_arm64 - file: cpptools-win-arm64.vsix + file: cpptools-windows-arm64.vsix bin: extension/debugAdapters/bin/OpenDebugAD7.exe - target: win_x64 - file: cpptools-win64.vsix - bin: extension/debugAdapters/bin/OpenDebugAD7.exe - - target: win_x86 - file: cpptools-win32.vsix + file: cpptools-windows-x64.vsix bin: extension/debugAdapters/bin/OpenDebugAD7.exe + version_overrides: + - constraint: semver:<=v1.20.5 + id: pkg:github/microsoft/vscode-cpptools@v1.20.5 + asset: + - target: darwin_x64 + file: cpptools-osx.vsix + bin: extension/debugAdapters/bin/OpenDebugAD7 + - target: darwin_arm64 + file: cpptools-osx-arm64.vsix + bin: extension/debugAdapters/bin/OpenDebugAD7 + - target: linux_arm64 + file: cpptools-linux-aarch64.vsix + bin: extension/debugAdapters/bin/OpenDebugAD7 + - target: linux_x64 + file: cpptools-linux.vsix + bin: extension/debugAdapters/bin/OpenDebugAD7 + - target: linux_arm + file: cpptools-linux-armhf.vsix + bin: extension/debugAdapters/bin/OpenDebugAD7 + - target: win_arm64 + file: cpptools-win-arm64.vsix + bin: extension/debugAdapters/bin/OpenDebugAD7.exe + - target: win_x64 + file: cpptools-win64.vsix + bin: extension/debugAdapters/bin/OpenDebugAD7.exe + - target: win_x86 + file: cpptools-win32.vsix + bin: extension/debugAdapters/bin/OpenDebugAD7.exe + bin: OpenDebugAD7: "{{source.asset.bin}}" diff --git a/packages/cql-language-server/package.yaml b/packages/cql-language-server/package.yaml index f84e845a82..0c2928fdf1 100644 --- a/packages/cql-language-server/package.yaml +++ b/packages/cql-language-server/package.yaml @@ -11,7 +11,7 @@ categories: source: # renovate:datasource=github-releases - id: pkg:generic/cqframework/cql-language-server@v3.1.0 + id: pkg:generic/cqframework/cql-language-server@v3.2.1 download: files: cql-ls-service.jar: https://repo1.maven.org/maven2/org/opencds/cqf/cql/ls/cql-ls-service/{{ version | strip_prefix "v" }}/cql-ls-service-{{ version | strip_prefix "v" }}.jar diff --git a/packages/crlfmt/package.yaml b/packages/crlfmt/package.yaml index e379e5ef4b..a2b044a85f 100644 --- a/packages/crlfmt/package.yaml +++ b/packages/crlfmt/package.yaml @@ -11,7 +11,7 @@ categories: - Formatter source: - id: pkg:golang/github.com/cockroachdb/crlfmt@v0.1.0 + id: pkg:golang/github.com/cockroachdb/crlfmt@v0.3.0 bin: crlfmt: golang:crlfmt diff --git a/packages/crystalline/package.yaml b/packages/crystalline/package.yaml index 46009f5153..e1ded75304 100644 --- a/packages/crystalline/package.yaml +++ b/packages/crystalline/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/elbywan/crystalline@v0.13.1 + id: pkg:github/elbywan/crystalline@v0.15.0 asset: - target: darwin_arm64 file: crystalline_arm64-apple-darwin.gz diff --git a/packages/csharp-language-server/package.yaml b/packages/csharp-language-server/package.yaml index f137174941..2b211a6b9f 100644 --- a/packages/csharp-language-server/package.yaml +++ b/packages/csharp-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:nuget/csharp-ls@0.13.0 + id: pkg:nuget/csharp-ls@0.15.0 bin: csharp-ls: nuget:csharp-ls diff --git a/packages/csharpier/package.yaml b/packages/csharpier/package.yaml index 9476932b62..e0ca7fcc86 100644 --- a/packages/csharpier/package.yaml +++ b/packages/csharpier/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:nuget/csharpier@0.28.2 + id: pkg:nuget/csharpier@0.30.3 bin: dotnet-csharpier: nuget:dotnet-csharpier diff --git a/packages/cspell/package.yaml b/packages/cspell/package.yaml index 6125ad0031..96087f6a5f 100644 --- a/packages/cspell/package.yaml +++ b/packages/cspell/package.yaml @@ -9,7 +9,7 @@ categories: - Linter source: - id: pkg:npm/cspell@8.8.3 + id: pkg:npm/cspell@8.17.1 bin: cspell: npm:cspell diff --git a/packages/cssmodules-language-server/package.yaml b/packages/cssmodules-language-server/package.yaml index bbe64466d6..82ba4e2a1c 100644 --- a/packages/cssmodules-language-server/package.yaml +++ b/packages/cssmodules-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/cssmodules-language-server@1.4.0 + id: pkg:npm/cssmodules-language-server@1.5.1 bin: cssmodules-language-server: npm:cssmodules-language-server diff --git a/packages/cuepls/package.yaml b/packages/cuepls/package.yaml index e4f49545b1..0aeb1a0e8a 100644 --- a/packages/cuepls/package.yaml +++ b/packages/cuepls/package.yaml @@ -9,8 +9,12 @@ languages: categories: - LSP +deprecation: + message: The CUE language server is now included in the cue language binary. + since: v0.11.1 + source: - id: pkg:golang/cuelang.org/go@v0.8.2#cmd/cuepls + id: pkg:golang/cuelang.org/go@v0.10.1#cmd/cuepls bin: cuepls: golang:cuepls diff --git a/packages/cypher-language-server/package.yaml b/packages/cypher-language-server/package.yaml index 8cdbd8a879..22b60f9160 100644 --- a/packages/cypher-language-server/package.yaml +++ b/packages/cypher-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/%40neo4j-cypher/language-server@2.0.0-next.7 + id: pkg:npm/%40neo4j-cypher/language-server@2.0.0-next.13 bin: cypher-language-server: npm:cypher-language-server diff --git a/packages/dart-debug-adapter/package.yaml b/packages/dart-debug-adapter/package.yaml index 2447d1c80b..e02f94e3a7 100644 --- a/packages/dart-debug-adapter/package.yaml +++ b/packages/dart-debug-adapter/package.yaml @@ -10,7 +10,7 @@ categories: - DAP source: - id: pkg:github/Dart-Code/Dart-Code@v3.90.0 + id: pkg:github/Dart-Code/Dart-Code@v3.102.0 asset: file: dart-code-{{ version | strip_prefix "v" }}.vsix diff --git a/packages/dcm/package.yaml b/packages/dcm/package.yaml index bb94ca42ce..4c70282062 100644 --- a/packages/dcm/package.yaml +++ b/packages/dcm/package.yaml @@ -12,7 +12,7 @@ categories: - Linter source: - id: pkg:github/CQLabs/homebrew-dcm@1.17.3 + id: pkg:github/CQLabs/homebrew-dcm@1.25.1 asset: - target: darwin_arm64 file: dcm-macos-arm-release.zip diff --git a/packages/debugpy/package.yaml b/packages/debugpy/package.yaml index 194014e1b9..a899ddb110 100644 --- a/packages/debugpy/package.yaml +++ b/packages/debugpy/package.yaml @@ -10,7 +10,7 @@ categories: - DAP source: - id: pkg:pypi/debugpy@1.8.1 + id: pkg:pypi/debugpy@1.8.11 bin: debugpy: pyvenv:debugpy diff --git a/packages/delve/package.yaml b/packages/delve/package.yaml index eb1fc37309..9f6446dfb3 100644 --- a/packages/delve/package.yaml +++ b/packages/delve/package.yaml @@ -10,7 +10,7 @@ categories: - DAP source: - id: pkg:golang/github.com/go-delve/delve@v1.22.1#cmd/dlv + id: pkg:golang/github.com/go-delve/delve@v1.24.0#cmd/dlv bin: dlv: golang:dlv diff --git a/packages/deno/package.yaml b/packages/deno/package.yaml index 02eacc11f6..acd4408f16 100644 --- a/packages/deno/package.yaml +++ b/packages/deno/package.yaml @@ -14,7 +14,7 @@ categories: - Runtime source: - id: pkg:github/denoland/deno@v1.44.0 + id: pkg:github/denoland/deno@v2.1.4 asset: - target: darwin_arm64 file: deno-aarch64-apple-darwin.zip diff --git a/packages/detekt/package.yaml b/packages/detekt/package.yaml index 5d13eb369e..cd2cd0ecc3 100644 --- a/packages/detekt/package.yaml +++ b/packages/detekt/package.yaml @@ -11,7 +11,7 @@ categories: - Linter source: - id: pkg:github/detekt/detekt@v1.23.6 + id: pkg:github/detekt/detekt@v1.23.7 asset: - target: unix file: detekt-cli-{{ version | strip_prefix "v" }}.zip diff --git a/packages/djlint/package.yaml b/packages/djlint/package.yaml index d36164cae2..f201bfd51e 100644 --- a/packages/djlint/package.yaml +++ b/packages/djlint/package.yaml @@ -18,7 +18,7 @@ categories: - Linter source: - id: pkg:pypi/djlint@1.34.1 + id: pkg:pypi/djlint@1.36.3 bin: djlint: pypi:djlint diff --git a/packages/docker-compose-language-service/package.yaml b/packages/docker-compose-language-service/package.yaml index 828b6bd32d..e62a94e058 100644 --- a/packages/docker-compose-language-service/package.yaml +++ b/packages/docker-compose-language-service/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/%40microsoft/compose-language-service@0.2.0 + id: pkg:npm/%40microsoft/compose-language-service@0.3.0 bin: docker-compose-langserver: npm:docker-compose-langserver diff --git a/packages/dockerfile-language-server/package.yaml b/packages/dockerfile-language-server/package.yaml index d2c16258cf..7b7c7035d8 100644 --- a/packages/dockerfile-language-server/package.yaml +++ b/packages/dockerfile-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/dockerfile-language-server-nodejs@0.12.0 + id: pkg:npm/dockerfile-language-server-nodejs@0.13.0 bin: docker-langserver: npm:docker-langserver diff --git a/packages/dprint/package.yaml b/packages/dprint/package.yaml index d1839e1397..bb0ed22037 100644 --- a/packages/dprint/package.yaml +++ b/packages/dprint/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/dprint/dprint@0.46.1 + id: pkg:github/dprint/dprint@0.47.6 asset: - target: darwin_arm64 file: dprint-aarch64-apple-darwin.zip diff --git a/packages/earthlyls/package.yaml b/packages/earthlyls/package.yaml index e6b9353703..6abc552dee 100644 --- a/packages/earthlyls/package.yaml +++ b/packages/earthlyls/package.yaml @@ -11,7 +11,7 @@ categories: - LSP source: - id: pkg:github/glehmann/earthlyls@0.4.0 + id: pkg:github/glehmann/earthlyls@0.5.3 asset: - target: linux_x64 file: earthlyls-{{ version }}-linux-amd64.tar.gz diff --git a/packages/easy-coding-standard/package.yaml b/packages/easy-coding-standard/package.yaml index 3929824f8e..ee56276658 100644 --- a/packages/easy-coding-standard/package.yaml +++ b/packages/easy-coding-standard/package.yaml @@ -11,7 +11,7 @@ categories: - Linter source: - id: pkg:composer/symplify/easy-coding-standard@12.2.0 + id: pkg:composer/symplify/easy-coding-standard@12.5.4 bin: ecs: composer:ecs diff --git a/packages/editorconfig-checker/package.yaml b/packages/editorconfig-checker/package.yaml index ebe529f597..818008d567 100644 --- a/packages/editorconfig-checker/package.yaml +++ b/packages/editorconfig-checker/package.yaml @@ -9,7 +9,7 @@ categories: - Linter source: - id: pkg:github/editorconfig-checker/editorconfig-checker@v3.0.1 + id: pkg:github/editorconfig-checker/editorconfig-checker@v3.0.3 asset: - target: darwin_arm64 file: ec-darwin-arm64.tar.gz diff --git a/packages/efm/package.yaml b/packages/efm/package.yaml index 116bfa024d..e7bc87b984 100644 --- a/packages/efm/package.yaml +++ b/packages/efm/package.yaml @@ -9,7 +9,7 @@ categories: - LSP source: - id: pkg:github/mattn/efm-langserver@v0.0.53 + id: pkg:github/mattn/efm-langserver@v0.0.54 asset: - target: darwin_x64 file: efm-langserver_{{version}}_darwin_amd64.zip diff --git a/packages/elixir-ls/package.yaml b/packages/elixir-ls/package.yaml index c89f6265ab..ba5c7d39a4 100644 --- a/packages/elixir-ls/package.yaml +++ b/packages/elixir-ls/package.yaml @@ -13,7 +13,7 @@ categories: - DAP source: - id: pkg:github/elixir-lsp/elixir-ls@v0.21.3 + id: pkg:github/elixir-lsp/elixir-ls@v0.25.0 asset: - target: unix file: elixir-ls-{{version}}.zip diff --git a/packages/elp/package.yaml b/packages/elp/package.yaml index 767a70c7b5..891361aee5 100644 --- a/packages/elp/package.yaml +++ b/packages/elp/package.yaml @@ -13,16 +13,16 @@ categories: source: # renovate:versioning=loose - id: pkg:github/WhatsApp/erlang-language-platform@2024-05-24 + id: pkg:github/WhatsApp/erlang-language-platform@2024-12-09 asset: - target: linux_x64_gnu - file: elp-linux-x86_64-unknown-linux-gnu-otp-25.3.tar.gz + file: elp-linux-x86_64-unknown-linux-gnu-otp-26.2.tar.gz bin: elp - target: darwin_x64 - file: elp-macos-x86_64-apple-darwin-otp-25.3.tar.gz + file: elp-macos-x86_64-apple-darwin-otp-26.2.tar.gz bin: elp - target: darwin_arm64 - file: elp-macos-aarch64-apple-darwin-otp-25.3.tar.gz + file: elp-macos-aarch64-apple-darwin-otp-26.2.tar.gz bin: elp schemas: diff --git a/packages/ember-language-server/package.yaml b/packages/ember-language-server/package.yaml index 9525c34907..05a13b0fe1 100644 --- a/packages/ember-language-server/package.yaml +++ b/packages/ember-language-server/package.yaml @@ -1,7 +1,7 @@ --- name: ember-language-server description: Language Server Protocol implementation for Ember.js and Glimmer projects. -homepage: https://github.com/lifeart/ember-language-server +homepage: https://github.com/ember-tooling/ember-language-server licenses: - MIT languages: @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/%40lifeart/ember-language-server@2.30.1 + id: pkg:npm/%40ember-tooling/ember-language-server@2.30.5 bin: ember-language-server: npm:ember-language-server diff --git a/packages/emmet-language-server/package.yaml b/packages/emmet-language-server/package.yaml index 4ea727fa03..3657b72f20 100644 --- a/packages/emmet-language-server/package.yaml +++ b/packages/emmet-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/@olrtg/emmet-language-server@2.5.0 + id: pkg:npm/@olrtg/emmet-language-server@2.6.1 bin: emmet-language-server: npm:emmet-language-server diff --git a/packages/erb-formatter/package.yaml b/packages/erb-formatter/package.yaml index 1c9fa3db15..835dd9e453 100644 --- a/packages/erb-formatter/package.yaml +++ b/packages/erb-formatter/package.yaml @@ -11,7 +11,7 @@ categories: - Formatter source: - id: pkg:gem/erb-formatter@0.7.2 + id: pkg:gem/erb-formatter@0.7.3 bin: erb-format: gem:erb-format diff --git a/packages/erb-lint/package.yaml b/packages/erb-lint/package.yaml index 34dd4b3514..41cfa999ab 100644 --- a/packages/erb-lint/package.yaml +++ b/packages/erb-lint/package.yaml @@ -11,7 +11,7 @@ categories: - Linter source: - id: pkg:gem/erb_lint@0.5.0 + id: pkg:gem/erb_lint@0.7.0 bin: erblint: gem:erblint diff --git a/packages/erg/package.yaml b/packages/erg/package.yaml index 1b5804eda7..445a76352d 100644 --- a/packages/erg/package.yaml +++ b/packages/erg/package.yaml @@ -12,7 +12,7 @@ categories: - LSP source: - id: pkg:github/erg-lang/erg@v0.6.37 + id: pkg:github/erg-lang/erg@v0.6.48 asset: - target: darwin_x64 file: erg-x86_64-apple-darwin.tar.gz diff --git a/packages/erlang-ls/package.yaml b/packages/erlang-ls/package.yaml index fed28ffab9..d0d2db7346 100644 --- a/packages/erlang-ls/package.yaml +++ b/packages/erlang-ls/package.yaml @@ -13,7 +13,7 @@ categories: source: # renovate:datasource=github-tags - id: pkg:github/erlang-ls/erlang_ls@0.52.0 + id: pkg:github/erlang-ls/erlang_ls@1.1.0 build: - target: win run: | diff --git a/packages/esbonio/package.yaml b/packages/esbonio/package.yaml index 300cbad4bf..99de42d0e7 100644 --- a/packages/esbonio/package.yaml +++ b/packages/esbonio/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:pypi/esbonio@0.16.4 + id: pkg:pypi/esbonio@0.16.5 bin: esbonio: pypi:esbonio diff --git a/packages/eslint_d/package.yaml b/packages/eslint_d/package.yaml index e73dcb01bd..035fe0dabb 100644 --- a/packages/eslint_d/package.yaml +++ b/packages/eslint_d/package.yaml @@ -11,7 +11,7 @@ categories: - Linter source: - id: pkg:npm/eslint_d@13.1.2 + id: pkg:npm/eslint_d@14.3.0 bin: eslint_d: npm:eslint_d diff --git a/packages/facility-language-server/package.yaml b/packages/facility-language-server/package.yaml index 6567fb20b3..2c3396e2fd 100644 --- a/packages/facility-language-server/package.yaml +++ b/packages/facility-language-server/package.yaml @@ -12,7 +12,7 @@ categories: - LSP source: - id: pkg:github/FacilityApi/FacilityLanguageServer@v2.2.0 + id: pkg:github/FacilityApi/FacilityLanguageServer@v2.3.0 asset: file: Facility.LanguageServer.zip:libexec/ diff --git a/packages/fantomas/package.yaml b/packages/fantomas/package.yaml index 908e4732a5..3047c57515 100644 --- a/packages/fantomas/package.yaml +++ b/packages/fantomas/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:nuget/fantomas@6.3.5 + id: pkg:nuget/fantomas@6.3.16 bin: fantomas: nuget:fantomas diff --git a/packages/firefox-debug-adapter/package.yaml b/packages/firefox-debug-adapter/package.yaml index 8ae5920401..ef2011b860 100644 --- a/packages/firefox-debug-adapter/package.yaml +++ b/packages/firefox-debug-adapter/package.yaml @@ -12,7 +12,7 @@ categories: source: # renovate:datasource=github-tags - id: pkg:github/firefox-devtools/vscode-firefox-debug@2.9.8 + id: pkg:github/firefox-devtools/vscode-firefox-debug@2.12.0 build: run: | npm install diff --git a/packages/flake8/package.yaml b/packages/flake8/package.yaml index 33907a2732..9237f784dd 100644 --- a/packages/flake8/package.yaml +++ b/packages/flake8/package.yaml @@ -12,7 +12,7 @@ categories: - Linter source: - id: pkg:pypi/flake8@7.0.0 + id: pkg:pypi/flake8@7.1.1 bin: flake8: pypi:flake8 diff --git a/packages/foam-language-server/package.yaml b/packages/foam-language-server/package.yaml index e5f48b6940..e90ca63966 100644 --- a/packages/foam-language-server/package.yaml +++ b/packages/foam-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/foam-language-server@0.3.3 + id: pkg:npm/foam-language-server@0.3.5 bin: foam-ls: npm:foam-ls diff --git a/packages/fortls/package.yaml b/packages/fortls/package.yaml index 5bb221f977..32a876d366 100644 --- a/packages/fortls/package.yaml +++ b/packages/fortls/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:pypi/fortls@3.1.0 + id: pkg:pypi/fortls@3.1.2 bin: fortls: pypi:fortls diff --git a/packages/fsautocomplete/package.yaml b/packages/fsautocomplete/package.yaml index c20e46fec3..e9896a129b 100644 --- a/packages/fsautocomplete/package.yaml +++ b/packages/fsautocomplete/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:nuget/fsautocomplete@0.73.1 + id: pkg:nuget/fsautocomplete@0.75.0 schemas: lsp: vscode:https://raw.githubusercontent.com/ionide/ionide-vscode-fsharp/main/release/package.json diff --git a/packages/gci/package.yaml b/packages/gci/package.yaml index 4f7322a7a8..afb99250c0 100644 --- a/packages/gci/package.yaml +++ b/packages/gci/package.yaml @@ -11,7 +11,7 @@ categories: - Formatter source: - id: pkg:golang/github.com/daixiang0/gci@v0.13.4 + id: pkg:golang/github.com/daixiang0/gci@v0.13.5 bin: gci: golang:gci diff --git a/packages/gdtoolkit/package.yaml b/packages/gdtoolkit/package.yaml index 82d2982f24..5fde1a8053 100644 --- a/packages/gdtoolkit/package.yaml +++ b/packages/gdtoolkit/package.yaml @@ -11,7 +11,7 @@ categories: - Formatter source: - id: pkg:pypi/gdtoolkit@4.2.2 + id: pkg:pypi/gdtoolkit@4.3.3 bin: gdlint: pypi:gdlint diff --git a/packages/gersemi/package.yaml b/packages/gersemi/package.yaml index 4b95316db3..cd12f25360 100644 --- a/packages/gersemi/package.yaml +++ b/packages/gersemi/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:pypi/gersemi@0.12.1 + id: pkg:pypi/gersemi@0.17.1 bin: gersemi: pypi:gersemi diff --git a/packages/gh/package.yaml b/packages/gh/package.yaml index ffea388655..67b7734f07 100644 --- a/packages/gh/package.yaml +++ b/packages/gh/package.yaml @@ -10,7 +10,7 @@ languages: [] categories: [] source: - id: pkg:github/cli/cli@v2.50.0 + id: pkg:github/cli/cli@v2.63.2 asset: - target: darwin_x64 file: gh_{{ version | strip_prefix "v" }}_macOS_amd64.zip diff --git a/packages/ginko_ls/package.yaml b/packages/ginko_ls/package.yaml index 704fa5bf29..f1b8612592 100644 --- a/packages/ginko_ls/package.yaml +++ b/packages/ginko_ls/package.yaml @@ -12,7 +12,7 @@ categories: - LSP source: - id: pkg:github/Schottkyc137/ginko@v0.0.5 + id: pkg:github/Schottkyc137/ginko@v0.0.8 asset: - target: darwin_arm64 file: ginko_ls-aarch64-apple-darwin.zip diff --git a/packages/gitlab-ci-ls/package.yaml b/packages/gitlab-ci-ls/package.yaml index fd52975166..e91cd1015c 100644 --- a/packages/gitlab-ci-ls/package.yaml +++ b/packages/gitlab-ci-ls/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:cargo/gitlab-ci-ls@0.18.0 + id: pkg:cargo/gitlab-ci-ls@0.22.0 bin: gitlab-ci-ls: cargo:gitlab-ci-ls diff --git a/packages/gitleaks/package.yaml b/packages/gitleaks/package.yaml index ef9de22437..d727e9cadf 100644 --- a/packages/gitleaks/package.yaml +++ b/packages/gitleaks/package.yaml @@ -9,7 +9,7 @@ categories: - Linter source: - id: pkg:github/gitleaks/gitleaks@v8.18.2 + id: pkg:github/gitleaks/gitleaks@v8.21.3 asset: - target: darwin_arm64 file: gitleaks_{{ version | strip_prefix "v" }}_darwin_arm64.tar.gz diff --git a/packages/gitui/package.yaml b/packages/gitui/package.yaml index 1d16787fa3..09f16939bc 100644 --- a/packages/gitui/package.yaml +++ b/packages/gitui/package.yaml @@ -8,11 +8,14 @@ languages: [] categories: [] source: - id: pkg:github/extrawurst/gitui@v0.26.2 + id: pkg:github/extrawurst/gitui@v0.26.3 asset: - - target: [darwin_x64, darwin_arm64] + - target: darwin_arm64 file: gitui-mac.tar.gz bin: gitui + - target: darwin_x64 + file: gitui-mac-x86.tar.gz + bin: gitui - target: linux_x64 file: gitui-linux-x86_64.tar.gz bin: gitui @@ -27,6 +30,25 @@ source: bin: gitui.exe version_overrides: + - constraint: semver:<=v0.26.2 + id: pkg:github/extrawurst/gitui@v0.26.2 + asset: + - target: [darwin_x64, darwin_arm64] + file: gitui-mac.tar.gz + bin: gitui + - target: linux_x64 + file: gitui-linux-x86_64.tar.gz + bin: gitui + - target: linux_arm64 + file: gitui-linux-aarch64.tar.gz + bin: gitui + - target: linux_arm + file: gitui-linux-arm.tar.gz + bin: gitui + - target: win_x64 + file: gitui-win.tar.gz + bin: gitui.exe + - constraint: semver:<=v0.25.2 id: pkg:github/extrawurst/gitui@v0.25.2 asset: diff --git a/packages/glint/package.yaml b/packages/glint/package.yaml index bef40abd03..b6e2463343 100644 --- a/packages/glint/package.yaml +++ b/packages/glint/package.yaml @@ -17,7 +17,7 @@ categories: - Linter source: - id: pkg:npm/%40glint/core@1.4.0 + id: pkg:npm/%40glint/core@1.5.0 extra_packages: - typescript diff --git a/packages/glow/package.yaml b/packages/glow/package.yaml index 098af8f07b..bf468f1d3a 100644 --- a/packages/glow/package.yaml +++ b/packages/glow/package.yaml @@ -9,32 +9,129 @@ languages: categories: [] source: - id: pkg:github/charmbracelet/glow@v1.5.1 + id: pkg:github/charmbracelet/glow@v2.0.0 asset: - target: darwin_arm64 - file: glow_Darwin_arm64.tar.gz - bin: glow + file: glow_{{ version | strip_prefix "v" }}_Darwin_arm64.tar.gz + bin: glow_{{ version | strip_prefix "v" }}_Darwin_arm64/glow + share: + man: glow_{{ version | strip_prefix "v" }}_Darwin_arm64/manpages/glow.1.gz + completions: glow_{{ version | strip_prefix "v" }}_Darwin_arm64/completions/ + - target: darwin_x64 - file: glow_Darwin_x86_64.tar.gz - bin: glow + file: glow_{{ version | strip_prefix "v" }}_Darwin_x86_64.tar.gz + bin: glow_{{ version | strip_prefix "v" }}_Darwin_x86_64/glow + share: + man: glow_{{ version | strip_prefix "v" }}_Darwin_x86_64/manpages/glow.1.gz + completions: glow_{{ version | strip_prefix "v" }}_Darwin_x86_64/completions/ + - target: linux_x64_openbsd - file: glow_Openbsd_x86_64.tar.gz - bin: glow + file: glow_{{ version | strip_prefix "v" }}_Openbsd_x86_64.tar.gz + bin: glow_{{ version | strip_prefix "v" }}_Openbsd_x86_64/glow + share: + man: glow_{{ version | strip_prefix "v" }}_Openbsd_x86_64/manpages/glow.1.gz + completions: glow_{{ version | strip_prefix "v" }}_Openbsd_x86_64/completions/ + - target: linux_arm64_openbsd - file: glow_Openbsd_arm64.tar.gz - bin: glow + file: glow_{{ version | strip_prefix "v" }}_Openbsd_arm64.tar.gz + bin: glow_{{ version | strip_prefix "v" }}_Openbsd_arm64/glow + share: + man: glow_{{ version | strip_prefix "v" }}_Openbsd_arm64/manpages/glow.1.gz + completions: glow_{{ version | strip_prefix "v" }}_Openbsd_arm64/completions/ + - target: linux_arm64 - file: glow_Linux_arm64.tar.gz - bin: glow + file: glow_{{ version | strip_prefix "v" }}_Linux_arm64.tar.gz + bin: glow_{{ version | strip_prefix "v" }}_Linux_arm64/glow + share: + man: glow_{{ version | strip_prefix "v" }}_Linux_arm64/manpages/glow.1.gz + completions: glow_{{ version | strip_prefix "v" }}_Linux_arm64/completions/ + - target: linux_x64 - file: glow_Linux_x86_64.tar.gz - bin: glow + file: glow_{{ version | strip_prefix "v" }}_Linux_x86_64.tar.gz + bin: glow_{{ version | strip_prefix "v" }}_Linux_x86_64/glow + share: + man: glow_{{ version | strip_prefix "v" }}_Linux_x86_64/manpages/glow.1.gz + completions: glow_{{ version | strip_prefix "v" }}_Linux_x86_64/completions/ + - target: win_x86 - file: glow_Windows_i386.zip - bin: glow.exe + file: glow_{{ version | strip_prefix "v" }}_Windows_i386.zip + bin: glow_{{ version | strip_prefix "v" }}_Windows_i386/glow.exe + share: + man: glow_{{ version | strip_prefix "v" }}_Windows_i386/manpages/glow.1.gz + completions: glow_{{ version | strip_prefix "v" }}_Windows_i386/completions/ + - target: win_x64 - file: glow_Windows_x86_64.zip - bin: glow.exe + file: glow_{{ version | strip_prefix "v" }}_Windows_x86_64.zip + bin: glow_{{ version | strip_prefix "v" }}_Windows_x86_64/glow.exe + share: + man: glow_{{ version | strip_prefix "v" }}_Windows_x86_64/manpages/glow.1.gz + completions: glow_{{ version | strip_prefix "v" }}_Windows_x86_64/completions/ + + version_overrides: + - constraint: semver:<=v1.5.1 + id: pkg:github/charmbracelet/glow@v1.5.1 + asset: + - target: darwin_arm64 + file: glow_Darwin_arm64.tar.gz + bin: glow + share: + man: manpages/glow.1.gz + completions: completions/ + + - target: darwin_x64 + file: glow_Darwin_x86_64.tar.gz + bin: glow + share: + man: manpages/glow.1.gz + completions: completions/ + + - target: linux_x64_openbsd + file: glow_Openbsd_x86_64.tar.gz + bin: glow + share: + man: manpages/glow.1.gz + completions: completions/ + + - target: linux_arm64_openbsd + file: glow_Openbsd_arm64.tar.gz + bin: glow + share: + man: manpages/glow.1.gz + completions: completions/ + + - target: linux_arm64 + file: glow_Linux_arm64.tar.gz + bin: glow + share: + man: manpages/glow.1.gz + completions: completions/ + + - target: linux_x64 + file: glow_Linux_x86_64.tar.gz + bin: glow + share: + man: manpages/glow.1.gz + completions: completions/ + + - target: win_x86 + file: glow_Windows_i386.zip + bin: glow.exe + share: + man: manpages/glow.1.gz + completions: completions/ + + - target: win_x64 + file: glow_Windows_x86_64.zip + bin: glow.exe + share: + man: manpages/glow.1.gz + completions: completions/ bin: - glow: "{{source.asset.bin}}" + glow: "{{ source.asset.bin }}" + +share: + man/man1/glow.1.gz: "{{ source.asset.share.man }}" + bash_completions.d/glow.bash: "{{ source.asset.share.completions }}glow.bash" + fish-completions/glow.fish: "{{ source.asset.share.completions }}glow.fish" + zsh-completions/glow.fish: "{{ source.asset.share.completions }}glow.zsh" diff --git a/packages/glsl_analyzer/package.yaml b/packages/glsl_analyzer/package.yaml index 7c0ce1a524..1047069c52 100644 --- a/packages/glsl_analyzer/package.yaml +++ b/packages/glsl_analyzer/package.yaml @@ -11,7 +11,7 @@ categories: - LSP source: - id: pkg:github/nolanderc/glsl_analyzer@v1.4.5 + id: pkg:github/nolanderc/glsl_analyzer@v1.5.1 asset: - target: darwin_x64 file: x86_64-macos.zip diff --git a/packages/go-debug-adapter/package.yaml b/packages/go-debug-adapter/package.yaml index 51bfe9d4cb..ee0e6964dd 100644 --- a/packages/go-debug-adapter/package.yaml +++ b/packages/go-debug-adapter/package.yaml @@ -10,7 +10,7 @@ categories: - DAP source: - id: pkg:github/golang/vscode-go@v0.41.4 + id: pkg:github/golang/vscode-go@v0.44.0 asset: file: go-{{ version | strip_prefix "v" }}.vsix diff --git a/packages/gofumpt/package.yaml b/packages/gofumpt/package.yaml index 6aa323b852..197ee40ac2 100644 --- a/packages/gofumpt/package.yaml +++ b/packages/gofumpt/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:golang/mvdan.cc/gofumpt@v0.6.0 + id: pkg:golang/mvdan.cc/gofumpt@v0.7.0 bin: gofumpt: golang:gofumpt diff --git a/packages/goimports-reviser/package.yaml b/packages/goimports-reviser/package.yaml index 52d49fba10..47035f6b48 100644 --- a/packages/goimports-reviser/package.yaml +++ b/packages/goimports-reviser/package.yaml @@ -13,7 +13,7 @@ categories: - Formatter source: - id: pkg:github/incu6us/goimports-reviser@v3.6.5 + id: pkg:github/incu6us/goimports-reviser@v3.8.2 asset: - target: darwin_x64 file: goimports-reviser_{{ version | strip_prefix "v" }}_darwin_amd64.tar.gz diff --git a/packages/goimports/package.yaml b/packages/goimports/package.yaml index 65e89e26e4..159cf81826 100644 --- a/packages/goimports/package.yaml +++ b/packages/goimports/package.yaml @@ -12,7 +12,7 @@ categories: - Formatter source: - id: pkg:golang/golang.org/x/tools@v0.21.0#cmd/goimports + id: pkg:golang/golang.org/x/tools@v0.28.0#cmd/goimports bin: goimports: golang:goimports diff --git a/packages/golangci-lint/package.yaml b/packages/golangci-lint/package.yaml index a399f49c10..9a3ea102cd 100644 --- a/packages/golangci-lint/package.yaml +++ b/packages/golangci-lint/package.yaml @@ -12,7 +12,7 @@ categories: - Linter source: - id: pkg:github/golangci/golangci-lint@v1.59.0 + id: pkg:github/golangci/golangci-lint@v1.62.2 asset: - target: linux_armv6l file: golangci-lint-{{ version | strip_prefix "v" }}-linux-armv6.tar.gz diff --git a/packages/gomodifytags/package.yaml b/packages/gomodifytags/package.yaml index b6dbca4d5d..4299753d85 100644 --- a/packages/gomodifytags/package.yaml +++ b/packages/gomodifytags/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:golang/github.com/fatih/gomodifytags@v1.16.0 + id: pkg:golang/github.com/fatih/gomodifytags@v1.17.0 bin: gomodifytags: golang:gomodifytags diff --git a/packages/google-java-format/package.yaml b/packages/google-java-format/package.yaml index a502ef0c43..e26741f4ba 100644 --- a/packages/google-java-format/package.yaml +++ b/packages/google-java-format/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:github/google/google-java-format@v1.22.0 + id: pkg:github/google/google-java-format@v1.25.2 asset: file: google-java-format-{{ version | strip_prefix "v" }}-all-deps.jar diff --git a/packages/gopls/package.yaml b/packages/gopls/package.yaml index d9752d057c..70f99cab69 100644 --- a/packages/gopls/package.yaml +++ b/packages/gopls/package.yaml @@ -12,7 +12,7 @@ categories: - LSP source: - id: pkg:golang/golang.org/x/tools/gopls@v0.15.3 + id: pkg:golang/golang.org/x/tools/gopls@v0.17.0 bin: gopls: golang:gopls diff --git a/packages/gospel/package.yaml b/packages/gospel/package.yaml index 4cf700c290..084419eb0b 100644 --- a/packages/gospel/package.yaml +++ b/packages/gospel/package.yaml @@ -10,7 +10,7 @@ categories: - Linter source: - id: pkg:golang/github.com/kortschak/gospel@v1.14.0 + id: pkg:golang/github.com/kortschak/gospel@v1.15.0 bin: gospel: golang:gospel diff --git a/packages/gradle-language-server/package.yaml b/packages/gradle-language-server/package.yaml index 3c45a67d63..4cbded8e88 100644 --- a/packages/gradle-language-server/package.yaml +++ b/packages/gradle-language-server/package.yaml @@ -10,8 +10,8 @@ categories: - LSP source: - id: pkg:github/microsoft/vscode-gradle@3.12.7 - asset: + id: pkg:openvsx/vscjava/vscode-gradle@3.15.0 + download: file: vscjava.vscode-gradle-{{version}}.vsix bin: diff --git a/packages/graphql-language-service-cli/package.yaml b/packages/graphql-language-service-cli/package.yaml index 30f3ae3de6..d6d2f526d5 100644 --- a/packages/graphql-language-service-cli/package.yaml +++ b/packages/graphql-language-service-cli/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/graphql-language-service-cli@3.3.33 + id: pkg:npm/graphql-language-service-cli@3.5.0 bin: graphql-lsp: npm:graphql-lsp diff --git a/packages/groovy-language-server/package.yaml b/packages/groovy-language-server/package.yaml index 95baf1ed2c..008c789645 100644 --- a/packages/groovy-language-server/package.yaml +++ b/packages/groovy-language-server/package.yaml @@ -11,7 +11,7 @@ categories: source: # renovate:datasource=git-refs - id: pkg:github/GroovyLanguageServer/groovy-language-server@4866a3f2c180f628405b1e4efbde0949a1418c10 + id: pkg:github/GroovyLanguageServer/groovy-language-server@0c40ec136525b592f1d798bb52ced9d8d2d7945c build: run: ./gradlew --no-daemon build diff --git a/packages/haml-lint/package.yaml b/packages/haml-lint/package.yaml index cb7493dc07..5682306bed 100644 --- a/packages/haml-lint/package.yaml +++ b/packages/haml-lint/package.yaml @@ -12,7 +12,7 @@ categories: - Linter source: - id: pkg:gem/haml_lint@0.58.0 + id: pkg:gem/haml_lint@0.59.0 bin: haml-lint: gem:haml-lint diff --git a/packages/harper-ls/package.yaml b/packages/harper-ls/package.yaml index 5c18ff4d7d..e01dca4eda 100644 --- a/packages/harper-ls/package.yaml +++ b/packages/harper-ls/package.yaml @@ -17,11 +17,12 @@ languages: - C# - TOML - Lua + - Java categories: - LSP source: - id: pkg:github/elijah-potter/harper@v0.8.4 + id: pkg:github/elijah-potter/harper@v0.12.0 asset: - target: linux_x64_gnu file: harper-ls-x86_64-unknown-linux-gnu.tar.gz @@ -36,7 +37,7 @@ source: file: harper-ls-aarch64-apple-darwin.tar.gz bin: harper-ls - target: win_x64 - file: harper-ls-x86_64-pc-windows-gnu.zip + file: harper-ls-x86_64-pc-windows-msvc.zip bin: harper-ls.exe bin: diff --git a/packages/haskell-language-server/package.yaml b/packages/haskell-language-server/package.yaml index c2739ad568..56214eae8d 100644 --- a/packages/haskell-language-server/package.yaml +++ b/packages/haskell-language-server/package.yaml @@ -11,7 +11,7 @@ categories: source: # renovate:datasource=github-releases - id: pkg:generic/haskell/haskell-language-server@2.7.0.0 + id: pkg:generic/haskell/haskell-language-server@2.9.0.1 build: - target: unix run: ghcup install hls "$VERSION" -i "$PWD" @@ -22,8 +22,9 @@ source: wrapper: bin/haskell-language-server-wrapper server_9_2_8: bin/haskell-language-server-9.2.8 server_9_4_8: bin/haskell-language-server-9.4.8 - server_9_6_4: bin/haskell-language-server-9.6.4 + server_9_6_6: bin/haskell-language-server-9.6.6 server_9_8_2: bin/haskell-language-server-9.8.2 + server_9_10_1: bin/haskell-language-server-9.10.1 - target: win run: ghcup install hls $env:VERSION -i ($pwd).path @@ -34,13 +35,15 @@ source: wrapper: haskell-language-server-wrapper.exe server_9_2_8: haskell-language-server-9.2.8.exe server_9_4_8: haskell-language-server-9.4.8.exe - server_9_6_4: haskell-language-server-9.6.4.exe + server_9_6_6: haskell-language-server-9.6.6.exe server_9_8_2: haskell-language-server-9.8.2.exe + server_9_10_1: haskell-language-server-9.10.1.exe bin: haskell-language-server-wrapper: "{{source.build.bin.wrapper}}" # https://github.com/haskell/haskell-language-server/issues/3162 haskell-language-server-9.2.8: "{{source.build.bin.server_9_2_8}}" haskell-language-server-9.4.8: "{{source.build.bin.server_9_4_8}}" - haskell-language-server-9.6.4: "{{source.build.bin.server_9_6_4}}" + haskell-language-server-9.6.6: "{{source.build.bin.server_9_6_6}}" haskell-language-server-9.8.2: "{{source.build.bin.server_9_8_2}}" + haskell-language-server-9.10.1: "{{source.build.bin.server_9_10_1}}" diff --git a/packages/hclfmt/package.yaml b/packages/hclfmt/package.yaml index f4aec24e6c..f04acb3937 100644 --- a/packages/hclfmt/package.yaml +++ b/packages/hclfmt/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:golang/github.com/hashicorp/hcl/v2@v2.20.1#cmd/hclfmt + id: pkg:golang/github.com/hashicorp/hcl/v2@v2.23.0#cmd/hclfmt bin: hclfmt: golang:hclfmt diff --git a/packages/helm-ls/package.yaml b/packages/helm-ls/package.yaml index dfd6c598f4..30b8eb0746 100644 --- a/packages/helm-ls/package.yaml +++ b/packages/helm-ls/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/mrjosh/helm-ls@v0.0.17 + id: pkg:github/mrjosh/helm-ls@v0.1.0 asset: - target: darwin_x64 file: helm_ls_darwin_amd64 diff --git a/packages/hyprls/package.yaml b/packages/hyprls/package.yaml new file mode 100644 index 0000000000..71a4d48579 --- /dev/null +++ b/packages/hyprls/package.yaml @@ -0,0 +1,16 @@ +--- +name: hyprls +description: A LSP server for Hyprland config files +homepage: https://github.com/hyprland-community/hyprls +licenses: + - MIT +languages: + - Hypr +categories: + - LSP + +source: + id: pkg:golang/github.com/ewen-lbh/hyprls@v0.3.0#cmd/hyprls + +bin: + hyprls: golang:hyprls diff --git a/packages/iferr/package.yaml b/packages/iferr/package.yaml index 5baea1d5cb..63f2ec11a5 100644 --- a/packages/iferr/package.yaml +++ b/packages/iferr/package.yaml @@ -9,7 +9,7 @@ languages: categories: [] source: - id: pkg:golang/github.com/koron/iferr@v0.0.0-20180615142939-bb332a3b1d91 + id: pkg:golang/github.com/koron/iferr@v0.0.0-20240122035601-9c3e2fbe4bd1 bin: iferr: golang:iferr diff --git a/packages/impl/package.yaml b/packages/impl/package.yaml index 9dc87fe754..e78ed287c3 100644 --- a/packages/impl/package.yaml +++ b/packages/impl/package.yaml @@ -9,7 +9,7 @@ languages: categories: [] source: - id: pkg:golang/github.com/josharian/impl@v1.3.0 + id: pkg:golang/github.com/josharian/impl@v1.4.0 bin: impl: golang:impl diff --git a/packages/intelephense/package.yaml b/packages/intelephense/package.yaml index 9cc53a0d07..a4c386e1b0 100644 --- a/packages/intelephense/package.yaml +++ b/packages/intelephense/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/intelephense@1.10.4 + id: pkg:npm/intelephense@1.12.6 schemas: lsp: vscode:https://raw.githubusercontent.com/bmewburn/vscode-intelephense/master/package.json diff --git a/packages/java-debug-adapter/package.yaml b/packages/java-debug-adapter/package.yaml index 0a32f51e06..5938b8d53a 100644 --- a/packages/java-debug-adapter/package.yaml +++ b/packages/java-debug-adapter/package.yaml @@ -10,10 +10,10 @@ categories: - DAP source: - id: pkg:openvsx/vscjava/vscode-java-debug@0.55.0 + id: pkg:openvsx/vscjava/vscode-java-debug@0.58.0 download: file: vscjava.vscode-java-debug-{{version}}.vsix share: java-debug-adapter/: extension/server/ - java-debug-adapter/com.microsoft.java.debug.plugin.jar: extension/server/com.microsoft.java.debug.plugin-0.50.0.jar + java-debug-adapter/com.microsoft.java.debug.plugin.jar: extension/server/com.microsoft.java.debug.plugin-0.53.0.jar diff --git a/packages/java-test/package.yaml b/packages/java-test/package.yaml index 564610bf09..d64b49b87f 100644 --- a/packages/java-test/package.yaml +++ b/packages/java-test/package.yaml @@ -21,7 +21,7 @@ categories: - DAP source: - id: pkg:openvsx/vscjava/vscode-java-test@0.40.1 + id: pkg:openvsx/vscjava/vscode-java-test@0.41.1 download: file: vscjava.vscode-java-test-{{version}}.vsix diff --git a/packages/jdtls/package.yaml b/packages/jdtls/package.yaml index 0bf39d18c6..b7d535d49b 100644 --- a/packages/jdtls/package.yaml +++ b/packages/jdtls/package.yaml @@ -11,21 +11,21 @@ categories: source: # renovate:datasource=github-tags - id: pkg:generic/eclipse/eclipse.jdt.ls@v1.35.0 + id: pkg:generic/eclipse/eclipse.jdt.ls@v1.43.0 download: - target: [darwin_x64, darwin_arm64] files: - jdtls.tar.gz: https://download.eclipse.org/jdtls/milestones/{{ version | strip_prefix "v" }}/jdt-language-server-{{ version | strip_prefix "v" }}-202404251256.tar.gz + jdtls.tar.gz: https://download.eclipse.org/jdtls/milestones/{{ version | strip_prefix "v" }}/jdt-language-server-{{ version | strip_prefix "v" }}-202412191447.tar.gz lombok.jar: https://projectlombok.org/downloads/lombok.jar config: config_mac/ - target: linux files: - jdtls.tar.gz: https://download.eclipse.org/jdtls/milestones/{{ version | strip_prefix "v" }}/jdt-language-server-{{ version | strip_prefix "v" }}-202404251256.tar.gz + jdtls.tar.gz: https://download.eclipse.org/jdtls/milestones/{{ version | strip_prefix "v" }}/jdt-language-server-{{ version | strip_prefix "v" }}-202412191447.tar.gz lombok.jar: https://projectlombok.org/downloads/lombok.jar config: config_linux/ - target: win files: - jdtls.tar.gz: https://download.eclipse.org/jdtls/milestones/{{ version | strip_prefix "v" }}/jdt-language-server-{{ version | strip_prefix "v" }}-202404251256.tar.gz + jdtls.tar.gz: https://download.eclipse.org/jdtls/milestones/{{ version | strip_prefix "v" }}/jdt-language-server-{{ version | strip_prefix "v" }}-202412191447.tar.gz lombok.jar: https://projectlombok.org/downloads/lombok.jar config: config_win/ @@ -38,5 +38,5 @@ bin: share: jdtls/lombok.jar: lombok.jar jdtls/plugins/: plugins/ - jdtls/plugins/org.eclipse.equinox.launcher.jar: plugins/org.eclipse.equinox.launcher_1.6.800.v20240330-1250.jar + jdtls/plugins/org.eclipse.equinox.launcher.jar: plugins/org.eclipse.equinox.launcher_1.6.900.v20240613-2009.jar jdtls/config/: "{{source.download.config}}" diff --git a/packages/jedi-language-server/package.yaml b/packages/jedi-language-server/package.yaml index 415bab8af1..0411fc45b7 100644 --- a/packages/jedi-language-server/package.yaml +++ b/packages/jedi-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:pypi/jedi-language-server@0.41.4 + id: pkg:pypi/jedi-language-server@0.42.0 bin: jedi-language-server: pypi:jedi-language-server diff --git a/packages/jinja-lsp/package.yaml b/packages/jinja-lsp/package.yaml index ed4731b315..a69002514c 100644 --- a/packages/jinja-lsp/package.yaml +++ b/packages/jinja-lsp/package.yaml @@ -16,7 +16,7 @@ categories: - Compiler source: - id: pkg:cargo/jinja-lsp@0.1.80 + id: pkg:cargo/jinja-lsp@0.1.84 bin: jinja-lsp: cargo:jinja-lsp diff --git a/packages/joker/package.yaml b/packages/joker/package.yaml index 4cf9bfa245..226f2225dd 100644 --- a/packages/joker/package.yaml +++ b/packages/joker/package.yaml @@ -12,7 +12,7 @@ categories: - Linter source: - id: pkg:github/candid82/joker@v1.3.5 + id: pkg:github/candid82/joker@v1.4.0 asset: - target: [darwin_x64, darwin_arm64] file: joker-mac-amd64.zip diff --git a/packages/jq-lsp/package.yaml b/packages/jq-lsp/package.yaml index fb01ac648e..3ea1021adb 100644 --- a/packages/jq-lsp/package.yaml +++ b/packages/jq-lsp/package.yaml @@ -12,7 +12,7 @@ categories: - LSP source: - id: pkg:golang/github.com/wader/jq-lsp@v0.1.3 + id: pkg:golang/github.com/wader/jq-lsp@v0.1.11 bin: jq-lsp: golang:jq-lsp diff --git a/packages/js-debug-adapter/package.yaml b/packages/js-debug-adapter/package.yaml index 7af09f6667..b900a754b8 100644 --- a/packages/js-debug-adapter/package.yaml +++ b/packages/js-debug-adapter/package.yaml @@ -11,7 +11,7 @@ categories: - DAP source: - id: pkg:github/microsoft/vscode-js-debug@v1.90.0 + id: pkg:github/microsoft/vscode-js-debug@v1.96.0 asset: file: js-debug-dap-{{version}}.tar.gz bin: node:js-debug/src/dapDebugServer.js diff --git a/packages/json-to-struct/package.yaml b/packages/json-to-struct/package.yaml index f7de84369a..bf9b939522 100644 --- a/packages/json-to-struct/package.yaml +++ b/packages/json-to-struct/package.yaml @@ -9,7 +9,7 @@ languages: categories: [] source: - id: pkg:golang/github.com/tmc/json-to-struct@v0.0.0-20200606071124-5576f9d7d291 + id: pkg:golang/github.com/tmc/json-to-struct@v0.0.0-20230613234638-1f65fffbfdbb bin: json-to-struct: golang:json-to-struct diff --git a/packages/jsonnet-language-server/package.yaml b/packages/jsonnet-language-server/package.yaml index 8ccf879724..59600ecd07 100644 --- a/packages/jsonnet-language-server/package.yaml +++ b/packages/jsonnet-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:golang/github.com/grafana/jsonnet-language-server@v0.13.1 + id: pkg:golang/github.com/grafana/jsonnet-language-server@v0.14.1 bin: jsonnet-language-server: golang:jsonnet-language-server diff --git a/packages/julia-lsp/package.yaml b/packages/julia-lsp/package.yaml index 3afd5db53f..210bc41d7b 100644 --- a/packages/julia-lsp/package.yaml +++ b/packages/julia-lsp/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/mason-org/julia-lsp@v1.79.2 + id: pkg:github/mason-org/julia-lsp@v1.127.2 asset: - target: unix file: julia-lsp-{{version}}.zip:libexec/ diff --git a/packages/jupytext/package.yaml b/packages/jupytext/package.yaml index 3983af5239..029853464c 100644 --- a/packages/jupytext/package.yaml +++ b/packages/jupytext/package.yaml @@ -13,7 +13,7 @@ categories: - Formatter source: - id: pkg:pypi/jupytext@1.16.2 + id: pkg:pypi/jupytext@1.16.6 bin: jupytext: pypi:jupytext diff --git a/packages/kcl/package.yaml b/packages/kcl/package.yaml index 8132020451..9df89517a2 100644 --- a/packages/kcl/package.yaml +++ b/packages/kcl/package.yaml @@ -15,7 +15,7 @@ categories: - Linter source: - id: pkg:github/kcl-lang/kcl@v0.8.7 + id: pkg:github/kcl-lang/kcl@v0.11.0 asset: - target: darwin_x64 file: kclvm-{{version}}-darwin-amd64.tar.gz diff --git a/packages/kotlin-language-server/package.yaml b/packages/kotlin-language-server/package.yaml index 2e902ad1cd..6debf5dbad 100644 --- a/packages/kotlin-language-server/package.yaml +++ b/packages/kotlin-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/fwcd/kotlin-language-server@1.3.9 + id: pkg:github/fwcd/kotlin-language-server@1.3.12 asset: - target: unix file: server.zip diff --git a/packages/ktfmt/package.yaml b/packages/ktfmt/package.yaml index 6261bfbcaf..84cbae26f4 100644 --- a/packages/ktfmt/package.yaml +++ b/packages/ktfmt/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:github/facebook/ktfmt@v0.49 + id: pkg:github/facebook/ktfmt@v0.53 asset: file: ktfmt-{{ version | strip_prefix "v" }}-jar-with-dependencies.jar diff --git a/packages/ktlint/package.yaml b/packages/ktlint/package.yaml index 1c357e9c68..1236104647 100644 --- a/packages/ktlint/package.yaml +++ b/packages/ktlint/package.yaml @@ -11,7 +11,7 @@ categories: - Linter source: - id: pkg:github/pinterest/ktlint@1.2.1 + id: pkg:github/pinterest/ktlint@1.5.0 asset: - target: unix file: ktlint diff --git a/packages/latexindent/package.yaml b/packages/latexindent/package.yaml index 439aac2b90..ef67378b13 100644 --- a/packages/latexindent/package.yaml +++ b/packages/latexindent/package.yaml @@ -12,7 +12,7 @@ categories: - Formatter source: - id: pkg:github/cmhughes/latexindent.pl@V3.23.4 + id: pkg:github/cmhughes/latexindent.pl@V3.24.4 asset: - target: [darwin_x64, darwin_arm64] file: latexindent-macos diff --git a/packages/lelwel/package.yaml b/packages/lelwel/package.yaml index 1be3c7606e..50d92cc85b 100644 --- a/packages/lelwel/package.yaml +++ b/packages/lelwel/package.yaml @@ -11,7 +11,7 @@ categories: - LSP source: - id: pkg:cargo/lelwel@0.6.0?features=lsp,cli + id: pkg:cargo/lelwel@0.6.4?features=lsp,cli bin: lelwel-ls: cargo:lelwel-ls diff --git a/packages/lemminx/package.yaml b/packages/lemminx/package.yaml index a2c8ff1fa2..150c7fdc12 100644 --- a/packages/lemminx/package.yaml +++ b/packages/lemminx/package.yaml @@ -10,11 +10,14 @@ categories: - LSP source: - id: pkg:github/redhat-developer/vscode-xml@0.27.0 + id: pkg:github/redhat-developer/vscode-xml@0.27.2 asset: - - target: [darwin_x64, darwin_arm64] + - target: darwin_x64 file: lemminx-osx-x86_64.zip bin: lemminx-osx-x86_64 + - target: darwin_arm64 + file: lemminx-osx-aarch_64.zip + bin: lemminx-osx-aarch_64 - target: linux_x64_gnu file: lemminx-linux.zip bin: lemminx-linux diff --git a/packages/lexical/package.yaml b/packages/lexical/package.yaml index 962d3183bd..139bb7fad3 100644 --- a/packages/lexical/package.yaml +++ b/packages/lexical/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/lexical-lsp/lexical@v0.6.1 + id: pkg:github/lexical-lsp/lexical@v0.7.1 asset: - target: unix file: lexical-{{version}}.zip:libexec/ diff --git a/packages/lua-language-server/package.yaml b/packages/lua-language-server/package.yaml index 70b72cbb90..99a233509b 100644 --- a/packages/lua-language-server/package.yaml +++ b/packages/lua-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/LuaLS/lua-language-server@3.9.1 + id: pkg:github/LuaLS/lua-language-server@3.13.4 asset: - target: darwin_arm64 file: lua-language-server-{{version}}-darwin-arm64.tar.gz:libexec/ diff --git a/packages/luau-lsp/package.yaml b/packages/luau-lsp/package.yaml index 28c94a7ebc..6917e74f78 100644 --- a/packages/luau-lsp/package.yaml +++ b/packages/luau-lsp/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/JohnnyMorganz/luau-lsp@1.29.1 + id: pkg:github/JohnnyMorganz/luau-lsp@1.37.0 asset: - target: [darwin_arm64, darwin_x64] file: luau-lsp-macos.zip diff --git a/packages/lwc-language-server/package.yaml b/packages/lwc-language-server/package.yaml index c5117a1372..c03fcf0d49 100644 --- a/packages/lwc-language-server/package.yaml +++ b/packages/lwc-language-server/package.yaml @@ -11,7 +11,7 @@ categories: - LSP source: - id: pkg:npm/%40salesforce/lwc-language-server@4.8.0 + id: pkg:npm/%40salesforce/lwc-language-server@4.12.2 bin: lwc-language-server: npm:lwc-language-server diff --git a/packages/m68k-lsp-server/package.yaml b/packages/m68k-lsp-server/package.yaml index c484a0777d..4cf4ef3839 100644 --- a/packages/m68k-lsp-server/package.yaml +++ b/packages/m68k-lsp-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/m68k-lsp-server@0.9.1 + id: pkg:npm/m68k-lsp-server@0.11.2 bin: m68k-lsp-server: npm:m68k-lsp-server diff --git a/packages/markdown-oxide/package.yaml b/packages/markdown-oxide/package.yaml index 585865bc05..bc20b4fc2b 100644 --- a/packages/markdown-oxide/package.yaml +++ b/packages/markdown-oxide/package.yaml @@ -12,7 +12,7 @@ categories: - LSP source: - id: pkg:github/feel-ix-343/markdown-oxide@v0.0.21 + id: pkg:github/feel-ix-343/markdown-oxide@v0.25.0 asset: - target: darwin_x64 file: markdown-oxide-{{version}}-x86_64-apple-darwin.tar.gz diff --git a/packages/markdownlint-cli2/package.yaml b/packages/markdownlint-cli2/package.yaml index 83d38f3df4..e81b40248d 100644 --- a/packages/markdownlint-cli2/package.yaml +++ b/packages/markdownlint-cli2/package.yaml @@ -11,7 +11,7 @@ categories: - Formatter source: - id: pkg:npm/markdownlint-cli2@0.13.0 + id: pkg:npm/markdownlint-cli2@0.16.0 bin: markdownlint-cli2: npm:markdownlint-cli2 diff --git a/packages/markdownlint/package.yaml b/packages/markdownlint/package.yaml index c7e79b6faf..3f9d30585e 100644 --- a/packages/markdownlint/package.yaml +++ b/packages/markdownlint/package.yaml @@ -11,7 +11,7 @@ categories: - Formatter source: - id: pkg:npm/markdownlint-cli@0.41.0 + id: pkg:npm/markdownlint-cli@0.43.0 bin: markdownlint: npm:markdownlint diff --git a/packages/markmap-cli/package.yaml b/packages/markmap-cli/package.yaml index 9d34c0cf24..88d97b5e5e 100644 --- a/packages/markmap-cli/package.yaml +++ b/packages/markmap-cli/package.yaml @@ -9,7 +9,7 @@ languages: categories: [] source: - id: pkg:npm/markmap-cli@0.17.0 + id: pkg:npm/markmap-cli@0.18.0 bin: markmap: npm:markmap diff --git a/packages/marksman/package.yaml b/packages/marksman/package.yaml index 8fb6833079..3b8db9827a 100644 --- a/packages/marksman/package.yaml +++ b/packages/marksman/package.yaml @@ -11,7 +11,7 @@ categories: source: # renovate:versioning=loose - id: pkg:github/artempyanykh/marksman@2023-12-09 + id: pkg:github/artempyanykh/marksman@2024-12-18 asset: - target: [darwin_x64, darwin_arm64] file: marksman-macos diff --git a/packages/markuplint/package.yaml b/packages/markuplint/package.yaml index 10c7623ce8..3b54c72829 100644 --- a/packages/markuplint/package.yaml +++ b/packages/markuplint/package.yaml @@ -10,7 +10,7 @@ categories: - Linter source: - id: pkg:npm/markuplint@4.9.0 + id: pkg:npm/markuplint@4.11.4 bin: markuplint: npm:markuplint diff --git a/packages/matlab-language-server/package.yaml b/packages/matlab-language-server/package.yaml index 095f411a6b..08d1736fa1 100644 --- a/packages/matlab-language-server/package.yaml +++ b/packages/matlab-language-server/package.yaml @@ -11,7 +11,7 @@ categories: source: # renovate:datasource=git-refs - id: pkg:github/mathworks/MATLAB-language-server@68c08fdb29873b59bfa41a70a9ee28caa7125097 + id: pkg:github/mathworks/MATLAB-language-server@c7ac9f929e17377d06e17f783123fcea25f83661 build: run: | npm install diff --git a/packages/mdformat/package.yaml b/packages/mdformat/package.yaml index 61e0d3dbe0..4b2156dccb 100644 --- a/packages/mdformat/package.yaml +++ b/packages/mdformat/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:pypi/mdformat@0.7.17 + id: pkg:pypi/mdformat@0.7.21 bin: mdformat: pypi:mdformat diff --git a/packages/mdsf/package.yaml b/packages/mdsf/package.yaml new file mode 100644 index 0000000000..c95d766590 --- /dev/null +++ b/packages/mdsf/package.yaml @@ -0,0 +1,16 @@ +--- +name: mdsf +description: Format markdown code blocks using your favorite code formatters. +homepage: https://github.com/hougesen/mdsf +licenses: + - MIT +languages: + - Markdown +categories: + - Formatter + +source: + id: pkg:cargo/mdsf@0.3.2 + +bin: + mdsf: cargo:mdsf diff --git a/packages/mdslw/package.yaml b/packages/mdslw/package.yaml index d5f6804557..209bc023ce 100644 --- a/packages/mdslw/package.yaml +++ b/packages/mdslw/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:github/razziel89/mdslw@0.8.0 + id: pkg:github/razziel89/mdslw@0.12.4 asset: - target: [darwin_arm64, darwin_x64] file: mdslw_x86_64-apple-darwin diff --git a/packages/mdx-analyzer/package.yaml b/packages/mdx-analyzer/package.yaml index d7488b54ed..eb2a80c74e 100644 --- a/packages/mdx-analyzer/package.yaml +++ b/packages/mdx-analyzer/package.yaml @@ -12,7 +12,7 @@ categories: - LSP source: - id: pkg:npm/%40mdx-js/language-server@0.4.7 + id: pkg:npm/%40mdx-js/language-server@0.5.0 bin: mdx-language-server: npm:mdx-language-server diff --git a/packages/mesonlsp/package.yaml b/packages/mesonlsp/package.yaml index 2ebfb02c7e..e6ba3897cd 100644 --- a/packages/mesonlsp/package.yaml +++ b/packages/mesonlsp/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/JCWasmx86/mesonlsp@v4.2.2 + id: pkg:github/JCWasmx86/mesonlsp@v4.3.7 asset: - target: linux_x64 file: mesonlsp-x86_64-unknown-linux-musl.zip diff --git a/packages/metamath-zero-lsp/package.yaml b/packages/metamath-zero-lsp/package.yaml index 710e8206c8..f6fc8ca7ee 100644 --- a/packages/metamath-zero-lsp/package.yaml +++ b/packages/metamath-zero-lsp/package.yaml @@ -11,7 +11,7 @@ categories: source: # renovate:datasource=git-refs - id: pkg:github/digama0/mm0@9b0bbdb579266f1e3d1914cc90286c181c657cf8 + id: pkg:github/digama0/mm0@799b102cfe4e9e142d0039df4f63dbd8b203b4d0 build: - target: unix run: | diff --git a/packages/millet/package.yaml b/packages/millet/package.yaml index 40b0969d49..84182a28fb 100644 --- a/packages/millet/package.yaml +++ b/packages/millet/package.yaml @@ -11,7 +11,7 @@ categories: - LSP source: - id: pkg:github/azdavis/millet@v0.14.4 + id: pkg:github/azdavis/millet@v0.14.7 asset: - target: darwin_arm64 file: millet-ls-aarch64-apple-darwin.gz diff --git a/packages/motoko-lsp/package.yaml b/packages/motoko-lsp/package.yaml index bba53d7227..1493abda70 100644 --- a/packages/motoko-lsp/package.yaml +++ b/packages/motoko-lsp/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:openvsx/dfinity-foundation/vscode-motoko@0.16.3 + id: pkg:openvsx/dfinity-foundation/vscode-motoko@0.16.7 download: file: dfinity-foundation.vscode-motoko-{{version}}.vsix diff --git a/packages/mutt-language-server/package.yaml b/packages/mutt-language-server/package.yaml index bfaf7327ee..d5471e14e6 100644 --- a/packages/mutt-language-server/package.yaml +++ b/packages/mutt-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:pypi/mutt-language-server@0.0.3 + id: pkg:pypi/mutt-language-server@0.0.12 bin: mutt-language-server: pypi:mutt-language-server diff --git a/packages/mypy/package.yaml b/packages/mypy/package.yaml index 5b1b0e9857..b619a7c856 100644 --- a/packages/mypy/package.yaml +++ b/packages/mypy/package.yaml @@ -11,7 +11,7 @@ categories: source: # renovate:versioning=loose - id: pkg:pypi/mypy@1.10.0 + id: pkg:pypi/mypy@1.13.0 bin: mypy: pypi:mypy diff --git a/packages/neocmakelsp/package.yaml b/packages/neocmakelsp/package.yaml index aee5724d26..b070e866a2 100644 --- a/packages/neocmakelsp/package.yaml +++ b/packages/neocmakelsp/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:cargo/neocmakelsp@0.6.26 + id: pkg:cargo/neocmakelsp@0.8.13 bin: neocmakelsp: cargo:neocmakelsp diff --git a/packages/netcoredbg/package.yaml b/packages/netcoredbg/package.yaml index 3bde870c34..00ad69ecae 100644 --- a/packages/netcoredbg/package.yaml +++ b/packages/netcoredbg/package.yaml @@ -13,7 +13,7 @@ categories: source: # renovate:versioning=loose - id: pkg:github/Samsung/netcoredbg@3.1.0-1031 + id: pkg:github/Samsung/netcoredbg@3.1.2-1054 asset: - target: [darwin_arm64, darwin_x64] file: netcoredbg-osx-amd64.tar.gz:libexec/ diff --git a/packages/nextls/package.yaml b/packages/nextls/package.yaml index 62b6fea102..759308da86 100644 --- a/packages/nextls/package.yaml +++ b/packages/nextls/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/elixir-tools/next-ls@v0.22.7 + id: pkg:github/elixir-tools/next-ls@v0.23.2 asset: - target: darwin_x64 file: next_ls_darwin_amd64 diff --git a/packages/nickel-lang-lsp/package.yaml b/packages/nickel-lang-lsp/package.yaml index a729561684..3ed2132035 100644 --- a/packages/nickel-lang-lsp/package.yaml +++ b/packages/nickel-lang-lsp/package.yaml @@ -12,7 +12,7 @@ categories: - LSP source: - id: pkg:cargo/nickel-lang-lsp@1.6.0 + id: pkg:cargo/nickel-lang-lsp@1.9.1 schemas: lsp: vscode:https://raw.githubusercontent.com/tweag/nickel/{{version}}/lsp/vscode-extension/package.json diff --git a/packages/nil/package.yaml b/packages/nil/package.yaml index a03549879f..a322850472 100644 --- a/packages/nil/package.yaml +++ b/packages/nil/package.yaml @@ -12,7 +12,7 @@ categories: source: # renovate:versioning=loose - id: pkg:cargo/nil@2023-08-09?repository_url=https://github.com/oxalica/nil + id: pkg:cargo/nil@2024-08-06?repository_url=https://github.com/oxalica/nil bin: nil: cargo:nil diff --git a/packages/nilaway/package.yaml b/packages/nilaway/package.yaml index 38e1f51f50..2c42445880 100644 --- a/packages/nilaway/package.yaml +++ b/packages/nilaway/package.yaml @@ -14,7 +14,9 @@ categories: - Linter source: - id: pkg:golang/go.uber.org/nilaway@v0.0.0-20231117175943-a267567c6fff#cmd/nilaway + id: pkg:golang/go.uber.org/nilaway@v0.0.0-20241010202415-ba14292918d8#cmd/nilaway bin: nilaway: golang:nilaway + +ci_skip: true diff --git a/packages/nimlangserver/package.yaml b/packages/nimlangserver/package.yaml index f3e4ff7902..677196db2b 100644 --- a/packages/nimlangserver/package.yaml +++ b/packages/nimlangserver/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/nim-lang/langserver@v1.2.0 + id: pkg:github/nim-lang/langserver@v1.6.0 asset: - target: linux_x64 file: nimlangserver-{{ version | strip_prefix "v" }}-linux-amd64.tar.gz diff --git a/packages/nomicfoundation-solidity-language-server/package.yaml b/packages/nomicfoundation-solidity-language-server/package.yaml index 4e2c799aa2..ff159269ba 100644 --- a/packages/nomicfoundation-solidity-language-server/package.yaml +++ b/packages/nomicfoundation-solidity-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/%40nomicfoundation/solidity-language-server@0.8.3 + id: pkg:npm/%40nomicfoundation/solidity-language-server@0.8.7 bin: nomicfoundation-solidity-language-server: npm:nomicfoundation-solidity-language-server diff --git a/packages/npm-groovy-lint/package.yaml b/packages/npm-groovy-lint/package.yaml index 78687e7838..65372b53b0 100644 --- a/packages/npm-groovy-lint/package.yaml +++ b/packages/npm-groovy-lint/package.yaml @@ -11,7 +11,7 @@ categories: - Formatter source: - id: pkg:npm/npm-groovy-lint@14.6.0 + id: pkg:npm/npm-groovy-lint@15.0.2 bin: npm-groovy-lint: npm:npm-groovy-lint diff --git a/packages/ocaml-lsp/package.yaml b/packages/ocaml-lsp/package.yaml index 0affb23eba..4040db5692 100644 --- a/packages/ocaml-lsp/package.yaml +++ b/packages/ocaml-lsp/package.yaml @@ -10,6 +10,6 @@ categories: - LSP source: - id: pkg:opam/ocaml-lsp-server@1.17.0 + id: pkg:opam/ocaml-lsp-server@1.19.0 bin: ocamllsp: opam:ocamllsp diff --git a/packages/ocamlformat/package.yaml b/packages/ocamlformat/package.yaml index 9c0ccc567e..bc3af9ac97 100644 --- a/packages/ocamlformat/package.yaml +++ b/packages/ocamlformat/package.yaml @@ -12,7 +12,7 @@ categories: - Formatter source: - id: pkg:opam/ocamlformat@0.26.1 + id: pkg:opam/ocamlformat@0.26.2 bin: ocamlformat: opam:ocamlformat diff --git a/packages/oelint-adv/package.yaml b/packages/oelint-adv/package.yaml index 4dd42a5eb2..1c00858c55 100644 --- a/packages/oelint-adv/package.yaml +++ b/packages/oelint-adv/package.yaml @@ -10,7 +10,7 @@ categories: - Linter source: - id: pkg:pypi/oelint-adv@5.4.0 + id: pkg:pypi/oelint-adv@6.6.3 bin: oelint-adv: pypi:oelint-adv diff --git a/packages/ols/package.yaml b/packages/ols/package.yaml index 8f8e218189..ca0331389a 100644 --- a/packages/ols/package.yaml +++ b/packages/ols/package.yaml @@ -12,17 +12,20 @@ categories: source: id: pkg:github/DanielGavin/ols@nightly asset: - - target: [darwin_x64, darwin_arm64] - file: ols-x86_64-darwin + - target: darwin_arm64 + file: ols-arm64-darwin.zip + bin: ols-arm64-darwin + - target: darwin_x64 + file: ols-x86_64-darwin.zip bin: ols-x86_64-darwin - target: linux_x64_gnu - file: ols-x86_64-unknown-linux-gnu + file: ols-x86_64-unknown-linux-gnu.zip bin: ols-x86_64-unknown-linux-gnu - target: win_x86 - file: ols-x86_64-pc-windows-msvc.exe + file: ols-x86_64-pc-windows-msvc.zip bin: ols-x86_64-pc-windows-msvc.exe - target: win_x64 - file: ols-x86_64-pc-windows-msvc.exe + file: ols-x86_64-pc-windows-msvc.zip bin: ols-x86_64-pc-windows-msvc.exe bin: diff --git a/packages/omnisharp-mono/package.yaml b/packages/omnisharp-mono/package.yaml index 2a42fc6bd5..2dba9ad7df 100644 --- a/packages/omnisharp-mono/package.yaml +++ b/packages/omnisharp-mono/package.yaml @@ -12,7 +12,7 @@ categories: - LSP source: - id: pkg:github/OmniSharp/omnisharp-roslyn@v1.39.11 + id: pkg:github/OmniSharp/omnisharp-roslyn@v1.39.12 asset: - target: [darwin_arm64, darwin_x64] file: omnisharp-osx.tar.gz diff --git a/packages/omnisharp/package.yaml b/packages/omnisharp/package.yaml index f2df8e6623..d4a7265006 100644 --- a/packages/omnisharp/package.yaml +++ b/packages/omnisharp/package.yaml @@ -12,7 +12,7 @@ categories: - LSP source: - id: pkg:github/OmniSharp/omnisharp-roslyn@v1.39.11 + id: pkg:github/OmniSharp/omnisharp-roslyn@v1.39.12 asset: - target: darwin_x64 file: omnisharp-osx-x64-net6.0.zip:libexec/ diff --git a/packages/opa/package.yaml b/packages/opa/package.yaml index 5cdb3a3a2e..c967b50b2f 100644 --- a/packages/opa/package.yaml +++ b/packages/opa/package.yaml @@ -13,7 +13,7 @@ categories: - Runtime source: - id: pkg:github/open-policy-agent/opa@v0.65.0 + id: pkg:github/open-policy-agent/opa@v0.70.0 asset: - target: darwin_arm64 file: opa_darwin_arm64_static diff --git a/packages/opencl-language-server/package.yaml b/packages/opencl-language-server/package.yaml index 075c280105..f59fc087fd 100644 --- a/packages/opencl-language-server/package.yaml +++ b/packages/opencl-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/Galarius/opencl-language-server@0.6.1 + id: pkg:github/Galarius/opencl-language-server@0.6.3 asset: - target: darwin_arm64 file: opencl-language-server-darwin-arm64.tar.gz diff --git a/packages/ormolu/package.yaml b/packages/ormolu/package.yaml index 8727261b23..f9f6e73e2c 100644 --- a/packages/ormolu/package.yaml +++ b/packages/ormolu/package.yaml @@ -11,16 +11,19 @@ categories: source: # renovate:versioning=loose - id: pkg:github/tweag/ormolu@0.7.4.0 + id: pkg:github/tweag/ormolu@0.7.7.0 asset: - - target: [darwin_x64, darwin_arm64] - file: ormolu-macOS.zip + - target: darwin_arm64 + file: ormolu-aarch64-darwin.zip + bin: ormolu + - target: darwin_x64 + file: ormolu-x86_64-darwin.zip bin: ormolu - target: linux_x64 - file: ormolu-Linux.zip + file: ormolu-x86_64-linux.zip bin: ormolu - target: win_x64 - file: ormolu-Windows.zip + file: ormolu-x86_64-windows.zip bin: ormolu.exe bin: diff --git a/packages/oxlint/package.yaml b/packages/oxlint/package.yaml index 4beebf2f9a..f6f829b23c 100644 --- a/packages/oxlint/package.yaml +++ b/packages/oxlint/package.yaml @@ -11,16 +11,16 @@ categories: - Linter source: - id: pkg:github/web-infra-dev/oxc@oxlint_v0.0.20 + id: pkg:github/web-infra-dev/oxc@oxlint_v0.5.3 asset: - target: darwin_arm64 file: oxlint-darwin-arm64 - target: darwin_x64 file: oxlint-darwin-x64 - target: linux_arm64_gnu - file: oxlint-linux-arm64 + file: oxlint-linux-arm64-gnu - target: linux_x64_gnu - file: oxlint-linux-x64 + file: oxlint-linux-x64-gnu - target: win_arm64 file: oxlint-win32-arm64.exe - target: win_x64 diff --git a/packages/pbls/package.yaml b/packages/pbls/package.yaml new file mode 100644 index 0000000000..e5a2e1f88e --- /dev/null +++ b/packages/pbls/package.yaml @@ -0,0 +1,16 @@ +--- +name: pbls +description: A language server implementation for Google Protocol Buffers. +homepage: https://git.sr.ht/~rrc/pbls +licenses: + - MIT +languages: + - Protobuf +categories: + - LSP + +source: + id: pkg:cargo/pbls@1.0.1?repository_url=https://git.sr.ht/~rrc/pbls + +bin: + pbls: cargo:pbls diff --git a/packages/perl-debug-adapter/package.yaml b/packages/perl-debug-adapter/package.yaml index 43cfc6e798..d975216cf5 100644 --- a/packages/perl-debug-adapter/package.yaml +++ b/packages/perl-debug-adapter/package.yaml @@ -11,7 +11,7 @@ categories: source: # renovate:datasource=github-tags - id: pkg:github/Nihilus118/perl-debug-adapter@1.0.9 + id: pkg:github/Nihilus118/perl-debug-adapter@1.0.12 build: run: | npm install diff --git a/packages/perlnavigator/package.yaml b/packages/perlnavigator/package.yaml index a309b70e27..1a57607111 100644 --- a/packages/perlnavigator/package.yaml +++ b/packages/perlnavigator/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/perlnavigator-server@0.8.14 + id: pkg:npm/perlnavigator-server@0.8.15 schemas: lsp: vscode:https://raw.githubusercontent.com/bscan/PerlNavigator/v{{version}}/package.json diff --git a/packages/pest-language-server/package.yaml b/packages/pest-language-server/package.yaml index 1cf3b083bf..5fe4990efc 100644 --- a/packages/pest-language-server/package.yaml +++ b/packages/pest-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:cargo/pest-language-server@0.3.9 + id: pkg:cargo/pest-language-server@0.3.11 bin: pest-language-server: cargo:pest-language-server diff --git a/packages/php-cs-fixer/package.yaml b/packages/php-cs-fixer/package.yaml index 720b6515ca..0c110c52a0 100644 --- a/packages/php-cs-fixer/package.yaml +++ b/packages/php-cs-fixer/package.yaml @@ -13,7 +13,7 @@ categories: - Formatter source: - id: pkg:github/PHP-CS-Fixer/PHP-CS-Fixer@v3.58.1 + id: pkg:github/PHP-CS-Fixer/PHP-CS-Fixer@v3.65.0 asset: file: php-cs-fixer.phar diff --git a/packages/php-debug-adapter/package.yaml b/packages/php-debug-adapter/package.yaml index 41f3f0ea69..263d159980 100644 --- a/packages/php-debug-adapter/package.yaml +++ b/packages/php-debug-adapter/package.yaml @@ -10,7 +10,7 @@ categories: - DAP source: - id: pkg:github/xdebug/vscode-php-debug@v1.34.0 + id: pkg:github/xdebug/vscode-php-debug@v1.35.0 asset: file: php-debug-{{ version | strip_prefix "v" }}.vsix diff --git a/packages/phpactor/package.yaml b/packages/phpactor/package.yaml index 565a333f02..2c9412b70f 100644 --- a/packages/phpactor/package.yaml +++ b/packages/phpactor/package.yaml @@ -14,10 +14,9 @@ categories: source: # renovate:versioning=loose # renovate:datasource=github-tags - id: pkg:github/phpactor/phpactor@2024.03.09.0 - build: - - target: unix - run: composer install --no-interaction --no-dev --optimize-autoloader --classmap-authoritative + id: pkg:github/phpactor/phpactor@2024.11.28.1 + asset: + file: phpactor.phar bin: - phpactor: bin/phpactor + phpactor: php:phpactor.phar diff --git a/packages/phpcbf/package.yaml b/packages/phpcbf/package.yaml index a87e2a4d3e..39f65cacf2 100644 --- a/packages/phpcbf/package.yaml +++ b/packages/phpcbf/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:github/PHPCSStandards/PHP_CodeSniffer@3.10.1 + id: pkg:github/PHPCSStandards/PHP_CodeSniffer@3.11.2 asset: file: phpcbf.phar diff --git a/packages/phpcs/package.yaml b/packages/phpcs/package.yaml index dcae3495e8..3261b5d59d 100644 --- a/packages/phpcs/package.yaml +++ b/packages/phpcs/package.yaml @@ -10,7 +10,7 @@ categories: - Linter source: - id: pkg:github/PHPCSStandards/PHP_CodeSniffer@3.10.1 + id: pkg:github/PHPCSStandards/PHP_CodeSniffer@3.11.2 asset: file: phpcs.phar diff --git a/packages/phpstan/package.yaml b/packages/phpstan/package.yaml index f0ad70d6c6..f006fda7a6 100644 --- a/packages/phpstan/package.yaml +++ b/packages/phpstan/package.yaml @@ -10,7 +10,7 @@ categories: - Linter source: - id: pkg:github/phpstan/phpstan@1.11.2 + id: pkg:github/phpstan/phpstan@2.0.4 asset: file: phpstan.phar diff --git a/packages/pico8-ls/package.yaml b/packages/pico8-ls/package.yaml index e7aebdf7e6..1afa1bcc4e 100644 --- a/packages/pico8-ls/package.yaml +++ b/packages/pico8-ls/package.yaml @@ -11,7 +11,7 @@ categories: source: # renovate:datasource=git-refs - id: pkg:github/japhib/pico8-ls@b88ef92f0ac413f4d374bbb970b444d7e64796f6 + id: pkg:github/japhib/pico8-ls@cb16048f3dffba7dec26c01e270be5d37f54a785 build: run: | npm install diff --git a/packages/pint/package.yaml b/packages/pint/package.yaml index e25952c1a8..849209c1f2 100644 --- a/packages/pint/package.yaml +++ b/packages/pint/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:composer/laravel/pint@v1.16.0 + id: pkg:composer/laravel/pint@v1.18.3 bin: pint: composer:pint diff --git a/packages/powershell-editor-services/package.yaml b/packages/powershell-editor-services/package.yaml index 34778741b4..5af7334955 100644 --- a/packages/powershell-editor-services/package.yaml +++ b/packages/powershell-editor-services/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/PowerShell/PowerShellEditorServices@v3.20.1 + id: pkg:github/PowerShell/PowerShellEditorServices@v4.1.0 asset: file: PowerShellEditorServices.zip diff --git a/packages/prettier/package.yaml b/packages/prettier/package.yaml index 7ab1d31193..45f3dbf252 100644 --- a/packages/prettier/package.yaml +++ b/packages/prettier/package.yaml @@ -23,7 +23,7 @@ categories: - Formatter source: - id: pkg:npm/prettier@3.2.5 + id: pkg:npm/prettier@3.4.2 bin: prettier: npm:prettier diff --git a/packages/prettierd/package.yaml b/packages/prettierd/package.yaml index 6e18771394..4a9849cc62 100644 --- a/packages/prettierd/package.yaml +++ b/packages/prettierd/package.yaml @@ -23,7 +23,7 @@ categories: - Formatter source: - id: pkg:npm/%40fsouza/prettierd@0.25.3 + id: pkg:npm/%40fsouza/prettierd@0.25.4 bin: prettierd: npm:prettierd diff --git a/packages/pretty-php/package.yaml b/packages/pretty-php/package.yaml index 42988ae479..9dc01e7b97 100644 --- a/packages/pretty-php/package.yaml +++ b/packages/pretty-php/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:github/lkrms/pretty-php@v0.4.64 + id: pkg:github/lkrms/pretty-php@v0.4.82 asset: file: pretty-php.phar diff --git a/packages/prisma-language-server/package.yaml b/packages/prisma-language-server/package.yaml index 86848e4733..9cfcfa2505 100644 --- a/packages/prisma-language-server/package.yaml +++ b/packages/prisma-language-server/package.yaml @@ -12,7 +12,7 @@ categories: - LSP source: - id: pkg:npm/%40prisma/language-server@5.14.0 + id: pkg:npm/%40prisma/language-server@6.1.0 bin: prisma-language-server: npm:prisma-language-server diff --git a/packages/protolint/package.yaml b/packages/protolint/package.yaml index afaa0dabdb..a2a5dbfab2 100644 --- a/packages/protolint/package.yaml +++ b/packages/protolint/package.yaml @@ -10,7 +10,7 @@ categories: - Linter source: - id: pkg:github/yoheimuta/protolint@v0.49.7 + id: pkg:github/yoheimuta/protolint@v0.51.0 asset: - target: darwin_arm64 file: protolint_{{ version | strip_prefix "v" }}_darwin_arm64.tar.gz diff --git a/packages/psalm/package.yaml b/packages/psalm/package.yaml index 0327b64424..ea764f906e 100644 --- a/packages/psalm/package.yaml +++ b/packages/psalm/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:composer/vimeo/psalm@5.24.0 + id: pkg:composer/vimeo/psalm@5.26.1 bin: psalm: composer:psalm diff --git a/packages/purescript-language-server/package.yaml b/packages/purescript-language-server/package.yaml index 7360ec41bc..6bae18f41d 100644 --- a/packages/purescript-language-server/package.yaml +++ b/packages/purescript-language-server/package.yaml @@ -12,7 +12,7 @@ categories: - LSP source: - id: pkg:npm/purescript-language-server@0.18.0 + id: pkg:npm/purescript-language-server@0.18.2 schemas: lsp: vscode:https://raw.githubusercontent.com/nwolverson/vscode-ide-purescript/master/package.json diff --git a/packages/pyink/package.yaml b/packages/pyink/package.yaml index 1400625bb4..1fcf746bc8 100644 --- a/packages/pyink/package.yaml +++ b/packages/pyink/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:pypi/pyink@24.3.0 + id: pkg:pypi/pyink@24.10.0 bin: pyink: pypi:pyink diff --git a/packages/pylint/package.yaml b/packages/pylint/package.yaml index c11c7e9922..0141b0ded7 100644 --- a/packages/pylint/package.yaml +++ b/packages/pylint/package.yaml @@ -10,7 +10,7 @@ categories: - Linter source: - id: pkg:pypi/pylint@3.2.2 + id: pkg:pypi/pylint@3.3.2 bin: pylint: pypi:pylint diff --git a/packages/pylyzer/package.yaml b/packages/pylyzer/package.yaml index 1231ceff8b..73d80010a5 100644 --- a/packages/pylyzer/package.yaml +++ b/packages/pylyzer/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/mtshiba/pylyzer@v0.0.54 + id: pkg:github/mtshiba/pylyzer@v0.0.74 asset: - target: darwin_arm64 file: pylyzer-aarch64-apple-darwin.tar.gz diff --git a/packages/pyre/package.yaml b/packages/pyre/package.yaml index 9317382a28..c969bdf304 100644 --- a/packages/pyre/package.yaml +++ b/packages/pyre/package.yaml @@ -11,7 +11,7 @@ categories: - Linter source: - id: pkg:pypi/pyre-check@0.9.21 + id: pkg:pypi/pyre-check@0.9.23 bin: pyre: pypi:pyre diff --git a/packages/pyright/package.yaml b/packages/pyright/package.yaml index 7191a07d2f..006f9250e6 100644 --- a/packages/pyright/package.yaml +++ b/packages/pyright/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/pyright@1.1.365 + id: pkg:npm/pyright@1.1.391 schemas: lsp: vscode:https://raw.githubusercontent.com/microsoft/pyright/{{version}}/packages/vscode-pyright/package.json diff --git a/packages/python-lsp-server/package.yaml b/packages/python-lsp-server/package.yaml index 125620768d..2316112fa2 100644 --- a/packages/python-lsp-server/package.yaml +++ b/packages/python-lsp-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:pypi/python-lsp-server@1.11.0?extra=all + id: pkg:pypi/python-lsp-server@1.12.0?extra=all schemas: lsp: https://raw.githubusercontent.com/python-lsp/python-lsp-server/v{{version}}/pylsp/config/schema.json diff --git a/packages/regal/package.yaml b/packages/regal/package.yaml new file mode 100644 index 0000000000..51bef3931c --- /dev/null +++ b/packages/regal/package.yaml @@ -0,0 +1,17 @@ +--- +name: regal +description: A linter for Rego, with support for running as an LSP server. +homepage: https://github.com/styrainc/regal +licenses: + - Apache-2.0 +languages: + - Rego +categories: + - Linter + - LSP + +source: + id: pkg:golang/github.com/styrainc/regal@v0.29.2 + +bin: + regal: golang:regal diff --git a/packages/regols/package.yaml b/packages/regols/package.yaml index ae1c547bee..84941ace9b 100644 --- a/packages/regols/package.yaml +++ b/packages/regols/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:golang/github.com/kitagry/regols@v0.2.3 + id: pkg:golang/github.com/kitagry/regols@v0.2.4 bin: regols: golang:regols diff --git a/packages/reorder-python-imports/package.yaml b/packages/reorder-python-imports/package.yaml index e9cf8812e1..8367af2a0d 100644 --- a/packages/reorder-python-imports/package.yaml +++ b/packages/reorder-python-imports/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:pypi/reorder-python-imports@3.12.0 + id: pkg:pypi/reorder-python-imports@3.14.0 bin: reorder-python-imports: pypi:reorder-python-imports diff --git a/packages/rescript-language-server/package.yaml b/packages/rescript-language-server/package.yaml index a2bc71b9c8..7abae16341 100644 --- a/packages/rescript-language-server/package.yaml +++ b/packages/rescript-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/%40rescript/language-server@1.50.0 + id: pkg:npm/%40rescript/language-server@1.58.0 bin: rescript-language-server: npm:rescript-language-server diff --git a/packages/revive/package.yaml b/packages/revive/package.yaml index f3f936bcb3..b247efbdc0 100644 --- a/packages/revive/package.yaml +++ b/packages/revive/package.yaml @@ -10,7 +10,7 @@ categories: - Linter source: - id: pkg:golang/github.com/mgechev/revive@v1.3.7 + id: pkg:golang/github.com/mgechev/revive@v1.5.1 bin: revive: golang:revive diff --git a/packages/robotframework-lsp/package.yaml b/packages/robotframework-lsp/package.yaml index 84cf2b3339..0cc73eb105 100644 --- a/packages/robotframework-lsp/package.yaml +++ b/packages/robotframework-lsp/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:pypi/robotframework-lsp@1.12.0 + id: pkg:pypi/robotframework-lsp@1.13.0 bin: robotframework_ls: pypi:robotframework_ls diff --git a/packages/rstcheck/package.yaml b/packages/rstcheck/package.yaml index 5f8725dccc..c774be196d 100644 --- a/packages/rstcheck/package.yaml +++ b/packages/rstcheck/package.yaml @@ -10,7 +10,7 @@ categories: - Linter source: - id: pkg:pypi/rstcheck@6.2.1 + id: pkg:pypi/rstcheck@6.2.4 bin: rstcheck: pypi:rstcheck diff --git a/packages/rubocop/package.yaml b/packages/rubocop/package.yaml index d539f9cdae..f09005f91e 100644 --- a/packages/rubocop/package.yaml +++ b/packages/rubocop/package.yaml @@ -12,7 +12,7 @@ categories: - LSP source: - id: pkg:gem/rubocop@1.64.0 + id: pkg:gem/rubocop@1.69.2 bin: rubocop: gem:rubocop diff --git a/packages/ruby-lsp/package.yaml b/packages/ruby-lsp/package.yaml index e282f97ecd..17bc63893c 100644 --- a/packages/ruby-lsp/package.yaml +++ b/packages/ruby-lsp/package.yaml @@ -11,7 +11,7 @@ categories: - LSP source: - id: pkg:gem/ruby-lsp@0.16.7 + id: pkg:gem/ruby-lsp@0.22.1 bin: ruby-lsp: gem:ruby-lsp diff --git a/packages/ruff-lsp/package.yaml b/packages/ruff-lsp/package.yaml index 1253991ad2..fbc462288b 100644 --- a/packages/ruff-lsp/package.yaml +++ b/packages/ruff-lsp/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:pypi/ruff-lsp@0.0.53 + id: pkg:pypi/ruff-lsp@0.0.59 bin: ruff-lsp: pypi:ruff-lsp diff --git a/packages/ruff/package.yaml b/packages/ruff/package.yaml index 32d5262df9..59379736c2 100644 --- a/packages/ruff/package.yaml +++ b/packages/ruff/package.yaml @@ -12,7 +12,7 @@ categories: - LSP source: - id: pkg:pypi/ruff@0.4.6 + id: pkg:pypi/ruff@0.8.4 bin: ruff: pypi:ruff diff --git a/packages/rust-analyzer/package.yaml b/packages/rust-analyzer/package.yaml index 3620ffa043..85c4c609c0 100644 --- a/packages/rust-analyzer/package.yaml +++ b/packages/rust-analyzer/package.yaml @@ -15,7 +15,7 @@ categories: source: # renovate:versioning=loose - id: pkg:github/rust-lang/rust-analyzer@2024-05-27 + id: pkg:github/rust-lang/rust-analyzer@2024-12-16 asset: - target: linux_x64_gnu file: rust-analyzer-x86_64-unknown-linux-gnu.gz diff --git a/packages/rust_hdl/package.yaml b/packages/rust_hdl/package.yaml index e79459cb90..1925c7a708 100644 --- a/packages/rust_hdl/package.yaml +++ b/packages/rust_hdl/package.yaml @@ -12,17 +12,22 @@ categories: - LSP source: - id: pkg:github/vhdl-ls/rust_hdl@v0.81.0 + id: pkg:github/vhdl-ls/rust_hdl@v0.83.1 asset: - target: darwin_arm64 file: vhdl_ls-aarch64-apple-darwin.zip bin: vhdl_ls-aarch64-apple-darwin/bin/vhdl_ls + libraries: vhdl_ls-aarch64-apple-darwin/vhdl_libraries/ - target: linux_x64 file: vhdl_ls-x86_64-unknown-linux-musl.zip bin: vhdl_ls-x86_64-unknown-linux-musl/bin/vhdl_ls + libraries: vhdl_ls-x86_64-unknown-linux-musl/vhdl_libraries/ - target: win_x64 file: vhdl_ls-x86_64-pc-windows-msvc.zip bin: vhdl_ls-x86_64-pc-windows-msvc/bin/vhdl_ls.exe + libraries: vhdl_ls-x86_64-pc-windows-msvc/bin/vhdl_libraries/ bin: vhdl_ls: "{{source.asset.bin}}" +share: + vhdl_libraries/: "{{source.asset.libraries}}" diff --git a/packages/rustywind/package.yaml b/packages/rustywind/package.yaml index 64cf807a1e..f4ac2a43f1 100644 --- a/packages/rustywind/package.yaml +++ b/packages/rustywind/package.yaml @@ -15,7 +15,7 @@ categories: - Formatter source: - id: pkg:npm/rustywind@0.22.0 + id: pkg:npm/rustywind@0.23.1 bin: rustywind: npm:rustywind diff --git a/packages/semgrep/package.yaml b/packages/semgrep/package.yaml index dd28059b13..d97d3342a1 100644 --- a/packages/semgrep/package.yaml +++ b/packages/semgrep/package.yaml @@ -21,7 +21,7 @@ categories: - Linter source: - id: pkg:pypi/semgrep@1.74.0 + id: pkg:pypi/semgrep@1.101.0 supported_platforms: - unix diff --git a/packages/shfmt/package.yaml b/packages/shfmt/package.yaml index 9009677cf0..807be351f6 100644 --- a/packages/shfmt/package.yaml +++ b/packages/shfmt/package.yaml @@ -12,7 +12,7 @@ categories: - Formatter source: - id: pkg:github/mvdan/sh@v3.8.0 + id: pkg:github/mvdan/sh@v3.10.0 asset: - target: darwin_arm64 file: shfmt_{{version}}_darwin_arm64 diff --git a/packages/shopify-cli/package.yaml b/packages/shopify-cli/package.yaml new file mode 100644 index 0000000000..5fa33759a4 --- /dev/null +++ b/packages/shopify-cli/package.yaml @@ -0,0 +1,18 @@ +--- +name: shopify-cli +description: | + Command-line interface tool that helps you generate and work with Shopify apps, themes and custom storefronts. +homepage: https://shopify.dev/docs/api/shopify-cli +licenses: + - MIT +languages: + - Liquid +categories: + - LSP + - Linter + +source: + id: pkg:npm/%40shopify/cli@3.72.2 + +bin: + shopify: npm:shopify diff --git a/packages/slang/package.yaml b/packages/slang/package.yaml index 70ed961a94..c5f58e90dc 100644 --- a/packages/slang/package.yaml +++ b/packages/slang/package.yaml @@ -15,33 +15,33 @@ categories: source: # renovate:versioning=loose - id: pkg:github/shader-slang/slang@v2024.1.18 + id: pkg:github/shader-slang/slang@v2024.17 asset: - target: linux_x64_gnu file: slang-{{ version | strip_prefix "v" }}-linux-x86_64.tar.gz bin: - slangd: bin/linux-x64/release/slangd - slangc: bin/linux-x64/release/slangc + slangd: bin/slangd + slangc: bin/slangc - target: darwin_x64 - file: slang-{{ version | strip_prefix "v" }}-macos-x64.zip + file: slang-{{ version | strip_prefix "v" }}-macos-x86_64.tar.gz bin: - slangd: bin/macosx-x64/release/slangd - slangc: bin/macosx-x64/release/slangc + slangd: bin/slangd + slangc: bin/slangc - target: darwin_arm64 - file: slang-{{ version | strip_prefix "v" }}-macos-aarch64.zip + file: slang-{{ version | strip_prefix "v" }}-macos-aarch64.tar.gz bin: - slangd: bin/macosx-aarch64/release/slangd - slangc: bin/macosx-aarch64/release/slangc + slangd: bin/slangd + slangc: bin/slangc - target: win_x64 - file: slang-{{ version | strip_prefix "v" }}-win64.zip + file: slang-{{ version | strip_prefix "v" }}-windows-x86_64.zip bin: - slangd: bin/windows-x64/release/slangd.exe - slangc: bin/windows-x64/release/slangc.exe + slangd: bin/slangd.exe + slangc: bin/slangc.exe - target: win_arm64 - file: slang-{{ version | strip_prefix "v" }}-win-arm64.zip + file: slang-{{ version | strip_prefix "v" }}-windows-aarch64.zip bin: - slangd: bin/windows-aarch64/release/slangd.exe - slangc: bin/windows-aarch64/release/slangc.exe + slangd: bin/slangd.exe + slangc: bin/slangc.exe bin: slangd: "{{source.asset.bin.slangd}}" diff --git a/packages/slint-lsp/package.yaml b/packages/slint-lsp/package.yaml index 8e36f637f7..9dca5f1209 100644 --- a/packages/slint-lsp/package.yaml +++ b/packages/slint-lsp/package.yaml @@ -11,7 +11,7 @@ categories: - LSP source: - id: pkg:github/slint-ui/slint@v1.6.0 + id: pkg:github/slint-ui/slint@v1.9.0 asset: - target: linux_x64 file: slint-lsp-linux.tar.gz diff --git a/packages/smithy-language-server/package.yaml b/packages/smithy-language-server/package.yaml index 72928ec459..13a845c9ef 100644 --- a/packages/smithy-language-server/package.yaml +++ b/packages/smithy-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/awslabs/smithy-language-server@0.2.4 + id: pkg:github/awslabs/smithy-language-server@0.5.0 asset: - target: unix file: smithy-language-server-{{version}}.zip diff --git a/packages/snakeskin-cli/package.yaml b/packages/snakeskin-cli/package.yaml new file mode 100644 index 0000000000..794116221f --- /dev/null +++ b/packages/snakeskin-cli/package.yaml @@ -0,0 +1,16 @@ +--- +name: snakeskin-cli +description: Snakeskin is an awesome JavaScript template engine with the best support for inheritance. +homepage: https://github.com/SnakeskinTpl/language-tools/tree/main/packages/cli +licenses: + - MIT +languages: + - Snakeskin +categories: + - LSP + +source: + id: pkg:npm/%40snakeskin/cli@0.0.8 + +bin: + snakeskin-cli: npm:snakeskin-cli diff --git a/packages/snyk-ls/package.yaml b/packages/snyk-ls/package.yaml index 9f3fbf6df2..7c9165d940 100644 --- a/packages/snyk-ls/package.yaml +++ b/packages/snyk-ls/package.yaml @@ -14,7 +14,7 @@ categories: source: # renovate:versioning=loose - id: pkg:github/snyk/snyk-ls@v20240529.135310 + id: pkg:github/snyk/snyk-ls@v20241112.105448 asset: - target: darwin_x64 file: snyk-ls_{{ version | strip_prefix "v" }}_darwin_amd64 diff --git a/packages/snyk/package.yaml b/packages/snyk/package.yaml index 11d53dbe8e..07ef194955 100644 --- a/packages/snyk/package.yaml +++ b/packages/snyk/package.yaml @@ -19,7 +19,7 @@ categories: - Linter source: - id: pkg:github/snyk/cli@v1.1291.1 + id: pkg:github/snyk/cli@v1.1294.3 asset: - target: darwin_x64 file: snyk-macos diff --git a/packages/solhint/package.yaml b/packages/solhint/package.yaml index 52b5f145ad..96d6af627b 100644 --- a/packages/solhint/package.yaml +++ b/packages/solhint/package.yaml @@ -10,7 +10,7 @@ categories: - Linter source: - id: pkg:npm/solhint@5.0.1 + id: pkg:npm/solhint@5.0.3 bin: solhint: npm:solhint diff --git a/packages/solidity/package.yaml b/packages/solidity/package.yaml index 627e041da7..ac232584f9 100644 --- a/packages/solidity/package.yaml +++ b/packages/solidity/package.yaml @@ -11,7 +11,7 @@ categories: - LSP source: - id: pkg:github/ethereum/solidity@v0.8.26 + id: pkg:github/ethereum/solidity@v0.8.28 asset: - target: [darwin_x64, darwin_arm64] file: solc-macos diff --git a/packages/some-sass-language-server/package.yaml b/packages/some-sass-language-server/package.yaml index c5c2f0d6b3..ea2a73b286 100644 --- a/packages/some-sass-language-server/package.yaml +++ b/packages/some-sass-language-server/package.yaml @@ -10,10 +10,10 @@ categories: - LSP source: - id: pkg:npm/some-sass-language-server@1.2.4 + id: pkg:npm/some-sass-language-server@2.1.1 schemas: - lsp: vscode:https://raw.githubusercontent.com/wkillerud/some-sass/main/vscode-extension/package.json + lsp: vscode:https://raw.githubusercontent.com/wkillerud/some-sass/some-sass-language-server@{{version}}/vscode-extension/package.json bin: some-sass-language-server: npm:some-sass-language-server diff --git a/packages/sonarlint-language-server/package.yaml b/packages/sonarlint-language-server/package.yaml index d9abc636dc..2de261f27a 100644 --- a/packages/sonarlint-language-server/package.yaml +++ b/packages/sonarlint-language-server/package.yaml @@ -5,6 +5,7 @@ homepage: https://github.com/SonarSource/sonarlint-vscode licenses: - LGPL-3.0 languages: + - AzureResourceManager - C - C++ - C# @@ -28,9 +29,9 @@ categories: - Linter source: - id: pkg:github/SonarSource/sonarlint-vscode@4.3.0%2B76012 + id: pkg:github/SonarSource/sonarlint-vscode@4.14.0%2B77092 asset: - file: sonarlint-vscode-4.3.0.vsix + file: sonarlint-vscode-4.14.0.vsix bin: sonarlint-language-server: java-jar:extension/server/sonarlint-ls.jar diff --git a/packages/sorbet/package.yaml b/packages/sorbet/package.yaml index 07bdf22b86..b9b6c144ef 100644 --- a/packages/sorbet/package.yaml +++ b/packages/sorbet/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:gem/sorbet@0.5.11394 + id: pkg:gem/sorbet@0.5.11704 supported_platforms: - unix diff --git a/packages/sourcery/package.yaml b/packages/sourcery/package.yaml index 58379608a4..2a16f19b2f 100644 --- a/packages/sourcery/package.yaml +++ b/packages/sourcery/package.yaml @@ -12,7 +12,7 @@ categories: - LSP source: - id: pkg:pypi/sourcery-cli@1.18.0 + id: pkg:pypi/sourcery@1.27.0 schemas: lsp: vscode:https://raw.githubusercontent.com/swift-server/vscode-swift/main/package.json diff --git a/packages/spectral-language-server/package.yaml b/packages/spectral-language-server/package.yaml index cdc6a28c2a..65576f3f14 100644 --- a/packages/spectral-language-server/package.yaml +++ b/packages/spectral-language-server/package.yaml @@ -13,7 +13,7 @@ categories: - LSP source: - id: pkg:github/stoplightio/vscode-spectral@v1.1.2 + id: pkg:github/stoplightio/vscode-spectral@v1.1.4 build: run: | npm exec yarn@1 install diff --git a/packages/spyglassmc-language-server/package.yaml b/packages/spyglassmc-language-server/package.yaml index 50151d3823..7197ba4b80 100644 --- a/packages/spyglassmc-language-server/package.yaml +++ b/packages/spyglassmc-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/%40spyglassmc/language-server@0.4.7 + id: pkg:npm/%40spyglassmc/language-server@0.4.22 bin: spyglassmc-language-server: npm:spyglassmc-language-server diff --git a/packages/sql-formatter/package.yaml b/packages/sql-formatter/package.yaml index 2121125272..cd327b7554 100644 --- a/packages/sql-formatter/package.yaml +++ b/packages/sql-formatter/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:npm/sql-formatter@15.3.1 + id: pkg:npm/sql-formatter@15.4.7 bin: sql-formatter: npm:sql-formatter diff --git a/packages/sqlfluff/package.yaml b/packages/sqlfluff/package.yaml index 09d02ecabd..2ed2918575 100644 --- a/packages/sqlfluff/package.yaml +++ b/packages/sqlfluff/package.yaml @@ -10,7 +10,7 @@ categories: - Linter source: - id: pkg:pypi/sqlfluff@3.0.7 + id: pkg:pypi/sqlfluff@3.3.0 bin: sqlfluff: pypi:sqlfluff diff --git a/packages/sqlfmt/package.yaml b/packages/sqlfmt/package.yaml index 4b9121a7e4..1189147386 100644 --- a/packages/sqlfmt/package.yaml +++ b/packages/sqlfmt/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:pypi/shandy-sqlfmt@0.21.3?extra=jinjafmt + id: pkg:pypi/shandy-sqlfmt@0.24.0?extra=jinjafmt bin: sqlfmt: pypi:sqlfmt diff --git a/packages/sqlls/package.yaml b/packages/sqlls/package.yaml index ce3e64d3f3..d7a9531048 100644 --- a/packages/sqlls/package.yaml +++ b/packages/sqlls/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/sql-language-server@1.7.0 + id: pkg:npm/sql-language-server@1.7.1 bin: sql-language-server: npm:sql-language-server diff --git a/packages/sqls/package.yaml b/packages/sqls/package.yaml index d5a8c5032e..a565de5206 100644 --- a/packages/sqls/package.yaml +++ b/packages/sqls/package.yaml @@ -12,5 +12,8 @@ categories: source: id: pkg:golang/github.com/sqls-server/sqls@v0.2.28 +schemas: + lsp: https://raw.githubusercontent.com/sqls-server/sqls/{{version}}/schema.json + bin: sqls: golang:sqls diff --git a/packages/standardjs/package.yaml b/packages/standardjs/package.yaml index 206c965721..f46c0c61e3 100644 --- a/packages/standardjs/package.yaml +++ b/packages/standardjs/package.yaml @@ -11,7 +11,7 @@ categories: - Formatter source: - id: pkg:npm/standard@17.1.0 + id: pkg:npm/standard@17.1.2 bin: standard: npm:standard diff --git a/packages/standardrb/package.yaml b/packages/standardrb/package.yaml index 5927e6082a..49877b5662 100644 --- a/packages/standardrb/package.yaml +++ b/packages/standardrb/package.yaml @@ -11,7 +11,7 @@ categories: - Linter source: - id: pkg:gem/standard@1.36.0 + id: pkg:gem/standard@1.43.0 bin: standardrb: gem:standardrb diff --git a/packages/starlark-rust/package.yaml b/packages/starlark-rust/package.yaml index 7aea20b7d6..a7c4c5830a 100644 --- a/packages/starlark-rust/package.yaml +++ b/packages/starlark-rust/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:cargo/starlark_bin@0.12.0 + id: pkg:cargo/starlark_bin@0.13.0 bin: starlark: cargo:starlark diff --git a/packages/starpls/package.yaml b/packages/starpls/package.yaml index e0e3d38782..baf263d10e 100644 --- a/packages/starpls/package.yaml +++ b/packages/starpls/package.yaml @@ -12,7 +12,7 @@ categories: - LSP source: - id: pkg:github/withered-magic/starpls@v0.1.14 + id: pkg:github/withered-magic/starpls@v0.1.20 asset: - target: darwin_arm64 file: starpls-darwin-arm64 diff --git a/packages/staticcheck/package.yaml b/packages/staticcheck/package.yaml index 29ead3f76a..9279655e82 100644 --- a/packages/staticcheck/package.yaml +++ b/packages/staticcheck/package.yaml @@ -10,7 +10,7 @@ categories: - Linter source: - id: pkg:golang/honnef.co/go/tools@v0.4.7#cmd/staticcheck + id: pkg:golang/honnef.co/go/tools@v0.5.1#cmd/staticcheck bin: staticcheck: golang:staticcheck diff --git a/packages/steep/package.yaml b/packages/steep/package.yaml new file mode 100644 index 0000000000..36e43c709d --- /dev/null +++ b/packages/steep/package.yaml @@ -0,0 +1,17 @@ +--- +name: steep +description: | + Static type checker for Ruby +homepage: https://github.com/soutaro/steep +licenses: + - MIT +languages: + - Ruby +categories: + - LSP + +source: + id: pkg:gem/steep@1.9.2 + +bin: + steep: gem:steep diff --git a/packages/stimulus-language-server/package.yaml b/packages/stimulus-language-server/package.yaml index 656e5bff5c..bb420146a6 100644 --- a/packages/stimulus-language-server/package.yaml +++ b/packages/stimulus-language-server/package.yaml @@ -13,7 +13,7 @@ categories: - LSP source: - id: pkg:npm/stimulus-language-server@1.0.3 + id: pkg:npm/stimulus-language-server@1.0.4 schemas: lsp: vscode:https://raw.githubusercontent.com/marcoroth/stimulus-lsp/v{{version}}/package.json diff --git a/packages/stylelint-lsp/package.yaml b/packages/stylelint-lsp/package.yaml index f849731469..0a3e0d94e8 100644 --- a/packages/stylelint-lsp/package.yaml +++ b/packages/stylelint-lsp/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/stylelint-lsp@2.0.0 + id: pkg:npm/stylelint-lsp@2.0.1 schemas: lsp: vscode:https://raw.githubusercontent.com/bmatcuk/coc-stylelintplus/master/package.json diff --git a/packages/stylelint/package.yaml b/packages/stylelint/package.yaml index 7a77e0daab..858f2ae1c3 100644 --- a/packages/stylelint/package.yaml +++ b/packages/stylelint/package.yaml @@ -13,7 +13,7 @@ categories: - Linter source: - id: pkg:npm/stylelint@16.6.1 + id: pkg:npm/stylelint@16.12.0 bin: stylelint: npm:stylelint diff --git a/packages/stylua/package.yaml b/packages/stylua/package.yaml index ca5c5e133b..9838aa50cf 100644 --- a/packages/stylua/package.yaml +++ b/packages/stylua/package.yaml @@ -11,13 +11,13 @@ categories: - Formatter source: - id: pkg:github/johnnymorganz/stylua@v0.20.0 + id: pkg:github/johnnymorganz/stylua@v2.0.2 asset: - target: darwin_arm64 file: stylua-macos-aarch64.zip bin: stylua - target: darwin_x64 - file: stylua-macos.zip + file: stylua-macos-x86_64.zip bin: stylua - target: linux_x64_gnu file: stylua-linux-x86_64.zip @@ -29,10 +29,32 @@ source: file: stylua-linux-x86_64-musl.zip bin: stylua - target: win_x64 - file: stylua-win64.zip + file: stylua-windows-x86_64.zip bin: stylua.exe version_overrides: + - constraint: semver:<=v0.20.0 + id: pkg:github/johnnymorganz/stylua@v0.20.0 + asset: + - target: darwin_arm64 + file: stylua-macos-aarch64.zip + bin: stylua + - target: darwin_x64 + file: stylua-macos.zip + bin: stylua + - target: linux_x64_gnu + file: stylua-linux-x86_64.zip + bin: stylua + - target: linux_arm64_gnu + file: stylua-linux-aarch64.zip + bin: stylua + - target: linux_x64 + file: stylua-linux-x86_64-musl.zip + bin: stylua + - target: win_x64 + file: stylua-win64.zip + bin: stylua.exe + - constraint: semver:<=v0.19.1 id: pkg:github/johnnymorganz/stylua@v0.19.1 asset: diff --git a/packages/svelte-language-server/package.yaml b/packages/svelte-language-server/package.yaml index c5672f187a..34c5de47ca 100644 --- a/packages/svelte-language-server/package.yaml +++ b/packages/svelte-language-server/package.yaml @@ -10,7 +10,9 @@ categories: - LSP source: - id: pkg:npm/svelte-language-server@0.16.10 + id: pkg:npm/svelte-language-server@0.17.8 + extra_packages: + - typescript-svelte-plugin schemas: lsp: vscode:https://raw.githubusercontent.com/sveltejs/language-tools/language-server-{{version}}/packages/svelte-vscode/package.json diff --git a/packages/svls/package.yaml b/packages/svls/package.yaml index 8acfe87b67..e3054fd602 100644 --- a/packages/svls/package.yaml +++ b/packages/svls/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:cargo/svls@0.2.11 + id: pkg:cargo/svls@0.2.12 bin: svls: cargo:svls diff --git a/packages/swiftlint/package.yaml b/packages/swiftlint/package.yaml new file mode 100644 index 0000000000..8b2d0d4010 --- /dev/null +++ b/packages/swiftlint/package.yaml @@ -0,0 +1,23 @@ +--- +name: swiftlint +description: A tool to enforce Swift style and conventions. +homepage: https://github.com/realm/SwiftLint +licenses: + - MIT +languages: + - Swift +categories: + - Linter + +source: + id: pkg:github/realm/SwiftLint@0.57.1 + asset: + - target: linux_x64_gnu + file: swiftlint_linux.zip + bin: swiftlint + - target: darwin + file: SwiftLintBinary-macos.artifactbundle.zip + bin: SwiftLintBinary.artifactbundle/swiftlint-{{ version }}-macos/bin/swiftlint + +bin: + swiftlint: "{{source.asset.bin}}" diff --git a/packages/systemdlint/package.yaml b/packages/systemdlint/package.yaml index a8eea5b0cd..2f8b886130 100644 --- a/packages/systemdlint/package.yaml +++ b/packages/systemdlint/package.yaml @@ -10,7 +10,7 @@ categories: - Linter source: - id: pkg:pypi/systemdlint@1.3.0 + id: pkg:pypi/systemdlint@1.3.3 bin: systemdlint: pypi:systemdlint diff --git a/packages/tailwindcss-language-server/package.yaml b/packages/tailwindcss-language-server/package.yaml index feb90cdf81..38bf4fc7c9 100644 --- a/packages/tailwindcss-language-server/package.yaml +++ b/packages/tailwindcss-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/%40tailwindcss/language-server@0.0.16 + id: pkg:npm/%40tailwindcss/language-server@0.0.27 schemas: lsp: vscode:https://raw.githubusercontent.com/tailwindlabs/tailwindcss-intellisense/@tailwindcss/language-server@v{{version}}/packages/vscode-tailwindcss/package.json diff --git a/packages/taplo/package.yaml b/packages/taplo/package.yaml index 3016609590..96e495ba41 100644 --- a/packages/taplo/package.yaml +++ b/packages/taplo/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/tamasfe/taplo@0.8.1 + id: pkg:github/tamasfe/taplo@0.9.3 asset: - target: darwin_arm64 file: taplo-full-darwin-aarch64.gz diff --git a/packages/templ/package.yaml b/packages/templ/package.yaml index 2522dcdd1b..1468d01f89 100644 --- a/packages/templ/package.yaml +++ b/packages/templ/package.yaml @@ -13,7 +13,7 @@ categories: - LSP source: - id: pkg:github/a-h/templ@v0.2.707 + id: pkg:github/a-h/templ@v0.2.793 asset: - target: linux_arm64 file: templ_Linux_arm64.tar.gz diff --git a/packages/termux-language-server/package.yaml b/packages/termux-language-server/package.yaml new file mode 100644 index 0000000000..c38ec2da42 --- /dev/null +++ b/packages/termux-language-server/package.yaml @@ -0,0 +1,16 @@ +--- +name: termux-language-server +description: A language server for some specific bash scripts. +homepage: https://termux-language-server.readthedocs.io/en/latest/ +licenses: + - GPL-3.0 +languages: + - Bash +categories: + - LSP + +source: + id: pkg:pypi/termux-language-server@0.0.27 + +bin: + termux-language-server: pypi:termux-language-server diff --git a/packages/terraform-ls/package.yaml b/packages/terraform-ls/package.yaml index 658e3f43ad..2fe5590c9c 100644 --- a/packages/terraform-ls/package.yaml +++ b/packages/terraform-ls/package.yaml @@ -11,7 +11,7 @@ categories: source: # renovate:datasource=github-releases - id: pkg:generic/hashicorp/terraform-ls@v0.33.1 + id: pkg:generic/hashicorp/terraform-ls@v0.36.3 download: - target: darwin_arm64 files: diff --git a/packages/texlab/package.yaml b/packages/texlab/package.yaml index 999cc8379a..e3ae6e72b9 100644 --- a/packages/texlab/package.yaml +++ b/packages/texlab/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/latex-lsp/texlab@v5.16.1 + id: pkg:github/latex-lsp/texlab@v5.21.0 asset: - target: darwin_arm64 file: texlab-aarch64-macos.tar.gz diff --git a/packages/textlint/package.yaml b/packages/textlint/package.yaml index 748e360804..747ca6bb7f 100644 --- a/packages/textlint/package.yaml +++ b/packages/textlint/package.yaml @@ -11,7 +11,7 @@ categories: - Linter source: - id: pkg:npm/textlint@14.0.4 + id: pkg:npm/textlint@14.4.0 bin: textlint: npm:textlint diff --git a/packages/textlsp/package.yaml b/packages/textlsp/package.yaml new file mode 100644 index 0000000000..a83a06badd --- /dev/null +++ b/packages/textlsp/package.yaml @@ -0,0 +1,18 @@ +--- +name: textlsp +description: Language server for text spell and grammar check with various tools. +homepage: https://github.com/hangyav/textLSP +licenses: + - GPL-3.0-only +languages: + - Text + - LaTeX + - Org +categories: + - LSP + +source: + id: pkg:pypi/textLSP@0.3.2 + +bin: + textlsp: pypi:textlsp diff --git a/packages/tflint/package.yaml b/packages/tflint/package.yaml index 52847feba0..f5e4cad4ab 100644 --- a/packages/tflint/package.yaml +++ b/packages/tflint/package.yaml @@ -11,7 +11,7 @@ categories: - Linter source: - id: pkg:github/terraform-linters/tflint@v0.51.1 + id: pkg:github/terraform-linters/tflint@v0.54.0 asset: - target: darwin_x64 file: tflint_darwin_amd64.zip diff --git a/packages/tfsec/package.yaml b/packages/tfsec/package.yaml index 17df10cd93..6cf0145352 100644 --- a/packages/tfsec/package.yaml +++ b/packages/tfsec/package.yaml @@ -10,7 +10,7 @@ categories: - Linter source: - id: pkg:github/aquasecurity/tfsec@v1.28.6 + id: pkg:github/aquasecurity/tfsec@v1.28.11 asset: - target: darwin_x64 file: tfsec-darwin-amd64 diff --git a/packages/thriftls/package.yaml b/packages/thriftls/package.yaml index 07fc86b7e7..e039529883 100644 --- a/packages/thriftls/package.yaml +++ b/packages/thriftls/package.yaml @@ -12,7 +12,7 @@ categories: - LSP source: - id: pkg:github/joyme123/thrift-ls@v0.2.0 + id: pkg:github/joyme123/thrift-ls@v0.2.5 asset: - target: darwin_x64 file: thriftls-darwin-amd64 diff --git a/packages/tinymist/package.yaml b/packages/tinymist/package.yaml index b57a597514..9af94f5ab5 100644 --- a/packages/tinymist/package.yaml +++ b/packages/tinymist/package.yaml @@ -12,7 +12,7 @@ categories: - LSP source: - id: pkg:github/Myriad-Dreamin/tinymist@v0.11.10 + id: pkg:github/Myriad-Dreamin/tinymist@v0.12.12 asset: - target: linux_x64_gnu file: tinymist-linux-x64 diff --git a/packages/tlint/package.yaml b/packages/tlint/package.yaml index 237680b553..1b3642184c 100644 --- a/packages/tlint/package.yaml +++ b/packages/tlint/package.yaml @@ -12,7 +12,7 @@ categories: - Linter source: - id: pkg:composer/tightenco/tlint@v9.3.1 + id: pkg:composer/tightenco/tlint@v9.4.0 bin: tlint: composer:tlint diff --git a/packages/tree-sitter-cli/package.yaml b/packages/tree-sitter-cli/package.yaml index 8fd733a22e..5dc4f5b5e3 100644 --- a/packages/tree-sitter-cli/package.yaml +++ b/packages/tree-sitter-cli/package.yaml @@ -11,7 +11,7 @@ categories: - Compiler source: - id: pkg:github/tree-sitter/tree-sitter@v0.22.6 + id: pkg:github/tree-sitter/tree-sitter@v0.24.5 asset: - target: [darwin_x64, darwin_arm64] file: tree-sitter-macos-x64.gz diff --git a/packages/trivy/package.yaml b/packages/trivy/package.yaml index 6c796e7b8d..eff50f2bf5 100644 --- a/packages/trivy/package.yaml +++ b/packages/trivy/package.yaml @@ -26,7 +26,7 @@ categories: - Linter source: - id: pkg:github/aquasecurity/trivy@v0.51.4 + id: pkg:github/aquasecurity/trivy@v0.58.0 asset: - target: darwin_x64 file: trivy_{{ version | strip_prefix "v" }}_macOS-64bit.tar.gz diff --git a/packages/trufflehog/package.yaml b/packages/trufflehog/package.yaml index e5b8100c39..67ab95ab7d 100644 --- a/packages/trufflehog/package.yaml +++ b/packages/trufflehog/package.yaml @@ -9,7 +9,7 @@ categories: - Linter source: - id: pkg:github/trufflesecurity/trufflehog@v3.77.0 + id: pkg:github/trufflesecurity/trufflehog@v3.87.2 asset: - target: darwin_x64 file: trufflehog_{{ version | strip_prefix "v" }}_darwin_amd64.tar.gz diff --git a/packages/tsp-server/package.yaml b/packages/tsp-server/package.yaml new file mode 100644 index 0000000000..ab8cfd552a --- /dev/null +++ b/packages/tsp-server/package.yaml @@ -0,0 +1,16 @@ +--- +name: tsp-server +description: The language server for TypeSpec, a language for defining cloud service APIs and shapes. +homepage: https://github.com/microsoft/typespec +licenses: + - MIT +languages: + - Typespec +categories: + - LSP + +source: + id: pkg:npm/%40typespec/compiler@0.63.0 + +bin: + tsp-server: npm:tsp-server diff --git a/packages/twig-cs-fixer/package.yaml b/packages/twig-cs-fixer/package.yaml index aff4da9418..5ebd96db30 100644 --- a/packages/twig-cs-fixer/package.yaml +++ b/packages/twig-cs-fixer/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:composer/vincentlanglet/twig-cs-fixer@2.10.1 + id: pkg:composer/vincentlanglet/twig-cs-fixer@3.5.0 bin: twig-cs-fixer: composer:twig-cs-fixer diff --git a/packages/twigcs/package.yaml b/packages/twigcs/package.yaml index dbdee6484e..2881e952bf 100644 --- a/packages/twigcs/package.yaml +++ b/packages/twigcs/package.yaml @@ -12,7 +12,7 @@ categories: - Linter source: - id: pkg:github/friendsoftwig/twigcs@6.4.0 + id: pkg:github/friendsoftwig/twigcs@6.5.0 asset: file: twigcs.phar diff --git a/packages/twiggy-language-server/package.yaml b/packages/twiggy-language-server/package.yaml index 0c7b5b9ea2..b55c3cdf55 100644 --- a/packages/twiggy-language-server/package.yaml +++ b/packages/twiggy-language-server/package.yaml @@ -12,7 +12,7 @@ categories: - Linter source: - id: pkg:npm/twiggy-language-server@0.11.1 + id: pkg:npm/twiggy-language-server@0.17.0 bin: twiggy-language-server: node:node_modules/twiggy-language-server/dist/server.js diff --git a/packages/typos-lsp/package.yaml b/packages/typos-lsp/package.yaml index 346c8d434a..c9e9c68bf4 100644 --- a/packages/typos-lsp/package.yaml +++ b/packages/typos-lsp/package.yaml @@ -9,7 +9,7 @@ categories: - LSP source: - id: pkg:github/tekumara/typos-vscode@v0.1.18 + id: pkg:github/tekumara/typos-vscode@v0.1.31 asset: - target: darwin_x64 file: typos-lsp-{{ version }}-x86_64-apple-darwin.tar.gz diff --git a/packages/typos/package.yaml b/packages/typos/package.yaml index 7c7c882eec..7f75d781f4 100644 --- a/packages/typos/package.yaml +++ b/packages/typos/package.yaml @@ -10,7 +10,7 @@ categories: - Linter source: - id: pkg:github/crate-ci/typos@v1.21.0 + id: pkg:github/crate-ci/typos@v1.28.4 asset: - target: darwin_x64 file: typos-{{ version }}-x86_64-apple-darwin.tar.gz diff --git a/packages/typstfmt/package.yaml b/packages/typstfmt/package.yaml index 3188d91bfa..55427a7784 100644 --- a/packages/typstfmt/package.yaml +++ b/packages/typstfmt/package.yaml @@ -11,7 +11,7 @@ categories: - Formatter source: - id: pkg:github/astrale-sharp/typstfmt@0.2.9 + id: pkg:github/astrale-sharp/typstfmt@0.2.10 asset: - target: darwin_arm64 file: typstfmt-aarch64-apple-darwin.tar.xz diff --git a/packages/unocss-language-server/package.yaml b/packages/unocss-language-server/package.yaml index 0f8deec518..39bbe72bbc 100644 --- a/packages/unocss-language-server/package.yaml +++ b/packages/unocss-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/unocss-language-server@0.0.10 + id: pkg:npm/unocss-language-server@0.1.5 bin: unocss-language-server: npm:unocss-language-server diff --git a/packages/vacuum/package.yaml b/packages/vacuum/package.yaml index cd311806ed..6666f5cd92 100644 --- a/packages/vacuum/package.yaml +++ b/packages/vacuum/package.yaml @@ -13,7 +13,7 @@ categories: - Linter source: - id: pkg:github/daveshanley/vacuum@v0.10.0 + id: pkg:github/daveshanley/vacuum@v0.14.3 asset: - target: darwin_arm64 file: vacuum_{{ version | strip_prefix "v" }}_darwin_arm64.tar.gz diff --git a/packages/vala-language-server/package.yaml b/packages/vala-language-server/package.yaml index 8dce0801a1..85cdb3025d 100644 --- a/packages/vala-language-server/package.yaml +++ b/packages/vala-language-server/package.yaml @@ -11,7 +11,7 @@ categories: source: # renovate:datasource=git-refs - id: pkg:github/vala-lang/vala-language-server@a49292758922160244d1842cdcba0a5154d1cb27 + id: pkg:github/vala-lang/vala-language-server@31cb5116a4a138365feb709ebb7b8670db604991 build: - target: unix run: | diff --git a/packages/vale-ls/package.yaml b/packages/vale-ls/package.yaml index 738bf985bd..ba0d96dfd7 100644 --- a/packages/vale-ls/package.yaml +++ b/packages/vale-ls/package.yaml @@ -11,7 +11,7 @@ categories: - LSP source: - id: pkg:github/errata-ai/vale-ls@v0.3.7 + id: pkg:github/errata-ai/vale-ls@v0.3.8 asset: - target: darwin_x64 file: vale-ls-x86_64-apple-darwin.zip diff --git a/packages/vale/package.yaml b/packages/vale/package.yaml index ee997c3744..57185aaaea 100644 --- a/packages/vale/package.yaml +++ b/packages/vale/package.yaml @@ -12,7 +12,7 @@ categories: - Linter source: - id: pkg:github/errata-ai/vale@v3.4.2 + id: pkg:github/errata-ai/vale@v3.9.1 asset: - target: darwin_x64 file: vale_{{ version | strip_prefix "v" }}_macOS_64-bit.tar.gz diff --git a/packages/verible/package.yaml b/packages/verible/package.yaml index b9f603a869..e4909a8abc 100644 --- a/packages/verible/package.yaml +++ b/packages/verible/package.yaml @@ -13,7 +13,7 @@ categories: source: # renovate:versioning=loose - id: pkg:github/chipsalliance/verible@v0.0-3665-ga9394662 + id: pkg:github/chipsalliance/verible@v0.0-3876-g2f99cdc9 asset: - target: linux_x64 file: verible-{{version}}-linux-static-x86_64.tar.gz diff --git a/packages/veryl-ls/package.yaml b/packages/veryl-ls/package.yaml index 9f8222b96e..c38ecb6f7c 100644 --- a/packages/veryl-ls/package.yaml +++ b/packages/veryl-ls/package.yaml @@ -11,8 +11,7 @@ categories: - LSP source: - # renovate:versioning=loose - id: pkg:github/veryl-lang/veryl@veryl-v0.6.0 + id: pkg:github/veryl-lang/veryl@v0.13.3 asset: - target: darwin_arm64 file: veryl-aarch64-mac.zip diff --git a/packages/visualforce-language-server/package.yaml b/packages/visualforce-language-server/package.yaml index 9d7919255c..fcc38ab76e 100644 --- a/packages/visualforce-language-server/package.yaml +++ b/packages/visualforce-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/forcedotcom/salesforcedx-vscode@v60.13.1 + id: pkg:github/forcedotcom/salesforcedx-vscode@v62.9.1 asset: file: salesforcedx-vscode-visualforce-{{ version | strip_prefix "v" }}.vsix diff --git a/packages/vscode-solidity-server/package.yaml b/packages/vscode-solidity-server/package.yaml index 5a3092f451..967858d0d8 100644 --- a/packages/vscode-solidity-server/package.yaml +++ b/packages/vscode-solidity-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/vscode-solidity-server@0.0.171 + id: pkg:npm/vscode-solidity-server@0.0.179 bin: vscode-solidity-server: npm:vscode-solidity-server diff --git a/packages/vtsls/package.yaml b/packages/vtsls/package.yaml index e6ca79a91d..df38aa688f 100644 --- a/packages/vtsls/package.yaml +++ b/packages/vtsls/package.yaml @@ -11,10 +11,10 @@ categories: - LSP source: - id: pkg:npm/%40vtsls/language-server@0.2.3 + id: pkg:npm/%40vtsls/language-server@0.2.6 schemas: - lsp: https://raw.githubusercontent.com/yioneko/vtsls/main/packages/service/configuration.schema.json + lsp: https://raw.githubusercontent.com/yioneko/vtsls/server-v{{version}}/packages/service/configuration.schema.json bin: vtsls: npm:vtsls diff --git a/packages/vue-language-server/package.yaml b/packages/vue-language-server/package.yaml index 3417f82c51..326b4614f9 100644 --- a/packages/vue-language-server/package.yaml +++ b/packages/vue-language-server/package.yaml @@ -1,7 +1,7 @@ --- name: vue-language-server description: ⚡ Explore high-performance tooling for Vue. -homepage: https://github.com/johnsoncodehk/volar +homepage: https://github.com/vuejs/language-tools licenses: - MIT languages: @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/%40vue/language-server@2.0.19 + id: pkg:npm/%40vue/language-server@2.1.10 extra_packages: - typescript diff --git a/packages/vulture/package.yaml b/packages/vulture/package.yaml index 9cbeb68fe3..86626d5f7d 100644 --- a/packages/vulture/package.yaml +++ b/packages/vulture/package.yaml @@ -16,7 +16,7 @@ categories: - Linter source: - id: pkg:pypi/vulture@2.11 + id: pkg:pypi/vulture@2.14 bin: vulture: pypi:vulture diff --git a/packages/xmlformatter/package.yaml b/packages/xmlformatter/package.yaml index fabe842caf..a41ec75a2b 100644 --- a/packages/xmlformatter/package.yaml +++ b/packages/xmlformatter/package.yaml @@ -13,7 +13,7 @@ categories: - Formatter source: - id: pkg:pypi/xmlformatter@0.2.6 + id: pkg:pypi/xmlformatter@0.2.8 bin: xmlformat: pypi:xmlformat diff --git a/packages/xo/package.yaml b/packages/xo/package.yaml index dcf38a5f31..e1b290fd27 100644 --- a/packages/xo/package.yaml +++ b/packages/xo/package.yaml @@ -15,7 +15,7 @@ deprecation: message: xo should now be installed locally in the project where it's used. source: - id: pkg:npm/xo@0.58.0 + id: pkg:npm/xo@0.60.0 bin: xo: npm:xo diff --git a/packages/yaml-language-server/package.yaml b/packages/yaml-language-server/package.yaml index 4d4fd87ae3..0bcb73ad20 100644 --- a/packages/yaml-language-server/package.yaml +++ b/packages/yaml-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:npm/yaml-language-server@1.14.0 + id: pkg:npm/yaml-language-server@1.15.0 schemas: lsp: vscode:https://raw.githubusercontent.com/redhat-developer/vscode-yaml/master/package.json diff --git a/packages/yamlfix/package.yaml b/packages/yamlfix/package.yaml index 130bb5c4a6..5cc9475322 100644 --- a/packages/yamlfix/package.yaml +++ b/packages/yamlfix/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:pypi/yamlfix@1.16.0 + id: pkg:pypi/yamlfix@1.17.0 bin: yamlfix: pypi:yamlfix diff --git a/packages/yamlfmt/package.yaml b/packages/yamlfmt/package.yaml index 53da33dab5..3e29761e5c 100644 --- a/packages/yamlfmt/package.yaml +++ b/packages/yamlfmt/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:github/google/yamlfmt@v0.12.1 + id: pkg:github/google/yamlfmt@v0.14.0 asset: - target: darwin_arm64 file: yamlfmt_{{ version | strip_prefix "v" }}_Darwin_arm64.tar.gz diff --git a/packages/yapf/package.yaml b/packages/yapf/package.yaml index 0dd71c3cd8..33067f1fe6 100644 --- a/packages/yapf/package.yaml +++ b/packages/yapf/package.yaml @@ -10,7 +10,7 @@ categories: - Formatter source: - id: pkg:pypi/yapf@0.40.2 + id: pkg:pypi/yapf@0.43.0 extra_packages: - toml diff --git a/packages/yls-yara/package.yaml b/packages/yls-yara/package.yaml index 2ceedd4654..63fdd6c8e7 100644 --- a/packages/yls-yara/package.yaml +++ b/packages/yls-yara/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:pypi/yls-yara@1.4.2 + id: pkg:pypi/yls-yara@1.4.3 supported_platforms: # exclude darwin: https://github.com/avast/yls/issues/80 - linux diff --git a/packages/yq/package.yaml b/packages/yq/package.yaml index a32b31fbf2..e104c81b09 100644 --- a/packages/yq/package.yaml +++ b/packages/yq/package.yaml @@ -9,7 +9,7 @@ languages: categories: [] source: - id: pkg:github/mikefarah/yq@v4.44.1 + id: pkg:github/mikefarah/yq@v4.44.6 asset: - target: darwin_arm64 file: yq_darwin_arm64.tar.gz diff --git a/packages/zeek-language-server/package.yaml b/packages/zeek-language-server/package.yaml index 8096c1a794..a8e4bda922 100644 --- a/packages/zeek-language-server/package.yaml +++ b/packages/zeek-language-server/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/bbannier/zeek-language-server@v0.45.0 + id: pkg:github/bbannier/zeek-language-server@v0.64.0 asset: - target: linux_x64_gnu file: zeek-language-server-x86_64-unknown-linux-gnu diff --git a/packages/zls/package.yaml b/packages/zls/package.yaml index e672e95a65..3bb0438860 100644 --- a/packages/zls/package.yaml +++ b/packages/zls/package.yaml @@ -10,7 +10,7 @@ categories: - LSP source: - id: pkg:github/zigtools/zls@0.12.0 + id: pkg:github/zigtools/zls@0.13.0 asset: - target: darwin_arm64 file: zls-aarch64-macos.tar.xz @@ -84,7 +84,7 @@ source: schemas: - lsp: vscode:https://raw.githubusercontent.com/ziglang/vscode-zig/master/package.json + lsp: https://raw.githubusercontent.com/zigtools/zls/{{version}}/schema.json bin: zls: "{{source.asset.bin}}" diff --git a/renovate.json5 b/renovate.json5 index 922bb4793b..fb23cb43e8 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -1,95 +1,5 @@ { - automerge: true, - dependencyDashboard: true, - platformAutomerge: true, - automergeType: "pr", - commitMessage: "bump({{decodeURIComponent depName}}): update {{commitMessageExtra}}", - separateMajorMinor: false, - prHourlyLimit: 0, - prConcurrentLimit: 0, - branchConcurrentLimit: 0, - rebaseWhen: "conflicted", - enabledManagers: ["regex"], - regexManagers: [ - { - fileMatch: "package\\.yaml$", - matchStringsStrategy: "combination", - matchStrings: [ - "\n id:\\s+pkg:github\\/(?.+)@(?[^\\s\\?#]+)", - "\nname: (?.+)", - "# renovate:datasource=git-refs[\\s\\S]*pkg:github\\/(?.+)@(?[^\\s\\?#]+)", - "# renovate:.*versioning=(?[^,\n]+)", - "# renovate:.*datasource=(?[^,\n]+)", - ], - datasourceTemplate: "{{#if datasource}}{{{datasource}}}{{else}}github-releases{{/if}}", - versioningTemplate: "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}", - packageNameTemplate: "{{#if (containsString datasource 'git-refs')}}https://github.com/{{{packageName}}}{{else}}{{{packageName}}}{{/if}}", - currentValueTemplate: "{{#if (containsString datasource 'git-refs')}}{{else}}{{{decodeURIComponent currentValue}}}{{/if}}", - }, - { - fileMatch: "package\\.yaml$", - matchStringsStrategy: "combination", - matchStrings: [ - "\nname: (?.+)", - "\n id:\\s+pkg:cargo\\/(?.+)@(?[^\\s\\?#]+)", - "\\?.*repository_url=(?https:\\/\\/github\\.com)\\/(?[^\\s&]+)", - "# renovate:.*versioning=(?[^,\n]+)", - ], - datasourceTemplate: "{{#if githubRepo}}github-tags{{else}}crate{{/if}}", - // In cargo versioning, "1.2.3" doesn't mean "exactly 1.2.3" but rather ">=1.2.3 <2.0.0". - // We on the other hand do want to treat versions as fixed - so we change versioning strategy. - versioningTemplate: "semver", - }, - { - fileMatch: "package\\.yaml$", - matchStringsStrategy: "combination", - matchStrings: [ - "\nname: (?.+)", - "\n id:\\s+pkg:golang\\/(?.+)@(?[^\\s\\?#]+)", - ], - datasourceTemplate: "go", - }, - { - fileMatch: "package\\.yaml$", - matchStringsStrategy: "combination", - matchStrings: [ - "\nname: (?.+)", - "\n id:\\s+pkg:gem\\/(?.+)@(?[^\\s\\?#]+)", - ], - datasourceTemplate: "rubygems", - }, - { - fileMatch: "package\\.yaml$", - matchStringsStrategy: "combination", - matchStrings: [ - "\nname: (?.+)", - "\n id:\\s+pkg:composer\\/(?.+)@(?[^\\s\\?#]+)", - ], - datasourceTemplate: "packagist", - }, - { - fileMatch: "package\\.yaml$", - matchStringsStrategy: "combination", - matchStrings: [ - "\nname: (?.+)", - "\n id:\\s+pkg:(?npm|pypi|nuget)\\/(?.+)@(?[^\\s\\?#]+)", - ], - datasourceTemplate: "{{datasource}}", - }, - { - fileMatch: "package\\.yaml$", - matchStringsStrategy: "combination", - matchStrings: [ - "\nname: (?.+)", - "\n id:\\s+pkg:generic\\/(?.+)@(?[^\\s\\?#]+)", - "# renovate:.*versioning=(?[^,\n]+)", - "# renovate:.*datasource=(?[^,\n]+)", - ], - datasourceTemplate: "{{{datasource}}}", - versioningTemplate: "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}", - currentValueTemplate: "{{{decodeURIComponent currentValue}}}", - }, - ], + extends: ["github>mason-org/registry-renovate-config"], packageRules: [ { matchDepNames: ["cucumber-language-server"], @@ -106,9 +16,14 @@ { matchDepNames: ["ansible-language-server"], allowedVersions: "!/1\\.2\\.2/" + }, + { + matchDepNames: ["autotools-language-server"], + allowedVersions: "!/0\\.0\\.19/" } ], "ignoreDeps": [ - "rescript-lsp" + "rescript-lsp", + "cuepls" ] } diff --git a/schemas/components/bin.json b/schemas/components/bin.json deleted file mode 100644 index eeabc3b8f6..0000000000 --- a/schemas/components/bin.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/bin", - "type": "object", - "patternProperties": { - "^[a-zA-Z0-9_\\-\\.]+$": { - "type": "string" - } - }, - "additionalProperties": false -} diff --git a/schemas/components/deprecation.json b/schemas/components/deprecation.json deleted file mode 100644 index c5804fd1b1..0000000000 --- a/schemas/components/deprecation.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/deprecation", - "type": "object", - "additionalProperties": false, - "required": ["since", "message"], - "properties": { - "message": { - "type": "string", - "description": "Deprecation message shown to users. Should include alternative installation methods if available." - }, - "since": { - "type": "string", - "description": "The version number when the deprecation was made." - } - } -} diff --git a/schemas/components/opt.json b/schemas/components/opt.json deleted file mode 100644 index ac79bb0cbd..0000000000 --- a/schemas/components/opt.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/opt", - "type": "object", - "patternProperties": { - "^[a-zA-Z0-9_\\-\\./]+$": { - "type": "string" - } - }, - "additionalProperties": false -} diff --git a/schemas/components/schemas.json b/schemas/components/schemas.json deleted file mode 100644 index 026c4cded5..0000000000 --- a/schemas/components/schemas.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/schemas", - "type": "object", - "additionalProperties": false, - "properties": { - "lsp": { - "type": "string", - "description": "A URL to where the LSP JSON schema can be downloaded from. If the provided URL is a VSCode package.json you MUST prefix the url with vscode:", - "pattern": "^(vscode:)?https://" - } - } -} diff --git a/schemas/components/share.json b/schemas/components/share.json deleted file mode 100644 index 75be7d74f7..0000000000 --- a/schemas/components/share.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/share", - "type": "object", - "patternProperties": { - "^[a-zA-Z0-9_\\-\\./]+$": { - "type": "string" - } - }, - "additionalProperties": false -} diff --git a/schemas/components/source.json b/schemas/components/source.json deleted file mode 100644 index 3539720fca..0000000000 --- a/schemas/components/source.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/source", - "$defs": { - "Source": { - "oneOf": [ - { "$ref": "sources/cargo" }, - { "$ref": "sources/composer" }, - { "$ref": "sources/gem" }, - { "$ref": "sources/generic" }, - { "$ref": "sources/github" }, - { "$ref": "sources/golang" }, - { "$ref": "sources/luarocks" }, - { "$ref": "sources/npm" }, - { "$ref": "sources/nuget" }, - { "$ref": "sources/opam" }, - { "$ref": "sources/openvsx" }, - { "$ref": "sources/pypi" } - ] - } - }, - "allOf": [ - { - "type": "object", - "properties": { - "version_overrides": { - "type": "array", - "items": { - "type": "object", - "allOf": [ - { - "type": "object", - "required": ["constraint"], - "properties": { - "constraint": { - "type": "string", - "pattern": "^semver:(<=)?v?\\d+\\.\\d+\\.\\d+" - } - } - }, - { - "$ref": "#/$defs/Source" - } - ] - } - } - } - }, - { - "$ref": "#/$defs/Source" - } - ] -} diff --git a/schemas/components/sources/build.json b/schemas/components/sources/build.json deleted file mode 100644 index ac1a7d6fd8..0000000000 --- a/schemas/components/sources/build.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/sources/build", - "type": "object", - "required": ["run"], - "properties": { - "target": { - "oneOf": [ - { - "type": "array", - "items": { - "$ref": "/mason-registry.json/enums/platform" - } - }, - { - "$ref": "/mason-registry.json/enums/platform" - } - ] - }, - "run": { - "type": "string", - "description": "The shell script to run. Platform sensitive (bash on Unix, powershell on Windows)." - }, - "env": { - "type": "object", - "additionalProperties": false, - "patternProperties": { - "^[A-Z0-9_]+$": { - "type": "string" - } - } - }, - "staged": { - "type": "boolean", - "description": "Whether to run the build script in a staging location (defaults to true)." - } - } -} diff --git a/schemas/components/sources/cargo.json b/schemas/components/sources/cargo.json deleted file mode 100644 index 227a0511e0..0000000000 --- a/schemas/components/sources/cargo.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/sources/cargo", - "type": "object", - "required": ["id"], - "properties": { - "id": { - "type": "string", - "pattern": "^pkg:cargo/.+@.+" - }, - "supported_platforms": { - "type": "array", - "description": "List of platforms supported by the cargo package.", - "items": { - "$ref": "/mason-registry.json/enums/platform" - } - } - } -} diff --git a/schemas/components/sources/composer.json b/schemas/components/sources/composer.json deleted file mode 100644 index dad1938102..0000000000 --- a/schemas/components/sources/composer.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/sources/composer", - "type": "object", - "required": [ - "id" - ], - "properties": { - "id": { - "type": "string", - "pattern": "^pkg:composer/.+/.+@.+" - } - } -} diff --git a/schemas/components/sources/gem.json b/schemas/components/sources/gem.json deleted file mode 100644 index 651deb8c61..0000000000 --- a/schemas/components/sources/gem.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/sources/gem", - "type": "object", - "required": ["id"], - "properties": { - "id": { - "type": "string", - "pattern": "^pkg:gem/.+@.+" - }, - "extra_packages": { - "type": "array", - "description": "Extra gem packages required by the main package to function.", - "items": { - "type": "string" - } - }, - "supported_platforms": { - "type": "array", - "description": "List of platforms supported by the gem package.", - "items": { - "$ref": "/mason-registry.json/enums/platform" - } - } - } -} diff --git a/schemas/components/sources/generic/build.json b/schemas/components/sources/generic/build.json deleted file mode 100644 index 66922cbe41..0000000000 --- a/schemas/components/sources/generic/build.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/sources/generic/build", - "type": "object", - "required": ["id", "build"], - "properties": { - "id": { - "type": "string", - "pattern": "^pkg:generic/.+@.+" - }, - "build": { - "oneOf": [ - { - "type": "array", - "items": { - "$ref": "/mason-registry.json/components/sources/build" - } - }, - { - "$ref": "/mason-registry.json/components/sources/build" - } - ] - } - } -} diff --git a/schemas/components/sources/generic/download.json b/schemas/components/sources/generic/download.json deleted file mode 100644 index fb26dec6eb..0000000000 --- a/schemas/components/sources/generic/download.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/sources/generic/download", - "type": "object", - "$defs": { - "Download": { - "type": "object", - "required": ["files"], - "additionalProperties": true, - "properties": { - "target": { - "oneOf": [ - { - "type": "array", - "items": { - "$ref": "/mason-registry.json/enums/platform" - } - }, - { - "$ref": "/mason-registry.json/enums/platform" - } - ] - }, - "files": { - "type": "object", - "patternProperties": { - "^[a-zA-Z0-9_\\-\\.]+$": { - "type": "string", - "pattern": "^https?://" - } - }, - "additionalProperties": false - } - } - } - }, - "required": ["id", "download"], - "properties": { - "id": { - "type": "string", - "pattern": "^pkg:generic/.+@.+" - }, - "download": { - "oneOf": [ - { - "type": "array", - "items": { - "$ref": "#/$defs/Download" - } - }, - { - "$ref": "#/$defs/Download" - } - ] - } - } -} diff --git a/schemas/components/sources/generic/generic.json b/schemas/components/sources/generic/generic.json deleted file mode 100644 index e5a4f97c15..0000000000 --- a/schemas/components/sources/generic/generic.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/sources/generic", - "oneOf": [ - { - "$ref": "generic/download" - }, - { - "$ref": "generic/build" - } - ] -} diff --git a/schemas/components/sources/github/build.json b/schemas/components/sources/github/build.json deleted file mode 100644 index 7f6b17d9b3..0000000000 --- a/schemas/components/sources/github/build.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/sources/github/build", - "type": "object", - "required": ["id", "build"], - "properties": { - "id": { - "type": "string", - "pattern": "^pkg:github/.+/.+@.+" - }, - "build": { - "oneOf": [ - { - "type": "array", - "items": { - "$ref": "/mason-registry.json/components/sources/build" - } - }, - { - "$ref": "/mason-registry.json/components/sources/build" - } - ] - } - } -} diff --git a/schemas/components/sources/github/github.json b/schemas/components/sources/github/github.json deleted file mode 100644 index 86b7456094..0000000000 --- a/schemas/components/sources/github/github.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/sources/github", - "oneOf": [ - { - "$ref": "github/release" - }, - { - "$ref": "github/build" - } - ] -} diff --git a/schemas/components/sources/github/release.json b/schemas/components/sources/github/release.json deleted file mode 100644 index 5a535019c2..0000000000 --- a/schemas/components/sources/github/release.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/sources/github/release", - "type": "object", - "required": ["id", "asset"], - "properties": { - "id": { - "type": "string", - "pattern": "^pkg:github/.+/.+@.+" - }, - "asset": { - "oneOf": [ - { - "type": "array", - "items": { - "type": "object", - "additionalProperties": true, - "required": ["file", "target"], - "properties": { - "target": { - "oneOf": [ - { - "type": "array", - "items": { - "$ref": "/mason-registry.json/enums/platform" - } - }, - { - "$ref": "/mason-registry.json/enums/platform" - } - ] - }, - "file": { - "oneOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "string" - } - ] - } - } - } - }, - { - "type": "object", - "additionalProperties": true, - "required": ["file"], - "properties": { - "file": { - "oneOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "string" - } - ] - } - } - } - ] - } - } -} diff --git a/schemas/components/sources/golang.json b/schemas/components/sources/golang.json deleted file mode 100644 index 65873c6f56..0000000000 --- a/schemas/components/sources/golang.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/sources/golang", - "type": "object", - "required": ["id"], - "properties": { - "id": { - "type": "string", - "pattern": "^pkg:golang/.+/.+@.+" - }, - "extra_packages": { - "type": "array", - "description": "Extra golang packages required by the main package to function.", - "items": { - "type": "string" - } - } - } -} diff --git a/schemas/components/sources/luarocks.json b/schemas/components/sources/luarocks.json deleted file mode 100644 index 9f9ab8b633..0000000000 --- a/schemas/components/sources/luarocks.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/sources/luarocks", - "type": "object", - "required": ["id"], - "properties": { - "id": { - "type": "string", - "pattern": "^pkg:luarocks/.+@.+" - } - } -} diff --git a/schemas/components/sources/npm.json b/schemas/components/sources/npm.json deleted file mode 100644 index 1ad81d3c19..0000000000 --- a/schemas/components/sources/npm.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/sources/npm", - "type": "object", - "required": ["id"], - "properties": { - "id": { - "type": "string", - "pattern": "^pkg:npm/.+@.+" - }, - "extra_packages": { - "type": "array", - "description": "Extra npm packages required by the main package to function.", - "items": { - "type": "string" - } - } - } -} diff --git a/schemas/components/sources/nuget.json b/schemas/components/sources/nuget.json deleted file mode 100644 index b0b6496dea..0000000000 --- a/schemas/components/sources/nuget.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/sources/nuget", - "type": "object", - "required": ["id"], - "properties": { - "id": { - "type": "string", - "pattern": "^pkg:nuget/.+@.+" - } - } -} diff --git a/schemas/components/sources/opam.json b/schemas/components/sources/opam.json deleted file mode 100644 index ae325c57e5..0000000000 --- a/schemas/components/sources/opam.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/sources/opam", - "type": "object", - "required": ["id"], - "properties": { - "id": { - "type": "string", - "pattern": "^pkg:opam/.+@.+" - } - } -} diff --git a/schemas/components/sources/openvsx.json b/schemas/components/sources/openvsx.json deleted file mode 100644 index 7e11114134..0000000000 --- a/schemas/components/sources/openvsx.json +++ /dev/null @@ -1,89 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/sources/openvsx", - "type": "object", - "required": ["id", "download"], - "properties": { - "id": { - "type": "string", - "pattern": "^pkg:openvsx/.+/.+@.+" - }, - "download": { - "oneOf": [ - { - "type": "array", - "items": { - "type": "object", - "additionalProperties": true, - "required": ["file", "target"], - "properties": { - "target": { - "oneOf": [ - { - "type": "array", - "items": { - "$ref": "/mason-registry.json/enums/platform" - } - }, - { - "$ref": "/mason-registry.json/enums/platform" - } - ] - }, - "file": { - "oneOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "string" - } - ] - }, - "target_platform": { - "type": "string", - "enum": [ - "in32-x64", - "win32-ia32", - "win32-arm64", - "linux-x64", - "linux-arm64", - "linux-armhf", - "alpine-x64", - "alpine-arm64", - "darwin-x64", - "darwin-arm64", - "web", - "universal" - ] - } - } - } - }, - { - "type": "object", - "additionalProperties": true, - "required": ["file"], - "properties": { - "file": { - "oneOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "string" - } - ] - } - } - } - ] - } - } -} diff --git a/schemas/components/sources/pypi.json b/schemas/components/sources/pypi.json deleted file mode 100644 index 243f823e04..0000000000 --- a/schemas/components/sources/pypi.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/components/sources/pypi", - "type": "object", - "required": ["id"], - "properties": { - "id": { - "type": "string", - "pattern": "^pkg:pypi/.+@.+" - }, - "extra_packages": { - "type": "array", - "description": "Extra pypi packages required by the main package to function.", - "items": { - "type": "string" - } - }, - "supported_platforms": { - "type": "array", - "description": "List of platforms supported by the pypi package.", - "items": { - "$ref": "/mason-registry.json/enums/platform" - } - } - } -} diff --git a/schemas/enums/category.json b/schemas/enums/category.json deleted file mode 100644 index 54c6e072f0..0000000000 --- a/schemas/enums/category.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/enums/category", - "type": "string", - "enum": ["Compiler", "DAP", "Formatter", "LSP", "Linter", "Runtime"] -} diff --git a/schemas/enums/language.json b/schemas/enums/language.json deleted file mode 100644 index 4526fa9868..0000000000 --- a/schemas/enums/language.json +++ /dev/null @@ -1,196 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/enums/language", - "type": "string", - "enum": [ - ".NET", - "1С:Enterprise", - "AWK", - "Ada", - "Aiken", - "Angular", - "Ansible", - "Antlers", - "Apex", - "Arduino", - "Assembly", - "Astro", - "Azure Pipelines", - "Bash", - "Bazel", - "Beancount", - "Bicep", - "Bitbake", - "Blade", - "BrighterScript", - "C", - "C#", - "C++", - "CDS", - "CMake", - "CQL", - "CSS", - "Cairo", - "Clarity", - "Clojure", - "ClojureScript", - "CloudFormation", - "COBOL", - "CodeQL", - "CoffeeScript", - "Coq", - "Crystal", - "Csh", - "Cucumber", - "Cue", - "Cypher", - "D", - "DOT", - "Dart", - "Dhall", - "Django", - "Docker", - "Drools", - "DTS", - "Earthly", - "Elixir", - "Elm", - "Ember", - "Emmet", - "Erg", - "Erlang", - "F#", - "Facility Service Definition", - "Fennel", - "Flow", - "Flux", - "Fortran", - "GDScript", - "Glimmer", - "GLSL", - "Go", - "Gradle", - "GraphQL", - "Groovy", - "HAML", - "HCL", - "HTML", - "HTMX", - "Handlebars", - "Haskell", - "Haxe", - "Helm", - "Hoon", - "IPython", - "JSON", - "JSON-LD", - "JSX", - "Java", - "JavaScript", - "Jinja", - "Jq", - "Jsonnet", - "Julia", - "KCL", - "Kotlin", - "Ksh", - "Kubernetes", - "LESS", - "LaTeX", - "Lean 3", - "Lelwel", - "Liquid", - "Lua", - "Luau", - "M68K", - "MDX", - "Makefile", - "Markdown", - "Matlab", - "MCFunction", - "Meson", - "Metamath Zero", - "Mksh", - "Motoko", - "Move", - "Mustache", - "Nginx", - "Nickel", - "Nim", - "Nix", - "Nunjucks", - "OCaml", - "Odin", - "OneScript", - "OpenAPI", - "OpenCL", - "OpenEdge", - "OpenFOAM", - "OpenGL", - "OpenSCAD", - "PHP", - "PICO-8", - "Perl", - "Pest", - "PowerShell", - "Prisma", - "Progress", - "Protobuf", - "Puppet", - "PureScript", - "Python", - "R", - "Raku", - "ReScript", - "Reason", - "Rego", - "Robot Framework", - "Ruby", - "Rust", - "SCSS", - "SQL", - "Salt", - "reStructuredText", - "Sass", - "Scala", - "Sh", - "Shell", - "Slang", - "Slint", - "Smithy", - "Snakemake", - "Snyk", - "Solidity", - "Sphinx", - "Standard ML", - "Starlark", - "Stylelint", - "Svelte", - "Swift", - "systemd", - "SystemVerilog", - "TOML", - "Teal", - "Terraform", - "Text", - "Thrift", - "Twig", - "TypeScript", - "Typst", - "V", - "Vala", - "VHDL", - "Verilog", - "Veryl", - "VimScript", - "Visualforce", - "Vue", - "WGSL", - "XML", - "YAML", - "YARA", - "Zeek", - "Zig", - "Zsh" - ] -} diff --git a/schemas/enums/platform.json b/schemas/enums/platform.json deleted file mode 100644 index ef6da9ada7..0000000000 --- a/schemas/enums/platform.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/enums/platform", - "type": "string", - "enum": [ - "unix", - "darwin", - "darwin_arm64", - "darwin_x64", - "linux", - "linux_arm", - "linux_arm64", - "linux_arm64_gnu", - "linux_arm64_musl", - "linux_arm64_openbsd", - "linux_arm_gnu", - "linux_armv6_gnu", - "linux_armv6l", - "linux_armv7_gnu", - "linux_armv7l", - "linux_x64", - "linux_x64_gnu", - "linux_x64_musl", - "linux_x64_openbsd", - "linux_x86", - "linux_x86_gnu", - "linux_x86_musl", - "linux_x86_openbsd", - "win", - "win_arm", - "win_arm64", - "win_armv6l", - "win_armv7l", - "win_x64", - "win_x86" - ] -} diff --git a/schemas/enums/spdx-license.json b/schemas/enums/spdx-license.json deleted file mode 100644 index f67838937a..0000000000 --- a/schemas/enums/spdx-license.json +++ /dev/null @@ -1,511 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json/enums/spdx-license", - "$comment": "SPDX license list; releaseDate=2022-12-15; source=https://raw.githubusercontent.com/spdx/license-list-data/master/json/licenses.json", - "enum": [ - "proprietary", - "0BSD", - "AAL", - "Abstyles", - "Adobe-2006", - "Adobe-Glyph", - "ADSL", - "AFL-1.1", - "AFL-1.2", - "AFL-2.0", - "AFL-2.1", - "AFL-3.0", - "Afmparse", - "AGPL-1.0", - "AGPL-1.0-only", - "AGPL-1.0-or-later", - "AGPL-3.0", - "AGPL-3.0-only", - "AGPL-3.0-or-later", - "Aladdin", - "AMDPLPA", - "AML", - "AMPAS", - "ANTLR-PD", - "ANTLR-PD-fallback", - "Apache-1.0", - "Apache-1.1", - "Apache-2.0", - "APAFML", - "APL-1.0", - "App-s2p", - "APSL-1.0", - "APSL-1.1", - "APSL-1.2", - "APSL-2.0", - "Arphic-1999", - "Artistic-1.0", - "Artistic-1.0-cl8", - "Artistic-1.0-Perl", - "Artistic-2.0", - "Baekmuk", - "Bahyph", - "Barr", - "Beerware", - "Bitstream-Vera", - "BitTorrent-1.0", - "BitTorrent-1.1", - "blessing", - "BlueOak-1.0.0", - "Borceux", - "BSD-1-Clause", - "BSD-2-Clause", - "BSD-2-Clause-FreeBSD", - "BSD-2-Clause-NetBSD", - "BSD-2-Clause-Patent", - "BSD-2-Clause-Views", - "BSD-3-Clause", - "BSD-3-Clause-Attribution", - "BSD-3-Clause-Clear", - "BSD-3-Clause-LBNL", - "BSD-3-Clause-Modification", - "BSD-3-Clause-No-Military-License", - "BSD-3-Clause-No-Nuclear-License", - "BSD-3-Clause-No-Nuclear-License-2014", - "BSD-3-Clause-No-Nuclear-Warranty", - "BSD-3-Clause-Open-MPI", - "BSD-4-Clause", - "BSD-4-Clause-Shortened", - "BSD-4-Clause-UC", - "BSD-Protection", - "BSD-Source-Code", - "BSL-1.0", - "BUSL-1.1", - "bzip2-1.0.5", - "bzip2-1.0.6", - "C-UDA-1.0", - "CAL-1.0", - "CAL-1.0-Combined-Work-Exception", - "Caldera", - "CATOSL-1.1", - "CC-BY-1.0", - "CC-BY-2.0", - "CC-BY-2.5", - "CC-BY-2.5-AU", - "CC-BY-3.0", - "CC-BY-3.0-AT", - "CC-BY-3.0-DE", - "CC-BY-3.0-IGO", - "CC-BY-3.0-NL", - "CC-BY-3.0-US", - "CC-BY-4.0", - "CC-BY-NC-1.0", - "CC-BY-NC-2.0", - "CC-BY-NC-2.5", - "CC-BY-NC-3.0", - "CC-BY-NC-3.0-DE", - "CC-BY-NC-4.0", - "CC-BY-NC-ND-1.0", - "CC-BY-NC-ND-2.0", - "CC-BY-NC-ND-2.5", - "CC-BY-NC-ND-3.0", - "CC-BY-NC-ND-3.0-DE", - "CC-BY-NC-ND-3.0-IGO", - "CC-BY-NC-ND-4.0", - "CC-BY-NC-SA-1.0", - "CC-BY-NC-SA-2.0", - "CC-BY-NC-SA-2.0-FR", - "CC-BY-NC-SA-2.0-UK", - "CC-BY-NC-SA-2.5", - "CC-BY-NC-SA-3.0", - "CC-BY-NC-SA-3.0-DE", - "CC-BY-NC-SA-3.0-IGO", - "CC-BY-NC-SA-4.0", - "CC-BY-ND-1.0", - "CC-BY-ND-2.0", - "CC-BY-ND-2.5", - "CC-BY-ND-3.0", - "CC-BY-ND-3.0-DE", - "CC-BY-ND-4.0", - "CC-BY-SA-1.0", - "CC-BY-SA-2.0", - "CC-BY-SA-2.0-UK", - "CC-BY-SA-2.1-JP", - "CC-BY-SA-2.5", - "CC-BY-SA-3.0", - "CC-BY-SA-3.0-AT", - "CC-BY-SA-3.0-DE", - "CC-BY-SA-4.0", - "CC-PDDC", - "CC0-1.0", - "CDDL-1.0", - "CDDL-1.1", - "CDL-1.0", - "CDLA-Permissive-1.0", - "CDLA-Permissive-2.0", - "CDLA-Sharing-1.0", - "CECILL-1.0", - "CECILL-1.1", - "CECILL-2.0", - "CECILL-2.1", - "CECILL-B", - "CECILL-C", - "CERN-OHL-1.1", - "CERN-OHL-1.2", - "CERN-OHL-P-2.0", - "CERN-OHL-S-2.0", - "CERN-OHL-W-2.0", - "checkmk", - "ClArtistic", - "CNRI-Jython", - "CNRI-Python", - "CNRI-Python-GPL-Compatible", - "COIL-1.0", - "Community-Spec-1.0", - "Condor-1.1", - "copyleft-next-0.3.0", - "copyleft-next-0.3.1", - "CPAL-1.0", - "CPL-1.0", - "CPOL-1.02", - "Crossword", - "CrystalStacker", - "CUA-OPL-1.0", - "Cube", - "curl", - "D-FSL-1.0", - "diffmark", - "DL-DE-BY-2.0", - "DOC", - "Dotseqn", - "DRL-1.0", - "DSDP", - "dvipdfm", - "ECL-1.0", - "ECL-2.0", - "eCos-2.0", - "EFL-1.0", - "EFL-2.0", - "eGenix", - "Elastic-2.0", - "Entessa", - "EPICS", - "EPL-1.0", - "EPL-2.0", - "ErlPL-1.1", - "etalab-2.0", - "EUDatagrid", - "EUPL-1.0", - "EUPL-1.1", - "EUPL-1.2", - "Eurosym", - "Fair", - "FDK-AAC", - "Frameworx-1.0", - "FreeBSD-DOC", - "FreeImage", - "FSFAP", - "FSFUL", - "FSFULLR", - "FSFULLRWD", - "FTL", - "GD", - "GFDL-1.1", - "GFDL-1.1-invariants-only", - "GFDL-1.1-invariants-or-later", - "GFDL-1.1-no-invariants-only", - "GFDL-1.1-no-invariants-or-later", - "GFDL-1.1-only", - "GFDL-1.1-or-later", - "GFDL-1.2", - "GFDL-1.2-invariants-only", - "GFDL-1.2-invariants-or-later", - "GFDL-1.2-no-invariants-only", - "GFDL-1.2-no-invariants-or-later", - "GFDL-1.2-only", - "GFDL-1.2-or-later", - "GFDL-1.3", - "GFDL-1.3-invariants-only", - "GFDL-1.3-invariants-or-later", - "GFDL-1.3-no-invariants-only", - "GFDL-1.3-no-invariants-or-later", - "GFDL-1.3-only", - "GFDL-1.3-or-later", - "Giftware", - "GL2PS", - "Glide", - "Glulxe", - "GLWTPL", - "gnuplot", - "GPL-1.0", - "GPL-1.0-only", - "GPL-1.0-or-later", - "GPL-1.0+", - "GPL-2.0", - "GPL-2.0-only", - "GPL-2.0-or-later", - "GPL-2.0-with-autoconf-exception", - "GPL-2.0-with-bison-exception", - "GPL-2.0-with-classpath-exception", - "GPL-2.0-with-font-exception", - "GPL-2.0-with-GCC-exception", - "GPL-2.0+", - "GPL-3.0", - "GPL-3.0-only", - "GPL-3.0-or-later", - "GPL-3.0-with-autoconf-exception", - "GPL-3.0-with-GCC-exception", - "GPL-3.0+", - "gSOAP-1.3b", - "HaskellReport", - "Hippocratic-2.1", - "HPND", - "HPND-sell-variant", - "HTMLTIDY", - "IBM-pibs", - "ICU", - "IJG", - "ImageMagick", - "iMatix", - "Imlib2", - "Info-ZIP", - "Intel", - "Intel-ACPI", - "Interbase-1.0", - "IPA", - "IPL-1.0", - "ISC", - "Jam", - "JasPer-2.0", - "JPNIC", - "JSON", - "Knuth-CTAN", - "LAL-1.2", - "LAL-1.3", - "Latex2e", - "Leptonica", - "LGPL-2.0", - "LGPL-2.0-only", - "LGPL-2.0-or-later", - "LGPL-2.0+", - "LGPL-2.1", - "LGPL-2.1-only", - "LGPL-2.1-or-later", - "LGPL-2.1+", - "LGPL-3.0", - "LGPL-3.0-only", - "LGPL-3.0-or-later", - "LGPL-3.0+", - "LGPLLR", - "Libpng", - "libpng-2.0", - "libselinux-1.0", - "libtiff", - "libutil-David-Nugent", - "LiLiQ-P-1.1", - "LiLiQ-R-1.1", - "LiLiQ-Rplus-1.1", - "Linux-man-pages-copyleft", - "Linux-OpenIB", - "LOOP", - "LPL-1.0", - "LPL-1.02", - "LPPL-1.0", - "LPPL-1.1", - "LPPL-1.2", - "LPPL-1.3a", - "LPPL-1.3c", - "LZMA-SDK-9.11-to-9.20", - "LZMA-SDK-9.22", - "MakeIndex", - "Minpack", - "MirOS", - "MIT", - "MIT-0", - "MIT-advertising", - "MIT-CMU", - "MIT-enna", - "MIT-feh", - "MIT-Modern-Variant", - "MIT-open-group", - "MITNFA", - "Motosoto", - "mpi-permissive", - "mpich2", - "MPL-1.0", - "MPL-1.1", - "MPL-2.0", - "MPL-2.0-no-copyleft-exception", - "mplus", - "MS-LPL", - "MS-PL", - "MS-RL", - "MTLL", - "MulanPSL-1.0", - "MulanPSL-2.0", - "Multics", - "Mup", - "NAIST-2003", - "NASA-1.3", - "Naumen", - "NBPL-1.0", - "NCGL-UK-2.0", - "NCSA", - "Net-SNMP", - "NetCDF", - "Newsletr", - "NGPL", - "NICTA-1.0", - "NIST-PD", - "NIST-PD-fallback", - "NLOD-1.0", - "NLOD-2.0", - "NLPL", - "Nokia", - "NOSL", - "Noweb", - "NPL-1.0", - "NPL-1.1", - "NPOSL-3.0", - "NRL", - "NTP", - "NTP-0", - "Nunit", - "O-UDA-1.0", - "OCCT-PL", - "OCLC-2.0", - "ODbL-1.0", - "ODC-By-1.0", - "OFL-1.0", - "OFL-1.0-no-RFN", - "OFL-1.0-RFN", - "OFL-1.1", - "OFL-1.1-no-RFN", - "OFL-1.1-RFN", - "OGC-1.0", - "OGDL-Taiwan-1.0", - "OGL-Canada-2.0", - "OGL-UK-1.0", - "OGL-UK-2.0", - "OGL-UK-3.0", - "OGTSL", - "OLDAP-1.1", - "OLDAP-1.2", - "OLDAP-1.3", - "OLDAP-1.4", - "OLDAP-2.0", - "OLDAP-2.0.1", - "OLDAP-2.1", - "OLDAP-2.2", - "OLDAP-2.2.1", - "OLDAP-2.2.2", - "OLDAP-2.3", - "OLDAP-2.4", - "OLDAP-2.5", - "OLDAP-2.6", - "OLDAP-2.7", - "OLDAP-2.8", - "OML", - "OpenSSL", - "OPL-1.0", - "OPUBL-1.0", - "OSET-PL-2.1", - "OSL-1.0", - "OSL-1.1", - "OSL-2.0", - "OSL-2.1", - "OSL-3.0", - "Parity-6.0.0", - "Parity-7.0.0", - "PDDL-1.0", - "PHP-3.0", - "PHP-3.01", - "Plexus", - "PolyForm-Noncommercial-1.0.0", - "PolyForm-Small-Business-1.0.0", - "PostgreSQL", - "PSF-2.0", - "psfrag", - "psutils", - "Python-2.0", - "Python-2.0.1", - "Qhull", - "QPL-1.0", - "Rdisc", - "RHeCos-1.1", - "RPL-1.1", - "RPL-1.5", - "RPSL-1.0", - "RSA-MD", - "RSCPL", - "Ruby", - "SAX-PD", - "Saxpath", - "SCEA", - "SchemeReport", - "Sendmail", - "Sendmail-8.23", - "SGI-B-1.0", - "SGI-B-1.1", - "SGI-B-2.0", - "SHL-0.5", - "SHL-0.51", - "SimPL-2.0", - "SISSL", - "SISSL-1.2", - "Sleepycat", - "SMLNJ", - "SMPPL", - "SNIA", - "Spencer-86", - "Spencer-94", - "Spencer-99", - "SPL-1.0", - "SSH-OpenSSH", - "SSH-short", - "SSPL-1.0", - "StandardML-NJ", - "SugarCRM-1.1.3", - "SWL", - "Symlinks", - "TAPR-OHL-1.0", - "TCL", - "TCP-wrappers", - "TMate", - "TORQUE-1.1", - "TOSL", - "TU-Berlin-1.0", - "TU-Berlin-2.0", - "UCL-1.0", - "Unicode-DFS-2015", - "Unicode-DFS-2016", - "Unicode-TOU", - "Unlicense", - "UPL-1.0", - "Vim", - "VOSTROM", - "VSL-1.0", - "W3C", - "W3C-19980720", - "W3C-20150513", - "Watcom-1.0", - "Wsuipa", - "WTFPL", - "wxWindows", - "X11", - "X11-distribute-modifications-variant", - "Xerox", - "XFree86-1.1", - "xinetd", - "Xnet", - "xpp", - "XSkat", - "YPL-1.0", - "YPL-1.1", - "Zed", - "Zend-2.0", - "Zimbra-1.3", - "Zimbra-1.4", - "Zlib", - "zlib-acknowledgement", - "ZPL-1.1", - "ZPL-2.0", - "ZPL-2.1" - ], - "type": "string" -} diff --git a/schemas/package.schema.json b/schemas/package.schema.json deleted file mode 100644 index 065b2c8454..0000000000 --- a/schemas/package.schema.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://json.schemastore.org/mason-registry.json", - "title": "Mason Registry package schema", - "description": "Schema for package definitions.", - "type": "object", - "additionalProperties": false, - "properties": { - "name": { - "type": "string", - "description": "The package name. MUST be unique within the registry it belongs to." - }, - "description": { - "type": "string", - "description": "The description of the package. Usually sourced upstream." - }, - "homepage": { - "type": "string", - "format": "uri", - "pattern": "^https?://", - "description": "A URL to the package's homepage." - }, - "licenses": { - "type": "array", - "minItems": 1, - "items": { - "$ref": "mason-registry.json/enums/spdx-license" - } - }, - "languages": { - "type": "array", - "items": { - "$ref": "mason-registry.json/enums/language" - } - }, - "categories": { - "type": "array", - "items": { - "$ref": "mason-registry.json/enums/category" - } - }, - "deprecation": { - "$ref": "mason-registry.json/components/deprecation" - }, - "source": { - "$ref": "mason-registry.json/components/source" - }, - "schemas": { - "$ref": "mason-registry.json/components/schemas" - }, - "bin": { - "$ref": "mason-registry.json/components/bin" - }, - "share": { - "$ref": "mason-registry.json/components/share" - }, - "opt": { - "$ref": "mason-registry.json/components/opt" - }, - "ci_skip": { - "oneOf": [ - { - "type": "boolean" - }, - { - "type": "array", - "items": { - "$ref": "mason-registry.json/enums/platform" - } - } - ] - } - }, - "required": ["name", "description", "homepage", "licenses", "languages", "categories", "source"] -}