Merge master into staging-next

authored by

nixpkgs-ci[bot] and committed by
GitHub
be2d8916 8cb33e53

+3703 -5530
+1 -2
.editorconfig
··· 23 23 24 24 # see https://nixos.org/nixpkgs/manual/#chap-conventions 25 25 26 - # Match json/lockfiles/markdown/nix/perl/python/ruby/shell/docbook files, set indent to spaces 27 - [*.{bash,js,json,lock,md,nix,pl,pm,py,rb,sh,xml}] 26 + [*.{bash,css,js,json,lock,md,nix,pl,pm,py,rb,sh,xml}] 28 27 indent_style = space 29 28 30 29 # Match docbook files, set indent width of one
+51
.github/actions/checkout/action.yml
··· 1 + name: Checkout 2 + 3 + description: 'Checkout into trusted / untrusted / pinned folders consistently.' 4 + 5 + inputs: 6 + merged-as-untrusted-at: 7 + description: "Whether and which SHA to checkout for the merge commit in the ./untrusted folder." 8 + pinned-from: 9 + description: "Whether to checkout the pinned nixpkgs for CI and from where (trusted, untrusted)." 10 + target-as-trusted-at: 11 + description: "Whether and which SHA to checkout for the target commit in the ./trusted folder." 12 + 13 + runs: 14 + using: composite 15 + steps: 16 + - if: inputs.merged-as-untrusted-at 17 + # Would be great to do the checkouts in git worktrees of the existing spare checkout instead, 18 + # but Nix is broken with them: 19 + # https://github.com/NixOS/nix/issues/6073 20 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 21 + with: 22 + ref: ${{ inputs.merged-as-untrusted-at }} 23 + path: untrusted 24 + 25 + - if: inputs.target-as-trusted-at 26 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 27 + with: 28 + ref: ${{ inputs.target-as-trusted-at }} 29 + path: trusted 30 + 31 + - if: inputs.pinned-from 32 + id: pinned 33 + uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 34 + env: 35 + PINNED_FROM: ${{ inputs.pinned-from }} 36 + with: 37 + script: | 38 + const path = require('node:path') 39 + const pinned = require(path.resolve(path.join(process.env.PINNED_FROM, 'ci', 'pinned.json'))) 40 + core.setOutput('pinned-at', pinned.pins.nixpkgs.revision) 41 + 42 + - if: steps.pinned.outputs.pinned-at 43 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 44 + with: 45 + ref: ${{ steps.pinned.outputs.pinned-at }} 46 + path: pinned 47 + sparse-checkout: | 48 + lib 49 + maintainers 50 + nixos/lib 51 + pkgs
-121
.github/actions/get-merge-commit/action.yml
··· 1 - name: Get merge commit 2 - 3 - description: 'Checks whether the Pull Request is mergeable and checks out the repo at up to two commits: The result of a temporary merge of the head branch into the target branch ("merged"), and the parent of that commit on the target branch ("target"). Handles push events and merge conflicts gracefully.' 4 - 5 - inputs: 6 - mergedSha: 7 - description: "The merge commit SHA, previously collected." 8 - type: string 9 - merged-as-untrusted: 10 - description: "Whether to checkout the merge commit in the ./untrusted folder." 11 - type: boolean 12 - pinnedFrom: 13 - description: "Whether to checkout the pinned nixpkgs for CI and from where (trusted, untrusted)." 14 - type: string 15 - targetSha: 16 - description: "The target commit SHA, previously collected." 17 - type: string 18 - target-as-trusted: 19 - description: "Whether to checkout the target commit in the ./trusted folder." 20 - type: boolean 21 - 22 - outputs: 23 - mergedSha: 24 - description: "The merge commit SHA" 25 - value: ${{ steps.commits.outputs.mergedSha }} 26 - targetSha: 27 - description: "The target commit SHA" 28 - value: ${{ steps.commits.outputs.targetSha }} 29 - 30 - runs: 31 - using: composite 32 - steps: 33 - - id: commits 34 - if: ${{ !inputs.mergedSha && !inputs.targetSha }} 35 - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 36 - with: 37 - script: | 38 - if (context.eventName == 'push') return core.setOutput('mergedSha', context.sha) 39 - 40 - for (const retryInterval of [5, 10, 20, 40, 80]) { 41 - console.log("Checking whether the pull request can be merged...") 42 - const prInfo = (await github.rest.pulls.get({ 43 - owner: context.repo.owner, 44 - repo: context.repo.repo, 45 - pull_number: context.payload.pull_request.number 46 - })).data 47 - 48 - if (prInfo.state != 'open') throw new Error ("PR is not open anymore.") 49 - 50 - if (prInfo.mergeable == null) { 51 - console.log(`GitHub is still computing whether this PR can be merged, waiting ${retryInterval} seconds before trying again...`) 52 - await new Promise(resolve => setTimeout(resolve, retryInterval * 1000)) 53 - continue 54 - } 55 - 56 - let mergedSha, targetSha 57 - 58 - if (prInfo.mergeable) { 59 - console.log("The PR can be merged.") 60 - 61 - mergedSha = prInfo.merge_commit_sha 62 - targetSha = (await github.rest.repos.getCommit({ 63 - owner: context.repo.owner, 64 - repo: context.repo.repo, 65 - ref: prInfo.merge_commit_sha 66 - })).data.parents[0].sha 67 - } else { 68 - console.log("The PR has a merge conflict.") 69 - 70 - mergedSha = prInfo.head.sha 71 - targetSha = (await github.rest.repos.compareCommitsWithBasehead({ 72 - owner: context.repo.owner, 73 - repo: context.repo.repo, 74 - basehead: `${prInfo.base.sha}...${prInfo.head.sha}` 75 - })).data.merge_base_commit.sha 76 - } 77 - 78 - console.log(`Checking the commits:\nmerged:${mergedSha}\ntarget:${targetSha}`) 79 - core.setOutput('mergedSha', mergedSha) 80 - core.setOutput('targetSha', targetSha) 81 - return 82 - } 83 - throw new Error("Not retrying anymore. It's likely that GitHub is having internal issues: check https://www.githubstatus.com.") 84 - 85 - - if: inputs.merged-as-untrusted && (inputs.mergedSha || steps.commits.outputs.mergedSha) 86 - # Would be great to do the checkouts in git worktrees of the existing spare checkout instead, 87 - # but Nix is broken with them: 88 - # https://github.com/NixOS/nix/issues/6073 89 - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 90 - with: 91 - ref: ${{ inputs.mergedSha || steps.commits.outputs.mergedSha }} 92 - path: untrusted 93 - 94 - - if: inputs.target-as-trusted && (inputs.targetSha || steps.commits.outputs.targetSha) 95 - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 96 - with: 97 - ref: ${{ inputs.targetSha || steps.commits.outputs.targetSha }} 98 - path: trusted 99 - 100 - - if: inputs.pinnedFrom 101 - id: pinned 102 - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 103 - env: 104 - PINNED_FROM: ${{ inputs.pinnedFrom }} 105 - with: 106 - script: | 107 - const path = require('node:path') 108 - const pinned = require(path.resolve(path.join(process.env.PINNED_FROM, 'ci', 'pinned.json'))) 109 - core.setOutput('pinnedSha', pinned.pins.nixpkgs.revision) 110 - 111 - - if: steps.pinned.outputs.pinnedSha 112 - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 113 - with: 114 - ref: ${{ steps.pinned.outputs.pinnedSha }} 115 - path: pinned 116 - sparse-checkout: | 117 - lib 118 - maintainers 119 - nixos/lib 120 - pkgs 121 -
+1 -1
.github/workflows/README.md
··· 17 17 This is a temporary commit that GitHub creates automatically as "what would happen, if this PR was merged into the base branch now?". 18 18 The checkout could be done via the virtual branch `refs/pull/<pr-number>/merge`, but doing so would cause failures when this virtual branch doesn't exist (anymore). 19 19 This can happen when the PR has conflicts, in which case the virtual branch is not created, or when the PR is getting merged while workflows are still running, in which case the branch won't exist anymore at the time of checkout. 20 - Thus, we use the `get-merge-commit.yml` workflow to check whether the PR is mergeable and the test merge commit exists and only then run the relevant jobs. 20 + Thus, we use the `prepare` job to check whether the PR is mergeable and the test merge commit exists and only then run the relevant jobs. 21 21 22 22 - Various workflows need to make comparisons against the base branch. 23 23 In this case, we checkout the parent of the "test merge commit" for best results.
+9 -8
.github/workflows/build.yml
··· 47 47 - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 48 48 with: 49 49 sparse-checkout: .github/actions 50 - - name: Check if the PR can be merged and checkout the merge commit 51 - uses: ./.github/actions/get-merge-commit 50 + - name: Checkout the merge commit 51 + uses: ./.github/actions/checkout 52 52 with: 53 - mergedSha: ${{ inputs.mergedSha }} 54 - merged-as-untrusted: true 55 - pinnedFrom: untrusted 53 + merged-as-untrusted-at: ${{ inputs.mergedSha }} 54 + pinned-from: untrusted 56 55 57 56 - uses: cachix/install-nix-action@fc6e360bedc9ee72d75e701397f0bb30dce77568 # v31 58 57 with: ··· 61 60 62 61 - uses: cachix/cachix-action@0fc020193b5a1fa3ac4575aa3a7d3aa6a35435ad # v16 63 62 with: 64 - # This cache is for the nixpkgs repo checks and should not be trusted or used elsewhere. 65 - name: nixpkgs-ci 66 - authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" 63 + # The nixpkgs-ci cache should not be trusted or used outside of Nixpkgs and its forks' CI. 64 + name: ${{ vars.CACHIX_NAME || 'nixpkgs-ci' }} 65 + extraPullNames: nixpkgs-ci 66 + authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} 67 + pushFilter: '(-source$|-nixpkgs-tarball-)' 67 68 68 69 - run: nix-env --install -f pinned -A nix-build-uncached 69 70
+80
.github/workflows/check.yml
··· 9 9 headBranch: 10 10 required: true 11 11 type: string 12 + mergedSha: 13 + required: true 14 + type: string 15 + targetSha: 16 + required: true 17 + type: string 18 + secrets: 19 + CACHIX_AUTH_TOKEN: 20 + required: true 21 + OWNER_RO_APP_PRIVATE_KEY: 22 + required: true 12 23 13 24 permissions: {} 14 25 ··· 70 81 env: 71 82 GH_TOKEN: ${{ github.token }} 72 83 run: gh api /rate_limit | jq 84 + 85 + # For checking code owners, this job depends on a GitHub App with the following permissions: 86 + # - Permissions: 87 + # - Repository > Administration: read-only 88 + # - Organization > Members: read-only 89 + # - Install App on this repository, setting these variables: 90 + # - OWNER_RO_APP_ID (variable) 91 + # - OWNER_RO_APP_PRIVATE_KEY (secret) 92 + # 93 + # This should not use the same app as the job to request reviewers, because this job requires 94 + # handling untrusted PR input. 95 + owners: 96 + runs-on: ubuntu-24.04-arm 97 + timeout-minutes: 5 98 + steps: 99 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 100 + with: 101 + sparse-checkout: .github/actions 102 + - name: Checkout merge and target commits 103 + uses: ./.github/actions/checkout 104 + with: 105 + merged-as-untrusted-at: ${{ inputs.mergedSha }} 106 + pinned-from: trusted 107 + target-as-trusted-at: ${{ inputs.targetSha }} 108 + 109 + - uses: cachix/install-nix-action@fc6e360bedc9ee72d75e701397f0bb30dce77568 # v31 110 + 111 + - uses: cachix/cachix-action@0fc020193b5a1fa3ac4575aa3a7d3aa6a35435ad # v16 112 + with: 113 + # The nixpkgs-ci cache should not be trusted or used outside of Nixpkgs and its forks' CI. 114 + name: ${{ vars.CACHIX_NAME || 'nixpkgs-ci' }} 115 + extraPullNames: nixpkgs-ci 116 + authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} 117 + pushFilter: -source$ 118 + 119 + - name: Build codeowners validator 120 + run: nix-build trusted/ci --arg nixpkgs ./pinned -A codeownersValidator 121 + 122 + - uses: actions/create-github-app-token@0f859bf9e69e887678d5bbfbee594437cb440ffe # v2.1.0 123 + if: github.event_name == 'pull_request_target' && vars.OWNER_RO_APP_ID 124 + id: app-token 125 + with: 126 + app-id: ${{ vars.OWNER_RO_APP_ID }} 127 + private-key: ${{ secrets.OWNER_RO_APP_PRIVATE_KEY }} 128 + permission-administration: read 129 + permission-members: read 130 + 131 + - name: Log current API rate limits 132 + if: steps.app-token.outputs.token 133 + env: 134 + GH_TOKEN: ${{ steps.app-token.outputs.token }} 135 + run: gh api /rate_limit | jq 136 + 137 + - name: Validate codeowners 138 + if: steps.app-token.outputs.token 139 + env: 140 + OWNERS_FILE: untrusted/ci/OWNERS 141 + GITHUB_ACCESS_TOKEN: ${{ steps.app-token.outputs.token }} 142 + REPOSITORY_PATH: untrusted 143 + OWNER_CHECKER_REPOSITORY: ${{ github.repository }} 144 + # Set this to "notowned,avoid-shadowing" to check that all files are owned by somebody 145 + EXPERIMENTAL_CHECKS: "avoid-shadowing" 146 + run: result/bin/codeowners-validator 147 + 148 + - name: Log current API rate limits 149 + if: steps.app-token.outputs.token 150 + env: 151 + GH_TOKEN: ${{ steps.app-token.outputs.token }} 152 + run: gh api /rate_limit | jq
-149
.github/workflows/codeowners-v2.yml
··· 1 - # This workflow depends on two GitHub Apps with the following permissions: 2 - # - For checking code owners: 3 - # - Permissions: 4 - # - Repository > Administration: read-only 5 - # - Organization > Members: read-only 6 - # - Install App on this repository, setting these variables: 7 - # - OWNER_RO_APP_ID (variable) 8 - # - OWNER_RO_APP_PRIVATE_KEY (secret) 9 - # - For requesting code owners: 10 - # - Permissions: 11 - # - Repository > Administration: read-only 12 - # - Organization > Members: read-only 13 - # - Repository > Pull Requests: read-write 14 - # - Install App on this repository, setting these variables: 15 - # - OWNER_APP_ID (variable) 16 - # - OWNER_APP_PRIVATE_KEY (secret) 17 - # 18 - # This split is done because checking code owners requires handling untrusted PR input, 19 - # while requesting code owners requires PR write access, and those shouldn't be mixed. 20 - # 21 - # Note that the latter is also used for ./eval.yml requesting reviewers. 22 - 23 - name: Codeowners v2 24 - 25 - on: 26 - pull_request: 27 - paths: 28 - - .github/workflows/codeowners-v2.yml 29 - pull_request_target: 30 - types: [opened, ready_for_review, synchronize, reopened] 31 - 32 - concurrency: 33 - group: codeowners-${{ github.workflow }}-${{ github.event_name }}-${{ github.event.pull_request.number || github.run_id }} 34 - cancel-in-progress: true 35 - 36 - permissions: {} 37 - 38 - defaults: 39 - run: 40 - shell: bash 41 - 42 - env: 43 - OWNERS_FILE: ci/OWNERS 44 - # Don't do anything on draft PRs 45 - DRY_MODE: ${{ github.event.pull_request.draft && '1' || '' }} 46 - 47 - jobs: 48 - # Check that code owners is valid 49 - check: 50 - name: Check 51 - runs-on: ubuntu-24.04-arm 52 - timeout-minutes: 5 53 - steps: 54 - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 55 - with: 56 - sparse-checkout: .github/actions 57 - - name: Check if the PR can be merged and checkout the merge and target commits 58 - uses: ./.github/actions/get-merge-commit 59 - with: 60 - merged-as-untrusted: true 61 - target-as-trusted: true 62 - 63 - - uses: cachix/install-nix-action@fc6e360bedc9ee72d75e701397f0bb30dce77568 # v31 64 - 65 - - uses: cachix/cachix-action@0fc020193b5a1fa3ac4575aa3a7d3aa6a35435ad # v16 66 - with: 67 - # This cache is for the nixpkgs repo checks and should not be trusted or used elsewhere. 68 - name: nixpkgs-ci 69 - authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' 70 - 71 - - name: Build codeowners validator 72 - run: nix-build trusted/ci -A codeownersValidator 73 - 74 - - uses: actions/create-github-app-token@0f859bf9e69e887678d5bbfbee594437cb440ffe # v2.1.0 75 - if: github.event_name == 'pull_request_target' && vars.OWNER_RO_APP_ID 76 - id: app-token 77 - with: 78 - app-id: ${{ vars.OWNER_RO_APP_ID }} 79 - private-key: ${{ secrets.OWNER_RO_APP_PRIVATE_KEY }} 80 - permission-administration: read 81 - permission-members: read 82 - 83 - - name: Log current API rate limits 84 - if: steps.app-token.outputs.token 85 - env: 86 - GH_TOKEN: ${{ steps.app-token.outputs.token }} 87 - run: gh api /rate_limit | jq 88 - 89 - - name: Validate codeowners 90 - if: steps.app-token.outputs.token 91 - env: 92 - OWNERS_FILE: untrusted/${{ env.OWNERS_FILE }} 93 - GITHUB_ACCESS_TOKEN: ${{ steps.app-token.outputs.token }} 94 - REPOSITORY_PATH: untrusted 95 - OWNER_CHECKER_REPOSITORY: ${{ github.repository }} 96 - # Set this to "notowned,avoid-shadowing" to check that all files are owned by somebody 97 - EXPERIMENTAL_CHECKS: "avoid-shadowing" 98 - run: result/bin/codeowners-validator 99 - 100 - - name: Log current API rate limits 101 - if: steps.app-token.outputs.token 102 - env: 103 - GH_TOKEN: ${{ steps.app-token.outputs.token }} 104 - run: gh api /rate_limit | jq 105 - 106 - # Request reviews from code owners 107 - request: 108 - name: Request 109 - runs-on: ubuntu-24.04-arm 110 - timeout-minutes: 5 111 - steps: 112 - - uses: cachix/install-nix-action@fc6e360bedc9ee72d75e701397f0bb30dce77568 # v31 113 - 114 - # Important: Because we use pull_request_target, this checks out the base branch of the PR, not the PR head. 115 - # This is intentional, because we need to request the review of owners as declared in the base branch. 116 - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 117 - with: 118 - path: trusted 119 - 120 - - name: Build review request package 121 - run: nix-build trusted/ci -A requestReviews 122 - 123 - - uses: actions/create-github-app-token@0f859bf9e69e887678d5bbfbee594437cb440ffe # v2.1.0 124 - if: github.event_name == 'pull_request_target' && vars.OWNER_APP_ID 125 - id: app-token 126 - with: 127 - app-id: ${{ vars.OWNER_APP_ID }} 128 - private-key: ${{ secrets.OWNER_APP_PRIVATE_KEY }} 129 - permission-administration: read 130 - permission-members: read 131 - permission-pull-requests: write 132 - 133 - - name: Log current API rate limits 134 - if: steps.app-token.outputs.token 135 - env: 136 - GH_TOKEN: ${{ steps.app-token.outputs.token }} 137 - run: gh api /rate_limit | jq 138 - 139 - - name: Request reviews 140 - if: steps.app-token.outputs.token 141 - env: 142 - GH_TOKEN: ${{ steps.app-token.outputs.token }} 143 - run: result/bin/request-code-owner-reviews.sh ${{ github.repository }} ${{ github.event.number }} "$OWNERS_FILE" 144 - 145 - - name: Log current API rate limits 146 - if: steps.app-token.outputs.token 147 - env: 148 - GH_TOKEN: ${{ steps.app-token.outputs.token }} 149 - run: gh api /rate_limit | jq
+19 -11
.github/workflows/eval.yml
··· 16 16 default: false 17 17 type: boolean 18 18 secrets: 19 + CACHIX_AUTH_TOKEN: 20 + required: true 19 21 OWNER_APP_PRIVATE_KEY: 20 22 required: false 21 23 ··· 88 90 with: 89 91 sparse-checkout: .github/actions 90 92 - name: Check out the PR at the test merge commit 91 - uses: ./.github/actions/get-merge-commit 93 + uses: ./.github/actions/checkout 92 94 with: 93 - mergedSha: ${{ inputs.mergedSha }} 94 - merged-as-untrusted: true 95 - pinnedFrom: untrusted 95 + merged-as-untrusted-at: ${{ inputs.mergedSha }} 96 + pinned-from: untrusted 96 97 97 98 - name: Install Nix 98 99 uses: cachix/install-nix-action@fc6e360bedc9ee72d75e701397f0bb30dce77568 # v31 99 100 101 + - uses: cachix/cachix-action@0fc020193b5a1fa3ac4575aa3a7d3aa6a35435ad # v16 102 + with: 103 + # The nixpkgs-ci cache should not be trusted or used outside of Nixpkgs and its forks' CI. 104 + name: ${{ vars.CACHIX_NAME || 'nixpkgs-ci' }} 105 + extraPullNames: nixpkgs-ci 106 + authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} 107 + pushFilter: '(-source|-single-chunk)$' 108 + 100 109 - name: Evaluate the ${{ matrix.system }} output paths for all derivation attributes 101 110 env: 102 111 MATRIX_SYSTEM: ${{ matrix.system }} ··· 206 215 with: 207 216 sparse-checkout: .github/actions 208 217 - name: Check out the PR at the target commit 209 - uses: ./.github/actions/get-merge-commit 218 + uses: ./.github/actions/checkout 210 219 with: 211 - targetSha: ${{ inputs.targetSha }} 212 - target-as-trusted: true 213 - pinnedFrom: trusted 220 + target-as-trusted-at: ${{ inputs.targetSha }} 221 + pinned-from: trusted 214 222 215 223 - name: Download output paths and eval stats for all systems 216 224 uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0 ··· 375 383 - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 376 384 with: 377 385 sparse-checkout: .github/actions 378 - - name: Check if the PR can be merged and checkout the merge commit 379 - uses: ./.github/actions/get-merge-commit 386 + - name: Checkout the merge commit 387 + uses: ./.github/actions/checkout 380 388 with: 381 - merged-as-untrusted: true 389 + merged-as-untrusted-at: ${{ inputs.mergedSha }} 382 390 383 391 - name: Install Nix 384 392 uses: cachix/install-nix-action@fc6e360bedc9ee72d75e701397f0bb30dce77568 # v31
+36 -17
.github/workflows/lint.yml
··· 9 9 targetSha: 10 10 required: true 11 11 type: string 12 + secrets: 13 + CACHIX_AUTH_TOKEN: 14 + required: true 12 15 13 16 permissions: {} 14 17 ··· 24 27 - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 25 28 with: 26 29 sparse-checkout: .github/actions 27 - - name: Check if the PR can be merged and checkout the merge commit 28 - uses: ./.github/actions/get-merge-commit 30 + - name: Checkout the merge commit 31 + uses: ./.github/actions/checkout 29 32 with: 30 - mergedSha: ${{ inputs.mergedSha }} 31 - merged-as-untrusted: true 32 - pinnedFrom: untrusted 33 + merged-as-untrusted-at: ${{ inputs.mergedSha }} 34 + pinned-from: untrusted 33 35 34 36 - uses: cachix/install-nix-action@fc6e360bedc9ee72d75e701397f0bb30dce77568 # v31 35 37 38 + # TODO: Figure out how to best enable caching for the treefmt job. Cachix won't work well, 39 + # because the cache would be invalidated on every commit - treefmt checks every file. 40 + # Maybe we can cache treefmt's eval-cache somehow. 41 + 36 42 - name: Check that files are formatted 37 43 run: | 38 44 # Note that it's fine to run this on untrusted code because: ··· 56 62 - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 57 63 with: 58 64 sparse-checkout: .github/actions 59 - - name: Check if the PR can be merged and checkout the merge commit 60 - uses: ./.github/actions/get-merge-commit 65 + - name: Checkout the merge commit 66 + uses: ./.github/actions/checkout 61 67 with: 62 - mergedSha: ${{ inputs.mergedSha }} 63 - merged-as-untrusted: true 64 - pinnedFrom: untrusted 68 + merged-as-untrusted-at: ${{ inputs.mergedSha }} 69 + pinned-from: untrusted 65 70 66 71 - uses: cachix/install-nix-action@fc6e360bedc9ee72d75e701397f0bb30dce77568 # v31 67 72 73 + - uses: cachix/cachix-action@0fc020193b5a1fa3ac4575aa3a7d3aa6a35435ad # v16 74 + with: 75 + # The nixpkgs-ci cache should not be trusted or used outside of Nixpkgs and its forks' CI. 76 + name: ${{ vars.CACHIX_NAME || 'nixpkgs-ci' }} 77 + extraPullNames: nixpkgs-ci 78 + authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} 79 + pushFilter: -source$ 80 + 68 81 - name: Parse all nix files 69 82 run: | 70 83 # Tests multiple versions at once, let's make sure all of them run, so keep-going. ··· 77 90 - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 78 91 with: 79 92 sparse-checkout: .github/actions 80 - - name: Check if the PR can be merged and checkout merged and target commits 81 - uses: ./.github/actions/get-merge-commit 93 + - name: Checkout merge and target commits 94 + uses: ./.github/actions/checkout 82 95 with: 83 - mergedSha: ${{ inputs.mergedSha }} 84 - merged-as-untrusted: true 85 - pinnedFrom: untrusted 86 - targetSha: ${{ inputs.targetSha }} 87 - target-as-trusted: true 96 + merged-as-untrusted-at: ${{ inputs.mergedSha }} 97 + pinned-from: untrusted 98 + target-as-trusted-at: ${{ inputs.targetSha }} 88 99 89 100 - uses: cachix/install-nix-action@fc6e360bedc9ee72d75e701397f0bb30dce77568 # v31 101 + 102 + - uses: cachix/cachix-action@0fc020193b5a1fa3ac4575aa3a7d3aa6a35435ad # v16 103 + with: 104 + # The nixpkgs-ci cache should not be trusted or used outside of Nixpkgs and its forks' CI. 105 + name: ${{ vars.CACHIX_NAME || 'nixpkgs-ci' }} 106 + extraPullNames: nixpkgs-ci 107 + authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} 108 + pushFilter: -source$ 90 109 91 110 - name: Running nixpkgs-vet 92 111 env:
+2
.github/workflows/merge-group.yml
··· 9 9 lint: 10 10 name: Lint 11 11 uses: ./.github/workflows/lint.yml 12 + secrets: 13 + CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }} 12 14 with: 13 15 mergedSha: ${{ github.event.merge_group.head_sha }} 14 16 targetSha: ${{ github.event.merge_group.base_sha }}
+23 -49
.github/workflows/pr.yml
··· 3 3 on: 4 4 pull_request: 5 5 paths: 6 - - .github/actions/get-merge-commit/action.yml 6 + - .github/actions/checkout/action.yml 7 7 - .github/workflows/build.yml 8 8 - .github/workflows/check.yml 9 9 - .github/workflows/eval.yml ··· 23 23 prepare: 24 24 runs-on: ubuntu-24.04-arm 25 25 outputs: 26 - baseBranch: ${{ steps.branches.outputs.base }} 27 - headBranch: ${{ steps.branches.outputs.head }} 28 - mergedSha: ${{ steps.get-merge-commit.outputs.mergedSha }} 29 - targetSha: ${{ steps.get-merge-commit.outputs.targetSha }} 30 - systems: ${{ steps.systems.outputs.systems }} 31 - touched: ${{ steps.files.outputs.touched }} 26 + baseBranch: ${{ steps.prepare.outputs.base }} 27 + headBranch: ${{ steps.prepare.outputs.head }} 28 + mergedSha: ${{ steps.prepare.outputs.mergedSha }} 29 + targetSha: ${{ steps.prepare.outputs.targetSha }} 30 + systems: ${{ steps.prepare.outputs.systems }} 31 + touched: ${{ steps.prepare.outputs.touched }} 32 32 steps: 33 33 - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 34 34 with: 35 + sparse-checkout-cone-mode: true # default, for clarity 35 36 sparse-checkout: | 36 - .github/actions 37 - ci/supportedBranches.js 38 - ci/supportedSystems.json 39 - - name: Check if the PR can be merged and get the test merge commit 40 - uses: ./.github/actions/get-merge-commit 41 - id: get-merge-commit 42 - 43 - - name: Load supported systems 44 - id: systems 45 - run: | 46 - echo "systems=$(jq -c <ci/supportedSystems.json)" >> "$GITHUB_OUTPUT" 47 - 48 - - name: Determine branch type 49 - id: branches 50 - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 51 - with: 52 - script: | 53 - const { classify } = require('./ci/supportedBranches.js') 54 - const { base, head } = context.payload.pull_request 55 - 56 - const baseClassification = classify(base.ref) 57 - core.setOutput('base', baseClassification) 58 - core.info('base classification:', baseClassification) 59 - 60 - const headClassification = 61 - (base.repo.full_name == head.repo.full_name) ? 62 - classify(head.ref) : 63 - // PRs from forks are always considered WIP. 64 - { type: ['wip'] } 65 - core.setOutput('head', headClassification) 66 - core.info('head classification:', headClassification) 67 - 68 - - name: Determine changed files 69 - id: files 37 + ci/github-script 38 + - id: prepare 70 39 uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 71 40 with: 72 41 script: | 73 - const files = (await github.paginate(github.rest.pulls.listFiles, { 74 - ...context.repo, 75 - pull_number: context.payload.pull_request.number, 76 - per_page: 100, 77 - })).map(file => file.filename) 78 - 79 - if (files.includes('ci/pinned.json')) core.setOutput('touched', ['pinned']) 80 - else core.setOutput('touched', []) 42 + require('./ci/github-script/prepare.js')({ 43 + github, 44 + context, 45 + core, 46 + }) 81 47 82 48 check: 83 49 name: Check ··· 86 52 permissions: 87 53 # cherry-picks 88 54 pull-requests: write 55 + secrets: 56 + CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }} 57 + OWNER_RO_APP_PRIVATE_KEY: ${{ secrets.OWNER_RO_APP_PRIVATE_KEY }} 89 58 with: 90 59 baseBranch: ${{ needs.prepare.outputs.baseBranch }} 91 60 headBranch: ${{ needs.prepare.outputs.headBranch }} 61 + mergedSha: ${{ needs.prepare.outputs.mergedSha }} 62 + targetSha: ${{ needs.prepare.outputs.targetSha }} 92 63 93 64 lint: 94 65 name: Lint 95 66 needs: [prepare] 96 67 uses: ./.github/workflows/lint.yml 68 + secrets: 69 + CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }} 97 70 with: 98 71 mergedSha: ${{ needs.prepare.outputs.mergedSha }} 99 72 targetSha: ${{ needs.prepare.outputs.targetSha }} ··· 106 79 # compare 107 80 statuses: write 108 81 secrets: 82 + CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }} 109 83 OWNER_APP_PRIVATE_KEY: ${{ secrets.OWNER_APP_PRIVATE_KEY }} 110 84 with: 111 85 mergedSha: ${{ needs.prepare.outputs.mergedSha }}
+2
.github/workflows/push.yml
··· 43 43 issues: write 44 44 pull-requests: write 45 45 statuses: write 46 + secrets: 47 + CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }} 46 48 with: 47 49 mergedSha: ${{ github.sha }} 48 50 systems: ${{ needs.prepare.outputs.systems }}
+32 -5
.github/workflows/reviewers.yml
··· 4 4 name: Reviewers 5 5 6 6 on: 7 - pull_request: 8 - paths: 9 - - .github/workflows/reviewers.yml 10 7 pull_request_target: 11 8 types: [ready_for_review] 12 9 workflow_call: ··· 41 38 - name: Build the requestReviews derivation 42 39 run: nix-build trusted/ci -A requestReviews 43 40 44 - # See ./codeowners-v2.yml, reuse the same App because we need the same permissions 45 - # Can't use the token received from permissions above, because it can't get enough permissions 41 + # For requesting reviewers, this job depends on a GitHub App with the following permissions: 42 + # - Permissions: 43 + # - Repository > Administration: read-only 44 + # - Organization > Members: read-only 45 + # - Repository > Pull Requests: read-write 46 + # - Install App on this repository, setting these variables: 47 + # - OWNER_APP_ID (variable) 48 + # - OWNER_APP_PRIVATE_KEY (secret) 49 + # 50 + # Can't use the token received from permissions above, because it can't get enough permissions. 46 51 - uses: actions/create-github-app-token@0f859bf9e69e887678d5bbfbee594437cb440ffe # v2.1.0 47 52 if: github.event_name == 'pull_request_target' && vars.OWNER_APP_ID 48 53 id: app-token ··· 52 57 permission-administration: read 53 58 permission-members: read 54 59 permission-pull-requests: write 60 + 61 + - name: Log current API rate limits (app-token) 62 + if: ${{ steps.app-token.outputs.token }} 63 + env: 64 + GH_TOKEN: ${{ steps.app-token.outputs.token }} 65 + run: gh api /rate_limit | jq 66 + 67 + - name: Requesting code owner reviews 68 + if: steps.app-token.outputs.token 69 + env: 70 + GH_TOKEN: ${{ steps.app-token.outputs.token }} 71 + REPOSITORY: ${{ github.repository }} 72 + NUMBER: ${{ github.event.number }} 73 + # Don't do anything on draft PRs 74 + DRY_MODE: ${{ github.event.pull_request.draft && '1' || '' }} 75 + run: result/bin/request-code-owner-reviews.sh "$REPOSITORY" "$NUMBER" ci/OWNERS 76 + 77 + - name: Log current API rate limits (app-token) 78 + if: ${{ steps.app-token.outputs.token }} 79 + env: 80 + GH_TOKEN: ${{ steps.app-token.outputs.token }} 81 + run: gh api /rate_limit | jq 55 82 56 83 - name: Log current API rate limits (github.token) 57 84 env:
+1 -1
ci/OWNERS
··· 499 499 pkgs/by-name/te/teleport* @arianvp @justinas @sigma @tomberek @freezeboy @techknowlogick @JuliusFreudenberger 500 500 501 501 # Warp-terminal 502 - pkgs/by-name/wa/warp-terminal/ @emilytrau @imadnyc @donteatoreo @johnrtitor 502 + pkgs/by-name/wa/warp-terminal/ @emilytrau @imadnyc @FlameFlag @johnrtitor
+16
ci/default.nix
··· 42 42 43 43 programs.actionlint.enable = true; 44 44 45 + programs.biome = { 46 + enable = true; 47 + settings.formatter = { 48 + useEditorconfig = true; 49 + }; 50 + settings.javascript.formatter = { 51 + quoteStyle = "single"; 52 + semicolons = "asNeeded"; 53 + }; 54 + settings.json.formatter.enabled = false; 55 + }; 56 + settings.formatter.biome.excludes = [ 57 + "*.min.js" 58 + "pkgs/*" 59 + ]; 60 + 45 61 programs.keep-sorted.enable = true; 46 62 47 63 # This uses nixfmt underneath,
+57 -28
ci/github-script/commits.js
··· 1 - module.exports = async function ({ github, context, core, dry }) { 1 + module.exports = async ({ github, context, core, dry }) => { 2 2 const { execFileSync } = require('node:child_process') 3 - const { readFile } = require('node:fs/promises') 4 - const { join } = require('node:path') 5 3 const { classify } = require('../supportedBranches.js') 6 4 const withRateLimit = require('./withRateLimit.js') 7 5 ··· 18 16 run_id: context.runId, 19 17 per_page: 100, 20 18 }) 21 - ).find(({ name }) => name == 'Check / cherry-pick').html_url + 19 + ).find(({ name }) => name === 'Check / cherry-pick').html_url + 22 20 '?pr=' + 23 21 pull_number 24 22 25 23 async function extract({ sha, commit }) { 26 24 const noCherryPick = Array.from( 27 - commit.message.matchAll(/^Not-cherry-picked-because: (.*)$/g) 25 + commit.message.matchAll(/^Not-cherry-picked-because: (.*)$/g), 28 26 ).at(0) 29 27 30 28 if (noCherryPick) ··· 148 146 149 147 const fetch = extracted 150 148 .filter(({ severity }) => !severity) 151 - .map(({ sha, original_sha }) => [ sha, original_sha ]) 152 - .flat() 149 + .flatMap(({ sha, original_sha }) => [sha, original_sha]) 153 150 154 151 if (fetch.length > 0) { 155 152 // Fetching all commits we need for diff at once is much faster than any other method. ··· 163 160 ]) 164 161 } 165 162 166 - const results = extracted.map(result => result.severity ? result : diff(result)) 163 + const results = extracted.map((result) => 164 + result.severity ? result : diff(result), 165 + ) 167 166 168 167 // Log all results without truncation, with better highlighting and all whitespace changes to the job log. 169 168 results.forEach(({ sha, commit, severity, message, colored_diff }) => { ··· 177 176 178 177 // Only create step summary below in case of warnings or errors. 179 178 // Also clean up older reviews, when all checks are good now. 180 - if (results.every(({ severity }) => severity == 'info')) { 179 + if (results.every(({ severity }) => severity === 'info')) { 181 180 if (!dry) { 182 181 await Promise.all( 183 182 ( ··· 186 185 pull_number, 187 186 }) 188 187 ) 189 - .filter((review) => review.user.login == 'github-actions[bot]') 188 + .filter((review) => review.user.login === 'github-actions[bot]') 190 189 .map(async (review) => { 191 - if (review.state == 'CHANGES_REQUESTED') { 190 + if (review.state === 'CHANGES_REQUESTED') { 192 191 await github.rest.pulls.dismissReview({ 193 192 ...context.repo, 194 193 pull_number, ··· 214 213 215 214 // In the case of "error" severity, we also fail the job. 216 215 // Those should be considered blocking and not be dismissable via review. 217 - if (results.some(({ severity }) => severity == 'error')) 216 + if (results.some(({ severity }) => severity === 'error')) 218 217 process.exitCode = 1 219 218 220 - core.summary.addRaw('This report is automatically generated by the `PR / Check / cherry-pick` CI workflow.', true) 219 + core.summary.addRaw( 220 + 'This report is automatically generated by the `PR / Check / cherry-pick` CI workflow.', 221 + true, 222 + ) 221 223 core.summary.addEOL() 222 - core.summary.addRaw("Some of the commits in this PR require the author's and reviewer's attention.", true) 224 + core.summary.addRaw( 225 + "Some of the commits in this PR require the author's and reviewer's attention.", 226 + true, 227 + ) 223 228 core.summary.addEOL() 224 229 225 230 if (results.some(({ type }) => type === 'no-commit-hash')) { 226 - core.summary.addRaw('Please follow the [backporting guidelines](https://github.com/NixOS/nixpkgs/blob/master/CONTRIBUTING.md#how-to-backport-pull-requests) and cherry-pick with the `-x` flag.', true) 227 - core.summary.addRaw('This requires changes to the unstable `master` and `staging` branches first, before backporting them.', true) 231 + core.summary.addRaw( 232 + 'Please follow the [backporting guidelines](https://github.com/NixOS/nixpkgs/blob/master/CONTRIBUTING.md#how-to-backport-pull-requests) and cherry-pick with the `-x` flag.', 233 + true, 234 + ) 235 + core.summary.addRaw( 236 + 'This requires changes to the unstable `master` and `staging` branches first, before backporting them.', 237 + true, 238 + ) 228 239 core.summary.addEOL() 229 - core.summary.addRaw('Occasionally, commits are not cherry-picked at all, for example when updating minor versions of packages which have already advanced to the next major on unstable.', true) 230 - core.summary.addRaw('These commits can optionally be marked with a `Not-cherry-picked-because: <reason>` footer.', true) 240 + core.summary.addRaw( 241 + 'Occasionally, commits are not cherry-picked at all, for example when updating minor versions of packages which have already advanced to the next major on unstable.', 242 + true, 243 + ) 244 + core.summary.addRaw( 245 + 'These commits can optionally be marked with a `Not-cherry-picked-because: <reason>` footer.', 246 + true, 247 + ) 231 248 core.summary.addEOL() 232 249 } 233 250 234 251 if (results.some(({ type }) => type === 'diff')) { 235 - core.summary.addRaw('Sometimes it is not possible to cherry-pick exactly the same patch.', true) 236 - core.summary.addRaw('This most frequently happens when resolving merge conflicts.', true) 237 - core.summary.addRaw('The range-diff will help to review the resolution of conflicts.', true) 252 + core.summary.addRaw( 253 + 'Sometimes it is not possible to cherry-pick exactly the same patch.', 254 + true, 255 + ) 256 + core.summary.addRaw( 257 + 'This most frequently happens when resolving merge conflicts.', 258 + true, 259 + ) 260 + core.summary.addRaw( 261 + 'The range-diff will help to review the resolution of conflicts.', 262 + true, 263 + ) 238 264 core.summary.addEOL() 239 265 } 240 266 241 - core.summary.addRaw('If you need to merge this PR despite the warnings, please [dismiss](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review) this review shortly before merging.', true) 267 + core.summary.addRaw( 268 + 'If you need to merge this PR despite the warnings, please [dismiss](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review) this review shortly before merging.', 269 + true, 270 + ) 242 271 243 272 results.forEach(({ severity, message, diff }) => { 244 - if (severity == 'info') return 273 + if (severity === 'info') return 245 274 246 275 // The docs for markdown alerts only show examples with markdown blockquote syntax, like this: 247 276 // > [!WARNING] ··· 256 285 // Whether this is intended or just an implementation detail is unclear. 257 286 core.summary.addRaw('<blockquote>') 258 287 core.summary.addRaw( 259 - `\n\n[!${({ important: 'IMPORTANT', warning: 'WARNING', error: 'CAUTION' })[severity]}]`, 288 + `\n\n[!${{ important: 'IMPORTANT', warning: 'WARNING', error: 'CAUTION' }[severity]}]`, 260 289 true, 261 290 ) 262 291 core.summary.addRaw(`${message}`, true) ··· 305 334 }) 306 335 ).find( 307 336 (review) => 308 - review.user.login == 'github-actions[bot]' && 337 + review.user.login === 'github-actions[bot]' && 309 338 // If a review is still pending, we can just update this instead 310 339 // of posting a new one. 311 - (review.state == 'CHANGES_REQUESTED' || 340 + (review.state === 'CHANGES_REQUESTED' || 312 341 // No need to post a new review, if an older one with the exact 313 342 // same content had already been dismissed. 314 - review.body == body), 343 + review.body === body), 315 344 ) 316 345 317 346 if (dry) { 318 347 if (pendingReview) 319 - core.info('pending review found: ' + pendingReview.html_url) 348 + core.info(`pending review found: ${pendingReview.html_url}`) 320 349 else core.info('no pending review found') 321 350 } else { 322 351 // Either of those two requests could fail for very long comments. This can only happen
+18 -17
ci/github-script/labels.js
··· 1 - module.exports = async function ({ github, context, core, dry }) { 1 + module.exports = async ({ github, context, core, dry }) => { 2 2 const path = require('node:path') 3 3 const { DefaultArtifactClient } = require('@actions/artifact') 4 4 const { readFile, writeFile } = require('node:fs/promises') ··· 27 27 28 28 const approvals = new Set( 29 29 reviews 30 - .filter((review) => review.state == 'APPROVED') 30 + .filter((review) => review.state === 'APPROVED') 31 31 .map((review) => review.user?.id), 32 32 ) 33 33 ··· 37 37 // This is intentionally less than the time that Eval takes, so that the label job 38 38 // running after Eval can indeed label the PR as conflicted if that is the case. 39 39 const merge_commit_sha_valid = 40 - new Date() - new Date(pull_request.created_at) > 3 * 60 * 1000 40 + Date.now() - new Date(pull_request.created_at) > 3 * 60 * 1000 41 41 42 42 const prLabels = { 43 43 // We intentionally don't use the mergeable or mergeable_state attributes. ··· 53 53 // The second pass will then read the result from the first pass and set the label. 54 54 '2.status: merge conflict': 55 55 merge_commit_sha_valid && !pull_request.merge_commit_sha, 56 - '12.approvals: 1': approvals.size == 1, 57 - '12.approvals: 2': approvals.size == 2, 56 + '12.approvals: 1': approvals.size === 1, 57 + '12.approvals: 2': approvals.size === 2, 58 58 '12.approvals: 3+': approvals.size >= 3, 59 59 '12.first-time contribution': [ 60 60 'NONE', ··· 104 104 // existing reviews, too. 105 105 '9.needs: reviewer': 106 106 !pull_request.draft && 107 - pull_request.requested_reviewers.length == 0 && 108 - reviews.length == 0, 107 + pull_request.requested_reviewers.length === 0 && 108 + reviews.length === 0, 109 109 }) 110 110 } 111 111 ··· 125 125 // called "comparison", yet, will skip the download. 126 126 const expired = 127 127 !artifact || 128 - new Date(artifact?.expires_at ?? 0) < 129 - new Date(new Date().getTime() + 60 * 1000) 128 + new Date(artifact?.expires_at ?? 0) < new Date(Date.now() + 60 * 1000) 130 129 log('Artifact expires at', artifact?.expires_at ?? '<n/a>') 131 130 if (!expired) { 132 131 stats.artifacts++ ··· 175 174 async function handle({ item, stats }) { 176 175 try { 177 176 const log = (k, v, skip) => { 178 - core.info(`#${item.number} - ${k}: ${v}` + (skip ? ' (skipped)' : '')) 177 + core.info(`#${item.number} - ${k}: ${v}${skip ? ' (skipped)' : ''}`) 179 178 return skip 180 179 } 181 180 ··· 257 256 258 257 // No need for an API request, if all labels are the same. 259 258 const hasChanges = Object.keys(after).some( 260 - (name) => (before[name] ?? false) != after[name], 259 + (name) => (before[name] ?? false) !== after[name], 261 260 ) 262 261 if (log('Has changes', hasChanges, !hasChanges)) return 263 262 ··· 297 296 // Go back as far as the last successful run of this workflow to make sure 298 297 // we are not leaving anyone behind on GHA failures. 299 298 // Defaults to go back 1 hour on the first run. 300 - new Date(lastRun?.created_at ?? new Date().getTime() - 1 * 60 * 60 * 1000).getTime(), 299 + new Date( 300 + lastRun?.created_at ?? Date.now() - 1 * 60 * 60 * 1000, 301 + ).getTime(), 301 302 // Go back max. 1 day to prevent hitting all API rate limits immediately, 302 303 // when GH API returns a wrong workflow by accident. 303 - new Date().getTime() - 24 * 60 * 60 * 1000, 304 + Date.now() - 24 * 60 * 60 * 1000, 304 305 ), 305 306 ) 306 - core.info('cutoff timestamp: ' + cutoff.toISOString()) 307 + core.info(`cutoff timestamp: ${cutoff.toISOString()}`) 307 308 308 309 const updatedItems = await github.paginate( 309 310 github.rest.search.issuesAndPullRequests, ··· 400 401 .concat(updatedItems, allItems.data) 401 402 .filter( 402 403 (thisItem, idx, arr) => 403 - idx == 404 - arr.findIndex((firstItem) => firstItem.number == thisItem.number), 404 + idx === 405 + arr.findIndex((firstItem) => firstItem.number === thisItem.number), 405 406 ) 406 407 407 408 ;(await Promise.allSettled(items.map((item) => handle({ item, stats })))) 408 - .filter(({ status }) => status == 'rejected') 409 + .filter(({ status }) => status === 'rejected') 409 410 .map(({ reason }) => 410 411 core.setFailed(`${reason.message}\n${reason.cause.stack}`), 411 412 )
+87
ci/github-script/prepare.js
··· 1 + const { classify } = require('../supportedBranches.js') 2 + 3 + module.exports = async ({ github, context, core }) => { 4 + const pull_number = context.payload.pull_request.number 5 + 6 + for (const retryInterval of [5, 10, 20, 40, 80]) { 7 + core.info('Checking whether the pull request can be merged...') 8 + const prInfo = ( 9 + await github.rest.pulls.get({ 10 + ...context.repo, 11 + pull_number, 12 + }) 13 + ).data 14 + 15 + if (prInfo.state !== 'open') throw new Error('PR is not open anymore.') 16 + 17 + if (prInfo.mergeable == null) { 18 + core.info( 19 + `GitHub is still computing whether this PR can be merged, waiting ${retryInterval} seconds before trying again...`, 20 + ) 21 + await new Promise((resolve) => setTimeout(resolve, retryInterval * 1000)) 22 + continue 23 + } 24 + 25 + const { base, head } = prInfo 26 + 27 + let mergedSha, targetSha 28 + 29 + if (prInfo.mergeable) { 30 + core.info('The PR can be merged.') 31 + 32 + mergedSha = prInfo.merge_commit_sha 33 + targetSha = ( 34 + await github.rest.repos.getCommit({ 35 + ...context.repo, 36 + ref: prInfo.merge_commit_sha, 37 + }) 38 + ).data.parents[0].sha 39 + } else { 40 + core.warning('The PR has a merge conflict.') 41 + 42 + mergedSha = prInfo.head.sha 43 + targetSha = ( 44 + await github.rest.repos.compareCommitsWithBasehead({ 45 + ...context.repo, 46 + basehead: `${base.sha}...${head.sha}`, 47 + }) 48 + ).data.merge_base_commit.sha 49 + } 50 + 51 + core.info( 52 + `Checking the commits:\nmerged: ${mergedSha}\ntarget: ${targetSha}`, 53 + ) 54 + core.setOutput('mergedSha', mergedSha) 55 + core.setOutput('targetSha', targetSha) 56 + 57 + core.setOutput('systems', require('../supportedSystems.json')) 58 + 59 + const baseClassification = classify(base.ref) 60 + core.setOutput('base', baseClassification) 61 + console.log('base classification:', baseClassification) 62 + 63 + const headClassification = 64 + base.repo.full_name === head.repo.full_name 65 + ? classify(head.ref) 66 + : // PRs from forks are always considered WIP. 67 + { type: ['wip'] } 68 + core.setOutput('head', headClassification) 69 + console.log('head classification:', headClassification) 70 + 71 + const files = ( 72 + await github.paginate(github.rest.pulls.listFiles, { 73 + ...context.repo, 74 + pull_number: context.payload.pull_request.number, 75 + per_page: 100, 76 + }) 77 + ).map((file) => file.filename) 78 + 79 + if (files.includes('ci/pinned.json')) core.setOutput('touched', ['pinned']) 80 + else core.setOutput('touched', []) 81 + 82 + return 83 + } 84 + throw new Error( 85 + "Not retrying anymore. It's likely that GitHub is having internal issues: check https://www.githubstatus.com.", 86 + ) 87 + }
+11
ci/github-script/run
··· 40 40 } 41 41 42 42 program 43 + .command('prepare') 44 + .description('Prepare relevant information of a pull request.') 45 + .argument('<owner>', 'Owner of the GitHub repository to check (Example: NixOS)') 46 + .argument('<repo>', 'Name of the GitHub repository to check (Example: nixpkgs)') 47 + .argument('<pr>', 'Number of the Pull Request to check') 48 + .action(async (owner, repo, pr) => { 49 + const prepare = (await import('./prepare.js')).default 50 + run(prepare, owner, repo, pr) 51 + }) 52 + 53 + program 43 54 .command('commits') 44 55 .description('Check commit structure of a pull request.') 45 56 .argument('<owner>', 'Owner of the GitHub repository to check (Example: NixOS)')
+2 -2
ci/github-script/withRateLimit.js
··· 1 - module.exports = async function ({ github, core }, callback) { 1 + module.exports = async ({ github, core }, callback) => { 2 2 const Bottleneck = require('bottleneck') 3 3 4 4 const stats = { ··· 23 23 // Requests to a different host do not count against the rate limit. 24 24 if (options.url.startsWith('https://github.com')) return request(options) 25 25 // Requests to the /rate_limit endpoint do not count against the rate limit. 26 - if (options.url == '/rate_limit') return request(options) 26 + if (options.url === '/rate_limit') return request(options) 27 27 // Search requests are in a different resource group, which allows 30 requests / minute. 28 28 // We do less than a handful each run, so not implementing throttling for now. 29 29 if (options.url.startsWith('/search/')) return request(options)
+10 -4
ci/nixpkgs-vet.nix
··· 13 13 with lib.fileset; 14 14 path: 15 15 toSource { 16 - fileset = (gitTracked path); 16 + fileset = difference (gitTracked path) (unions [ 17 + (path + /.github) 18 + (path + /ci) 19 + ]); 17 20 root = path; 18 21 }; 22 + 23 + filteredBase = filtered base; 24 + filteredHead = filtered head; 19 25 in 20 26 runCommand "nixpkgs-vet" 21 27 { ··· 27 33 '' 28 34 export NIX_STATE_DIR=$(mktemp -d) 29 35 30 - nixpkgs-vet --base ${filtered base} ${filtered head} 36 + nixpkgs-vet --base ${filteredBase} ${filteredHead} 31 37 32 38 # TODO: Upstream into nixpkgs-vet, see: 33 39 # https://github.com/NixOS/nixpkgs-vet/issues/164 34 - badFiles=$(find ${filtered head}/pkgs -type f -name '*.nix' -print | xargs grep -l '^[^#]*<nixpkgs/' || true) 40 + badFiles=$(find ${filteredHead}/pkgs -type f -name '*.nix' -print | xargs grep -l '^[^#]*<nixpkgs/' || true) 35 41 if [[ -n $badFiles ]]; then 36 42 echo "Nixpkgs is not allowed to use <nixpkgs> to refer to itself." 37 43 echo "The offending files:" ··· 41 47 42 48 # TODO: Upstream into nixpkgs-vet, see: 43 49 # https://github.com/NixOS/nixpkgs-vet/issues/166 44 - conflictingPaths=$(find ${filtered head} | awk '{ print $1 " " tolower($1) }' | sort -k2 | uniq -D -f 1 | cut -d ' ' -f 1) 50 + conflictingPaths=$(find ${filteredHead} | awk '{ print $1 " " tolower($1) }' | sort -k2 | uniq -D -f 1 | cut -d ' ' -f 1) 45 51 if [[ -n $conflictingPaths ]]; then 46 52 echo "Files in nixpkgs must not vary only by case." 47 53 echo "The offending paths:"
+6 -2
ci/supportedBranches.js
··· 15 15 } 16 16 17 17 function split(branch) { 18 - return { ...branch.match(/(?<prefix>.+?)(-(?<version>\d{2}\.\d{2}|unstable)(?:-(?<suffix>.*))?)?$/).groups } 18 + return { 19 + ...branch.match( 20 + /(?<prefix>.+?)(-(?<version>\d{2}\.\d{2}|unstable)(?:-(?<suffix>.*))?)?$/, 21 + ).groups, 22 + } 19 23 } 20 24 21 25 function classify(branch) { 22 26 const { prefix, version } = split(branch) 23 27 return { 24 28 stable: (version ?? 'unstable') !== 'unstable', 25 - type: typeConfig[prefix] ?? [ 'wip' ] 29 + type: typeConfig[prefix] ?? ['wip'], 26 30 } 27 31 } 28 32
+5 -3
doc/anchor-use.js
··· 1 - document.addEventListener('DOMContentLoaded', function(event) { 2 - anchors.add('h1[id]:not(div.note h1, div.warning h1, div.tip h1, div.caution h1, div.important h1), h2[id]:not(div.note h2, div.warning h2, div.tip h2, div.caution h2, div.important h2), h3[id]:not(div.note h3, div.warning h3, div.tip h3, div.caution h3, div.important h3), h4[id]:not(div.note h4, div.warning h4, div.tip h4, div.caution h4, div.important h4), h5[id]:not(div.note h5, div.warning h5, div.tip h5, div.caution h5, div.important h5), h6[id]:not(div.note h6, div.warning h6, div.tip h6, div.caution h6, div.important h6)'); 3 - }); 1 + document.addEventListener('DOMContentLoaded', () => { 2 + anchors.add( 3 + 'h1[id]:not(div.note h1, div.warning h1, div.tip h1, div.caution h1, div.important h1), h2[id]:not(div.note h2, div.warning h2, div.tip h2, div.caution h2, div.important h2), h3[id]:not(div.note h3, div.warning h3, div.tip h3, div.caution h3, div.important h3), h4[id]:not(div.note h4, div.warning h4, div.tip h4, div.caution h4, div.important h4), h5[id]:not(div.note h5, div.warning h5, div.tip h5, div.caution h5, div.important h5), h6[id]:not(div.note h6, div.warning h6, div.tip h6, div.caution h6, div.important h6)', 4 + ) 5 + })
+205 -206
doc/style.css
··· 1 1 html { 2 - line-height: 1.15; 3 - -webkit-text-size-adjust: 100%; 2 + line-height: 1.15; 3 + -webkit-text-size-adjust: 100%; 4 4 } 5 5 6 6 body { 7 - margin: 0; 7 + margin: 0; 8 8 } 9 9 10 10 .book, 11 11 .appendix { 12 - margin: auto; 13 - width: 100%; 12 + margin: auto; 13 + width: 100%; 14 14 } 15 15 16 16 @media screen and (min-width: 768px) { 17 - .book, 18 - .appendix { 19 - max-width: 46rem; 20 - } 17 + .book, 18 + .appendix { 19 + max-width: 46rem; 20 + } 21 21 } 22 22 23 23 @media screen and (min-width: 992px) { 24 - .book, 25 - .appendix { 26 - max-width: 60rem; 27 - } 24 + .book, 25 + .appendix { 26 + max-width: 60rem; 27 + } 28 28 } 29 29 30 30 @media screen and (min-width: 1200px) { 31 - .book, 32 - .appendix { 33 - max-width: 73rem; 34 - } 31 + .book, 32 + .appendix { 33 + max-width: 73rem; 34 + } 35 35 } 36 36 37 37 .book .list-of-examples { 38 - display: none; 38 + display: none; 39 39 } 40 40 41 41 h1 { 42 - font-size: 2em; 43 - margin: 0.67em 0; 42 + font-size: 2em; 43 + margin: 0.67em 0; 44 44 } 45 45 46 46 hr { 47 - box-sizing: content-box; 48 - height: 0; 49 - overflow: visible; 47 + box-sizing: content-box; 48 + height: 0; 49 + overflow: visible; 50 50 } 51 51 52 52 pre { 53 - font-family: monospace, monospace; 54 - font-size: 1em; 53 + font-family: monospace; 54 + font-size: 1em; 55 55 } 56 56 57 57 a { 58 - background-color: transparent; 58 + background-color: transparent; 59 59 } 60 60 61 61 strong { 62 - font-weight: bolder; 62 + font-weight: bolder; 63 63 } 64 64 65 65 code { 66 - font-family: monospace, monospace; 67 - font-size: 1em; 66 + font-family: monospace; 67 + font-size: 1em; 68 68 } 69 69 70 70 sup { 71 - font-size: 75%; 72 - line-height: 0; 73 - position: relative; 74 - vertical-align: baseline; 71 + font-size: 75%; 72 + line-height: 0; 73 + position: relative; 74 + vertical-align: baseline; 75 75 } 76 76 77 77 sup { 78 - top: -0.5em; 78 + top: -0.5em; 79 79 } 80 80 81 81 ::-webkit-file-upload-button { 82 - -webkit-appearance: button; 83 - font: inherit; 82 + -webkit-appearance: button; 83 + font: inherit; 84 84 } 85 85 86 86 pre { 87 - overflow: auto; 87 + overflow: auto; 88 88 } 89 89 90 90 *, 91 91 *::before, 92 92 *::after { 93 - box-sizing: border-box; 93 + box-sizing: border-box; 94 94 } 95 95 96 96 html { 97 - font-size: 100%; 98 - line-height: 1.77777778; 97 + font-size: 100%; 98 + line-height: 1.77777778; 99 99 } 100 100 101 101 @media screen and (min-width: 4000px) { 102 - html { 103 - background: #000; 104 - } 102 + html { 103 + background: #000; 104 + } 105 105 106 - html body { 107 - margin: auto; 108 - max-width: 250rem; 109 - } 106 + html body { 107 + margin: auto; 108 + max-width: 250rem; 109 + } 110 110 } 111 111 112 112 @media screen and (max-width: 320px) { 113 - html { 114 - font-size: calc(16 / 320 * 100vw); 115 - } 113 + html { 114 + font-size: calc(16 / 320 * 100vw); 115 + } 116 116 } 117 117 118 118 body { 119 - font-size: 1rem; 120 - font-family: "Roboto", sans-serif; 121 - font-weight: 300; 122 - color: var(--main-text-color); 123 - background-color: var(--background); 124 - min-height: 100vh; 125 - display: flex; 126 - flex-direction: column; 119 + font-size: 1rem; 120 + font-family: "Roboto", sans-serif; 121 + font-weight: 300; 122 + color: var(--main-text-color); 123 + background-color: var(--background); 124 + min-height: 100vh; 125 + display: flex; 126 + flex-direction: column; 127 127 } 128 128 129 129 @media screen and (max-width: 767.9px) { 130 - body { 131 - padding-left: 1rem; 132 - padding-right: 1rem; 133 - } 130 + body { 131 + padding-left: 1rem; 132 + padding-right: 1rem; 133 + } 134 134 } 135 135 136 136 a { 137 - text-decoration: none; 138 - border-bottom: 1px solid; 139 - color: var(--link-color); 137 + text-decoration: none; 138 + border-bottom: 1px solid; 139 + color: var(--link-color); 140 140 } 141 141 142 142 ul { 143 - padding: 0; 144 - margin-top: 0; 145 - margin-right: 0; 146 - margin-bottom: 1rem; 147 - margin-left: 1rem; 143 + padding: 0; 144 + margin-top: 0; 145 + margin-right: 0; 146 + margin-bottom: 1rem; 147 + margin-left: 1rem; 148 148 } 149 149 150 150 table { 151 - border-collapse: collapse; 152 - width: 100%; 153 - margin-bottom: 1rem; 151 + border-collapse: collapse; 152 + width: 100%; 153 + margin-bottom: 1rem; 154 154 } 155 155 156 156 thead th { 157 - text-align: left; 157 + text-align: left; 158 158 } 159 159 160 160 hr { 161 - margin-top: 1rem; 162 - margin-bottom: 1rem; 161 + margin-top: 1rem; 162 + margin-bottom: 1rem; 163 163 } 164 164 165 165 h1 { 166 - font-weight: 800; 167 - line-height: 110%; 168 - font-size: 200%; 169 - margin-bottom: 1rem; 170 - color: var(--heading-color); 166 + font-weight: 800; 167 + line-height: 110%; 168 + font-size: 200%; 169 + margin-bottom: 1rem; 170 + color: var(--heading-color); 171 171 } 172 172 173 173 h2 { 174 - font-weight: 800; 175 - line-height: 110%; 176 - font-size: 170%; 177 - margin-bottom: 0.625rem; 178 - color: var(--heading-color); 174 + font-weight: 800; 175 + line-height: 110%; 176 + font-size: 170%; 177 + margin-bottom: 0.625rem; 178 + color: var(--heading-color); 179 179 } 180 180 181 181 h2:not(:first-child) { 182 - margin-top: 1rem; 182 + margin-top: 1rem; 183 183 } 184 184 185 185 h3 { 186 - font-weight: 800; 187 - line-height: 110%; 188 - margin-bottom: 1rem; 189 - font-size: 150%; 190 - color: var(--heading-color); 186 + font-weight: 800; 187 + line-height: 110%; 188 + margin-bottom: 1rem; 189 + font-size: 150%; 190 + color: var(--heading-color); 191 191 } 192 192 193 193 .note h3, ··· 195 195 .warning h3, 196 196 .caution h3, 197 197 .important h3 { 198 - font-size: 120%; 198 + font-size: 120%; 199 199 } 200 200 201 201 h4 { 202 - font-weight: 800; 203 - line-height: 110%; 204 - margin-bottom: 1rem; 205 - font-size: 140%; 206 - color: var(--heading-color); 202 + font-weight: 800; 203 + line-height: 110%; 204 + margin-bottom: 1rem; 205 + font-size: 140%; 206 + color: var(--heading-color); 207 207 } 208 208 209 209 h5 { 210 - font-weight: 800; 211 - line-height: 110%; 212 - margin-bottom: 1rem; 213 - font-size: 130%; 214 - color: var(--small-heading-color); 210 + font-weight: 800; 211 + line-height: 110%; 212 + margin-bottom: 1rem; 213 + font-size: 130%; 214 + color: var(--small-heading-color); 215 215 } 216 216 217 217 h6 { 218 - font-weight: 800; 219 - line-height: 110%; 220 - margin-bottom: 1rem; 221 - font-size: 120%; 218 + font-weight: 800; 219 + line-height: 110%; 220 + margin-bottom: 1rem; 221 + font-size: 120%; 222 222 } 223 223 224 224 strong { 225 - font-weight: bold; 225 + font-weight: bold; 226 226 } 227 227 228 228 p { 229 - margin-top: 0; 230 - margin-bottom: 1rem; 229 + margin-top: 0; 230 + margin-bottom: 1rem; 231 231 } 232 232 233 233 dt > *:first-child, 234 234 dd > *:first-child { 235 - margin-top: 0; 235 + margin-top: 0; 236 236 } 237 237 238 238 dt > *:last-child, 239 239 dd > *:last-child { 240 - margin-bottom: 0; 240 + margin-bottom: 0; 241 241 } 242 242 243 243 pre, 244 244 code { 245 - font-family: monospace; 245 + font-family: monospace; 246 246 } 247 247 248 248 code { 249 - color: #ff8657; 250 - background: #f4f4f4; 251 - display: inline-block; 252 - padding: 0 0.5rem; 253 - border: 1px solid #d8d8d8; 254 - border-radius: 0.5rem; 255 - line-height: 1.57777778; 249 + color: #ff8657; 250 + background: #f4f4f4; 251 + display: inline-block; 252 + padding: 0 0.5rem; 253 + border: 1px solid #d8d8d8; 254 + border-radius: 0.5rem; 255 + line-height: 1.57777778; 256 256 } 257 257 258 258 div.book .programlisting, 259 259 div.appendix .programlisting { 260 - border-radius: 0.5rem; 261 - padding: 1rem; 262 - overflow: auto; 263 - background: var(--codeblock-background); 264 - color: var(--codeblock-text-color); 260 + border-radius: 0.5rem; 261 + padding: 1rem; 262 + overflow: auto; 263 + background: var(--codeblock-background); 264 + color: var(--codeblock-text-color); 265 265 } 266 266 267 267 div.book .note, ··· 274 274 div.appendix .warning, 275 275 div.appendix .caution, 276 276 div.appendix .important { 277 - margin-bottom: 1rem; 278 - border-radius: 0.5rem; 279 - padding: 1.5rem; 280 - overflow: auto; 281 - background: #f4f4f4; 277 + margin-bottom: 1rem; 278 + border-radius: 0.5rem; 279 + padding: 1.5rem; 280 + overflow: auto; 281 + background: #f4f4f4; 282 282 } 283 283 284 284 div.book .note > .title, ··· 291 291 div.appendix .warning > .title, 292 292 div.appendix .caution > .title, 293 293 div.appendix .important > .title { 294 - font-weight: 800; 295 - line-height: 110%; 296 - margin-bottom: 1rem; 297 - color: inherit; 298 - margin-bottom: 0; 294 + font-weight: 800; 295 + line-height: 110%; 296 + color: inherit; 297 + margin-bottom: 0; 299 298 } 300 299 301 300 div.book .note > :first-child, ··· 308 307 div.appendix .warning > :first-child, 309 308 div.appendix .caution > :first-child, 310 309 div.appendix .important > :first-child { 311 - margin-top: 0; 310 + margin-top: 0; 312 311 } 313 312 314 313 div.book .note > :last-child, ··· 321 320 div.appendix .warning > :last-child, 322 321 div.appendix .caution > :last-child, 323 322 div.appendix .important > :last-child { 324 - margin-bottom: 0; 323 + margin-bottom: 0; 325 324 } 326 325 327 326 div.book .note, 328 327 div.book .tip, 329 328 div.appendix .note, 330 329 div.appendix .tip { 331 - color: var(--note-text-color); 332 - background: var(--note-background); 330 + color: var(--note-text-color); 331 + background: var(--note-background); 333 332 } 334 333 335 334 div.book .warning, 336 335 div.book .caution, 337 336 div.appendix .warning, 338 337 div.appendix .caution { 339 - color: var(--warning-text-color); 340 - background-color: var(--warning-background); 338 + color: var(--warning-text-color); 339 + background-color: var(--warning-background); 341 340 } 342 341 343 342 div.book .section, 344 343 div.appendix .section { 345 - margin-top: 2em; 344 + margin-top: 2em; 346 345 } 347 346 348 347 div.book div.example, 349 348 div.appendix div.example { 350 - margin-top: 1.5em; 349 + margin-top: 1.5em; 351 350 } 352 351 353 352 div.book div.example details, 354 353 div.appendix div.example details { 355 - padding: 5px; 354 + padding: 5px; 356 355 } 357 356 358 357 div.book div.example details[open], 359 358 div.appendix div.example details[open] { 360 - border: 1px solid #aaa; 361 - border-radius: 4px; 359 + border: 1px solid #aaa; 360 + border-radius: 4px; 362 361 } 363 362 364 363 div.book div.example details > summary, 365 364 div.appendix div.example details > summary { 366 - cursor: pointer; 365 + cursor: pointer; 367 366 } 368 367 369 368 div.book br.example-break, 370 369 div.appendix br.example-break { 371 - display: none; 370 + display: none; 372 371 } 373 372 374 373 div.book div.footnotes > hr, 375 374 div.appendix div.footnotes > hr { 376 - border-color: #d8d8d8; 375 + border-color: #d8d8d8; 377 376 } 378 377 379 378 div.book div.footnotes > br, 380 379 div.appendix div.footnotes > br { 381 - display: none; 380 + display: none; 382 381 } 383 382 384 383 div.book dt, 385 384 div.appendix dt { 386 - margin-top: 1em; 385 + margin-top: 1em; 387 386 } 388 387 389 388 div.book .toc dt, 390 389 div.appendix .toc dt { 391 - margin-top: 0; 390 + margin-top: 0; 392 391 } 393 392 394 393 div.book .list-of-examples dt, 395 394 div.appendix .list-of-examples dt { 396 - margin-top: 0; 395 + margin-top: 0; 397 396 } 398 397 399 398 div.book code, 400 399 div.appendix code { 401 - padding: 0; 402 - border: 0; 403 - background-color: inherit; 404 - color: inherit; 405 - font-size: 100%; 406 - -webkit-hyphens: none; 407 - -moz-hyphens: none; 408 - hyphens: none; 400 + padding: 0; 401 + border: 0; 402 + background-color: inherit; 403 + color: inherit; 404 + font-size: 100%; 405 + -webkit-hyphens: none; 406 + -moz-hyphens: none; 407 + hyphens: none; 409 408 } 410 409 411 410 div.book div.toc, 412 411 div.appendix div.toc { 413 - margin-bottom: 3em; 414 - border-bottom: 0.0625rem solid #d8d8d8; 412 + margin-bottom: 3em; 413 + border-bottom: 0.0625rem solid #d8d8d8; 415 414 } 416 415 417 416 div.book div.toc dd, 418 417 div.appendix div.toc dd { 419 - margin-left: 2em; 418 + margin-left: 2em; 420 419 } 421 420 422 421 div.book span.command, 423 422 div.appendix span.command { 424 - font-family: monospace; 425 - -webkit-hyphens: none; 426 - -moz-hyphens: none; 427 - hyphens: none; 423 + font-family: monospace; 424 + -webkit-hyphens: none; 425 + -moz-hyphens: none; 426 + hyphens: none; 428 427 } 429 428 430 429 div.book .informaltable th, 431 430 div.book .informaltable td, 432 431 div.appendix .informaltable th, 433 432 div.appendix .informaltable td { 434 - padding: 0.5rem; 433 + padding: 0.5rem; 435 434 } 436 435 437 436 div.book .variablelist .term, 438 437 div.appendix .variablelist .term { 439 - font-weight: 500; 438 + font-weight: 500; 440 439 } 441 440 442 441 /* ··· 444 443 For more details, see https://highlightjs.readthedocs.io/en/latest/css-classes-reference.html#stylable-scopes 445 444 */ 446 445 .hljs-meta.prompt_ { 447 - user-select: none; 448 - -webkit-user-select: none; 446 + user-select: none; 447 + -webkit-user-select: none; 449 448 } 450 449 451 450 :root { 452 - --background: #fff; 453 - --main-text-color: #000; 454 - --link-color: #405d99; 455 - --heading-color: #6586c8; 456 - --small-heading-color: #6a6a6a; 457 - --note-text-color: #5277c3; 458 - --note-background: #f2f8fd; 459 - --warning-text-color: #cc3900; 460 - --warning-background: #fff5e1; 461 - --codeblock-background: #f2f8fd; 462 - --codeblock-text-color: #000; 451 + --background: #fff; 452 + --main-text-color: #000; 453 + --link-color: #405d99; 454 + --heading-color: #6586c8; 455 + --small-heading-color: #6a6a6a; 456 + --note-text-color: #5277c3; 457 + --note-background: #f2f8fd; 458 + --warning-text-color: #cc3900; 459 + --warning-background: #fff5e1; 460 + --codeblock-background: #f2f8fd; 461 + --codeblock-text-color: #000; 463 462 } 464 463 465 464 @media (prefers-color-scheme: dark) { 466 - :root { 467 - --background: #242424; 468 - --main-text-color: #fff; 469 - --link-color: #6586c8; 470 - --small-heading-color: #fff; 471 - --note-background: none; 472 - --warning-background: none; 473 - --codeblock-background: #393939; 474 - --codeblock-text-color: #fff; 475 - } 465 + :root { 466 + --background: #242424; 467 + --main-text-color: #fff; 468 + --link-color: #6586c8; 469 + --small-heading-color: #fff; 470 + --note-background: none; 471 + --warning-background: none; 472 + --codeblock-background: #393939; 473 + --codeblock-text-color: #fff; 474 + } 476 475 477 - div.book .note, 478 - div.book .tip, 479 - div.appendix .note, 480 - div.appendix .tip, 481 - div.book .warning, 482 - div.book .caution, 483 - div.appendix .warning, 484 - div.appendix .caution { 485 - border: 2px solid; 486 - font-weight: 400; 487 - } 476 + div.book .note, 477 + div.book .tip, 478 + div.appendix .note, 479 + div.appendix .tip, 480 + div.book .warning, 481 + div.book .caution, 482 + div.appendix .warning, 483 + div.appendix .caution { 484 + border: 2px solid; 485 + font-weight: 400; 486 + } 488 487 } 489 488 490 489 @font-face { 491 - font-family: Roboto; 492 - src: url(Roboto.ttf); 490 + font-family: Roboto; 491 + src: url(Roboto.ttf); 493 492 }
+13 -6
maintainers/maintainer-list.nix
··· 6673 6673 name = "Donovan Glover"; 6674 6674 keys = [ { fingerprint = "EE7D 158E F9E7 660E 0C33 86B2 8FC5 F7D9 0A5D 8F4D"; } ]; 6675 6675 }; 6676 - donteatoreo = { 6677 - name = "DontEatOreo"; 6678 - github = "DontEatOreo"; 6679 - githubId = 57304299; 6680 - matrix = "@donteatoreo:matrix.org"; 6681 - }; 6682 6676 dopplerian = { 6683 6677 name = "Dopplerian"; 6684 6678 github = "Dopplerian"; ··· 6781 6775 githubId = 12834713; 6782 6776 name = "Nico Jensch"; 6783 6777 keys = [ { fingerprint = "D245 D484 F357 8CB1 7FD6 DA6B 67DB 29BF F3C9 6757"; } ]; 6778 + }; 6779 + drafolin = { 6780 + email = "derg@drafolin.ch"; 6781 + github = "drafolin"; 6782 + githubId = 66629792; 6783 + name = "Dråfølin"; 6784 + keys = [ { fingerprint = "CAE2 9E73 0691 0AE9 1BD1 3D72 91A9 5557 C50B 4D3E"; } ]; 6784 6785 }; 6785 6786 dragonginger = { 6786 6787 email = "dragonginger10@gmail.com"; ··· 8452 8453 githubId = 6499211; 8453 8454 name = "Sebastian Neubauer"; 8454 8455 keys = [ { fingerprint = "2F93 661D AC17 EA98 A104 F780 ECC7 55EE 583C 1672"; } ]; 8456 + }; 8457 + FlameFlag = { 8458 + name = "FlameFlag"; 8459 + github = "FlameFlag"; 8460 + githubId = 57304299; 8461 + matrix = "@donteatoreo:matrix.org"; 8455 8462 }; 8456 8463 Flameopathic = { 8457 8464 email = "flameopathic@gmail.com";
+6 -1
nixos/modules/services/networking/prosody.nix
··· 369 369 kick other. Useful in jitsi-meet to kick ghosts. 370 370 ''; 371 371 }; 372 + moderation = mkOption { 373 + type = types.bool; 374 + default = false; 375 + description = "Allow rooms to be moderated"; 376 + }; 372 377 373 378 # Extra parameters. Defaulting to prosody default values. 374 379 # Adding them explicitly to make them visible from the options ··· 567 572 568 573 ${lib.concatMapStrings (muc: '' 569 574 Component ${toLua muc.domain} "muc" 570 - modules_enabled = {${optionalString cfg.modules.mam ''"muc_mam",''}${optionalString muc.allowners_muc ''"muc_allowners",''} } 575 + modules_enabled = {${optionalString cfg.modules.mam ''"muc_mam",''}${optionalString muc.allowners_muc ''"muc_allowners",''}${optionalString muc.moderation ''"muc_moderation",''} } 571 576 name = ${toLua muc.name} 572 577 restrict_room_creation = ${toLua muc.restrictRoomCreation} 573 578 max_history_messages = ${toLua muc.maxHistoryMessages}
+83 -90
nixos/modules/services/video/wivrn.nix
··· 10 10 mkEnableOption 11 11 mkPackageOption 12 12 mkOption 13 + literalExpression 14 + hasAttr 15 + toList 16 + length 17 + head 18 + tail 19 + concatStringsSep 13 20 optionalString 14 21 optionalAttrs 15 22 isDerivation 16 23 recursiveUpdate 17 24 getExe 18 - literalExpression 19 25 types 20 26 maintainers 21 27 ; ··· 28 34 # Since the json config attribute type "configFormat.type" doesn't allow specifying types for 29 35 # individual attributes, we have to type check manually. 30 36 31 - # The application option must be either a package or a list with package as the first element. 37 + # The application option should be a list with package as the first element, though a single package is also valid. 38 + # Note that this module depends on the package containing the meta.mainProgram attribute. 32 39 33 - # Checking if an application is provided 34 - applicationAttrExists = builtins.hasAttr "application" cfg.config.json; 35 - applicationListNotEmpty = ( 36 - if builtins.isList cfg.config.json.application then 37 - (builtins.length cfg.config.json.application) != 0 38 - else 39 - true 40 - ); 40 + # Check if an application is provided 41 + applicationAttrExists = hasAttr "application" cfg.config.json; 42 + applicationList = toList cfg.config.json.application; 43 + applicationListNotEmpty = length applicationList != 0; 41 44 applicationCheck = applicationAttrExists && applicationListNotEmpty; 42 45 43 46 # Manage packages and their exe paths 44 - applicationAttr = ( 45 - if builtins.isList cfg.config.json.application then 46 - builtins.head cfg.config.json.application 47 - else 48 - cfg.config.json.application 49 - ); 47 + applicationAttr = head applicationList; 50 48 applicationPackage = mkIf applicationCheck applicationAttr; 51 49 applicationPackageExe = getExe applicationAttr; 52 - serverPackageExe = getExe cfg.package; 50 + serverPackageExe = ( 51 + if cfg.highPriority then "${config.security.wrapperDir}/wivrn-server" else getExe cfg.package 52 + ); 53 53 54 - # Managing strings 55 - applicationStrings = builtins.tail cfg.config.json.application; 56 - applicationConcat = ( 57 - if builtins.isList cfg.config.json.application then 58 - builtins.concatStringsSep " " ([ applicationPackageExe ] ++ applicationStrings) 59 - else 60 - applicationPackageExe 61 - ); 54 + # Manage strings 55 + applicationStrings = tail applicationList; 56 + applicationConcat = concatStringsSep " " ([ applicationPackageExe ] ++ applicationStrings); 62 57 63 58 # Manage config file 64 59 applicationUpdate = recursiveUpdate cfg.config.json ( ··· 68 63 enabledConfig = optionalString cfg.config.enable "-f ${configFile}"; 69 64 70 65 # Manage server executables and flags 71 - serverExec = builtins.concatStringsSep " " ( 66 + serverExec = concatStringsSep " " ( 72 67 [ 73 68 serverPackageExe 74 69 "--systemd" 75 70 enabledConfig 76 71 ] 77 72 ++ cfg.extraServerFlags 78 - ); 79 - applicationExec = builtins.concatStringsSep " " ( 80 - [ 81 - serverPackageExe 82 - "--application" 83 - enabledConfig 84 - ] 85 - ++ cfg.extraApplicationFlags 86 73 ); 87 74 in 88 75 { ··· 95 82 openFirewall = mkEnableOption "the default ports in the firewall for the WiVRn server"; 96 83 97 84 defaultRuntime = mkEnableOption '' 98 - WiVRn Monado as the default OpenXR runtime on the system. 85 + WiVRn as the default OpenXR runtime on the system. 99 86 The config can be found at `/etc/xdg/openxr/1/active_runtime.json`. 100 87 101 88 Note that applications can bypass this option by setting an active ··· 104 91 105 92 autoStart = mkEnableOption "starting the service by default"; 106 93 94 + highPriority = mkEnableOption "high priority capability for asynchronous reprojection"; 95 + 107 96 monadoEnvironment = mkOption { 108 97 type = types.attrs; 109 98 description = "Environment variables to be passed to the Monado environment."; 110 - default = { 111 - XRT_COMPOSITOR_LOG = "debug"; 112 - XRT_PRINT_OPTIONS = "on"; 113 - IPC_EXIT_ON_DISCONNECT = "off"; 114 - }; 99 + default = { }; 115 100 }; 116 101 117 102 extraServerFlags = mkOption { 118 103 type = types.listOf types.str; 119 104 description = "Flags to add to the wivrn service."; 120 105 default = [ ]; 121 - example = ''[ "--no-publish-service" ]''; 106 + example = literalExpression ''[ "--no-publish-service" ]''; 122 107 }; 123 108 124 - extraApplicationFlags = mkOption { 125 - type = types.listOf types.str; 126 - description = "Flags to add to the wivrn-application service. This is NOT the WiVRn startup application."; 127 - default = [ ]; 128 - }; 109 + steam = { 110 + importOXRRuntimes = mkEnableOption '' 111 + Sets `PRESSURE_VESSEL_IMPORT_OPENXR_1_RUNTIMES` system-wide to allow Steam to automatically discover the WiVRn server. 112 + 113 + Note that you may have to logout for this variable to be visible 114 + ''; 129 115 130 - extraPackages = mkOption { 131 - type = types.listOf types.package; 132 - description = "Packages to add to the wivrn-application service $PATH."; 133 - default = [ ]; 134 - example = literalExpression "[ pkgs.bash pkgs.procps ]"; 116 + package = mkPackageOption pkgs "steam" { }; 135 117 }; 136 118 137 119 config = { ··· 139 121 json = mkOption { 140 122 type = configFormat.type; 141 123 description = '' 142 - Configuration for WiVRn. The attributes are serialized to JSON in config.json. If a config or certain attributes are not provided, the server will default to stock values. 124 + Configuration for WiVRn. The attributes are serialized to JSON in config.json. The server will fallback to default values for any missing attributes. 143 125 144 - Note that the application option must be either a package or a 145 - list with package as the first element. 126 + Like upstream, the application option is a list including the application and it's flags. In the case of the NixOS module however, the first element of the list must be a package. The module will assert otherwise. 127 + The application can be set to a single package because it gets passed to lib.toList, though this will not allow for flags to be passed. 146 128 147 - See <https://github.com/WiVRn/WiVRn/blob/master/docs/configuration.md> 129 + See https://github.com/WiVRn/WiVRn/blob/master/docs/configuration.md 148 130 ''; 149 131 default = { }; 150 132 example = literalExpression '' ··· 177 159 } 178 160 ]; 179 161 162 + security.wrappers."wivrn-server" = mkIf cfg.highPriority { 163 + setuid = false; 164 + owner = "root"; 165 + group = "root"; 166 + capabilities = "cap_sys_nice+eip"; 167 + source = getExe cfg.package; 168 + }; 169 + 180 170 systemd.user = { 181 171 services = { 182 - # The WiVRn server runs in a hardened service and starts the application in a different service 183 172 wivrn = { 184 173 description = "WiVRn XR runtime service"; 185 - environment = { 174 + environment = recursiveUpdate { 186 175 # Default options 187 176 # https://gitlab.freedesktop.org/monado/monado/-/blob/598080453545c6bf313829e5780ffb7dde9b79dc/src/xrt/targets/service/monado.in.service#L12 188 177 XRT_COMPOSITOR_LOG = "debug"; 189 178 XRT_PRINT_OPTIONS = "on"; 190 179 IPC_EXIT_ON_DISCONNECT = "off"; 191 - } 192 - // cfg.monadoEnvironment; 193 - serviceConfig = { 194 - ExecStart = serverExec; 195 - # Hardening options 196 - CapabilityBoundingSet = [ "CAP_SYS_NICE" ]; 197 - AmbientCapabilities = [ "CAP_SYS_NICE" ]; 198 - LockPersonality = true; 199 - NoNewPrivileges = true; 200 - PrivateTmp = true; 201 - ProtectClock = true; 202 - ProtectControlGroups = true; 203 - ProtectKernelLogs = true; 204 - ProtectKernelModules = true; 205 - ProtectKernelTunables = true; 206 - ProtectProc = "invisible"; 207 - ProtectSystem = "strict"; 208 - RemoveIPC = true; 209 - RestrictNamespaces = true; 210 - RestrictSUIDSGID = true; 211 - }; 180 + PRESSURE_VESSEL_IMPORT_OPENXR_1_RUNTIMES = mkIf cfg.steam.importOXRRuntimes "1"; 181 + } cfg.monadoEnvironment; 182 + serviceConfig = ( 183 + if cfg.highPriority then 184 + { 185 + ExecStart = serverExec; 186 + } 187 + # Hardening options break high-priority 188 + else 189 + { 190 + ExecStart = serverExec; 191 + # Hardening options 192 + CapabilityBoundingSet = [ "CAP_SYS_NICE" ]; 193 + AmbientCapabilities = [ "CAP_SYS_NICE" ]; 194 + LockPersonality = true; 195 + NoNewPrivileges = true; 196 + PrivateTmp = true; 197 + ProtectClock = true; 198 + ProtectControlGroups = true; 199 + ProtectKernelLogs = true; 200 + ProtectKernelModules = true; 201 + ProtectKernelTunables = true; 202 + ProtectProc = "invisible"; 203 + ProtectSystem = "strict"; 204 + RemoveIPC = true; 205 + RestrictNamespaces = true; 206 + RestrictSUIDSGID = true; 207 + } 208 + ); 209 + path = [ cfg.steam.package ]; 212 210 wantedBy = mkIf cfg.autoStart [ "default.target" ]; 213 - restartTriggers = [ cfg.package ]; 214 - }; 215 - wivrn-application = mkIf applicationCheck { 216 - description = "WiVRn application service"; 217 - requires = [ "wivrn.service" ]; 218 - serviceConfig = { 219 - ExecStart = applicationExec; 220 - Restart = "on-failure"; 221 - RestartSec = 0; 222 - PrivateTmp = true; 223 - }; 224 - path = [ applicationPackage ] ++ cfg.extraPackages; 211 + restartTriggers = [ 212 + cfg.package 213 + cfg.steam.package 214 + ]; 225 215 }; 226 216 }; 227 217 }; ··· 247 237 cfg.package 248 238 applicationPackage 249 239 ]; 240 + sessionVariables = mkIf cfg.steam.importOXRRuntimes { 241 + PRESSURE_VESSEL_IMPORT_OPENXR_1_RUNTIMES = "1"; 242 + }; 250 243 pathsToLink = [ "/share/openxr" ]; 251 244 etc."xdg/openxr/1/active_runtime.json" = mkIf cfg.defaultRuntime { 252 245 source = "${cfg.package}/share/openxr/1/openxr_wivrn.json";
+1 -1
nixos/modules/services/web-apps/invoiceplane.nix
··· 70 70 postPatch = '' 71 71 # Patch index.php file to load additional config file 72 72 substituteInPlace index.php \ 73 - --replace-fail "require('vendor/autoload.php');" "require('vendor/autoload.php'); \$dotenv = Dotenv\Dotenv::createImmutable(__DIR__, 'extraConfig.php'); \$dotenv->load();"; 73 + --replace-fail "require __DIR__ . '/vendor/autoload.php';" "require('vendor/autoload.php'); \$dotenv = Dotenv\Dotenv::createImmutable(__DIR__, 'extraConfig.php'); \$dotenv->load();"; 74 74 ''; 75 75 76 76 installPhase = ''
+1
nixos/tests/teleport.nix
··· 11 11 packages = with pkgs; { 12 12 "16" = teleport_16; 13 13 "17" = teleport_17; 14 + "18" = teleport_18; 14 15 }; 15 16 16 17 minimal = package: {
+2 -2
pkgs/applications/editors/android-studio/default.nix
··· 24 24 sha256Hash = "sha256-qA7iu4nK+29aHKsUmyQWuwV0SFnv5cYQvFq5CAMKyKw="; 25 25 }; 26 26 latestVersion = { 27 - version = "2025.1.3.4"; # "Android Studio Narwhal 3 Feature Drop | 2025.1.3 Canary 4" 28 - sha256Hash = "sha256-SAdmuuentJZGtjcFAgAedPa9MLAS9vNtWoOI1pPvDhA="; 27 + version = "2025.1.4.1"; # "Android Studio Narwhal 4 Feature Drop | 2025.1.4 Canary 1" 28 + sha256Hash = "sha256-OGnBf0LrfbN7WpO9skT8+ltAeKejyqHobxFvrzLp3EY="; 29 29 }; 30 30 in 31 31 {
+96 -96
pkgs/applications/editors/jetbrains/bin/versions.json
··· 19 19 "datagrip": { 20 20 "update-channel": "DataGrip RELEASE", 21 21 "url-template": "https://download.jetbrains.com/datagrip/datagrip-{version}.tar.gz", 22 - "version": "2025.2.1", 23 - "sha256": "1a0dea8a82920818e40b552950e90caf39bcf6ca9ae4e973a1d49e7db0498ecc", 24 - "url": "https://download.jetbrains.com/datagrip/datagrip-2025.2.1.tar.gz", 25 - "build_number": "252.23892.464" 22 + "version": "2025.2.2", 23 + "sha256": "59c793fabaa3ae6563c3118939c069f8baddb1bab489bccd7acddd0cf17de107", 24 + "url": "https://download.jetbrains.com/datagrip/datagrip-2025.2.2.tar.gz", 25 + "build_number": "252.25557.34" 26 26 }, 27 27 "dataspell": { 28 28 "update-channel": "DataSpell RELEASE", 29 29 "url-template": "https://download.jetbrains.com/python/dataspell-{version}.tar.gz", 30 - "version": "2025.1.2.1", 31 - "sha256": "1759516154a989ad1bcbc0e0cc29eb7b50c5c96b910c1a8926ae87ea5aa07ea6", 32 - "url": "https://download.jetbrains.com/python/dataspell-2025.1.2.1.tar.gz", 33 - "build_number": "251.26927.91" 30 + "version": "2025.2", 31 + "sha256": "fd37e488b990e3e395a12c3ebbdb2b4df87c58eb9bb6c82fd38a0322b5c2fb2b", 32 + "url": "https://download.jetbrains.com/python/dataspell-2025.2.tar.gz", 33 + "build_number": "252.23892.514" 34 34 }, 35 35 "gateway": { 36 36 "update-channel": "Gateway RELEASE", ··· 43 43 "goland": { 44 44 "update-channel": "GoLand RELEASE", 45 45 "url-template": "https://download.jetbrains.com/go/goland-{version}.tar.gz", 46 - "version": "2025.2", 47 - "sha256": "d285c10055af9002db8c913557535ba46e3158c5733b236add3d71f93873e85a", 48 - "url": "https://download.jetbrains.com/go/goland-2025.2.tar.gz", 49 - "build_number": "252.23892.449" 46 + "version": "2025.2.0.1", 47 + "sha256": "6a835b97bfa86938b45c902f3aad8b3c9c5265840473404c1d664149b0bd7434", 48 + "url": "https://download.jetbrains.com/go/goland-2025.2.0.1.tar.gz", 49 + "build_number": "252.23892.530" 50 50 }, 51 51 "idea-community": { 52 52 "update-channel": "IntelliJ IDEA RELEASE", ··· 84 84 "pycharm-community": { 85 85 "update-channel": "PyCharm RELEASE", 86 86 "url-template": "https://download.jetbrains.com/python/pycharm-community-{version}.tar.gz", 87 - "version": "2025.2", 88 - "sha256": "356dc81511bbd361c7f106fda8597503c6b9797d36a3a04434bbf0ec35a02434", 89 - "url": "https://download.jetbrains.com/python/pycharm-community-2025.2.tar.gz", 90 - "build_number": "252.23892.439" 87 + "version": "2025.2.0.1", 88 + "sha256": "2b95c6169c6f9bb00657e24cecdad23281c423b661918c09781894f3508f8672", 89 + "url": "https://download.jetbrains.com/python/pycharm-community-2025.2.0.1.tar.gz", 90 + "build_number": "252.23892.515" 91 91 }, 92 92 "pycharm-professional": { 93 93 "update-channel": "PyCharm RELEASE", 94 94 "url-template": "https://download.jetbrains.com/python/pycharm-professional-{version}.tar.gz", 95 - "version": "2025.2", 96 - "sha256": "bc3fbb31ea10e171686b9be8734051382233748502f124393c52848aefe97b32", 97 - "url": "https://download.jetbrains.com/python/pycharm-professional-2025.2.tar.gz", 98 - "build_number": "252.23892.439" 95 + "version": "2025.2.0.1", 96 + "sha256": "555a20eb9a695f52430fc3ef1b43c229186df5bf1c8962de55db0ef7eb308fb4", 97 + "url": "https://download.jetbrains.com/python/pycharm-professional-2025.2.0.1.tar.gz", 98 + "build_number": "252.23892.515" 99 99 }, 100 100 "rider": { 101 101 "update-channel": "Rider RELEASE", 102 102 "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}.tar.gz", 103 - "version": "2025.1.5", 104 - "sha256": "b10e21b764e504e33468ee93885fee1102c0b96bd628d1d7c0a19ce6e83910d6", 105 - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2025.1.5.tar.gz", 106 - "build_number": "251.27812.87" 103 + "version": "2025.2", 104 + "sha256": "661d5e8fc12e6373e7a84ee197aa755d77c2e3fe0246284c79bc20682d39d309", 105 + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2025.2.tar.gz", 106 + "build_number": "252.23892.524" 107 107 }, 108 108 "ruby-mine": { 109 109 "update-channel": "RubyMine RELEASE", ··· 158 158 "datagrip": { 159 159 "update-channel": "DataGrip RELEASE", 160 160 "url-template": "https://download.jetbrains.com/datagrip/datagrip-{version}-aarch64.tar.gz", 161 - "version": "2025.2.1", 162 - "sha256": "da21f165bce024ed6e99275350da41fa49e8ac51a47da50ed7a1e104edc06aa0", 163 - "url": "https://download.jetbrains.com/datagrip/datagrip-2025.2.1-aarch64.tar.gz", 164 - "build_number": "252.23892.464" 161 + "version": "2025.2.2", 162 + "sha256": "cb5a8e32343f56bb33721edb8488d74198a5a9b738610a0ed97c0e0a636910fe", 163 + "url": "https://download.jetbrains.com/datagrip/datagrip-2025.2.2-aarch64.tar.gz", 164 + "build_number": "252.25557.34" 165 165 }, 166 166 "dataspell": { 167 167 "update-channel": "DataSpell RELEASE", 168 168 "url-template": "https://download.jetbrains.com/python/dataspell-{version}-aarch64.tar.gz", 169 - "version": "2025.1.2.1", 170 - "sha256": "a982a7e8d5b1c293b68983be792a60a885567e9af825e0fce4b2a4b6ac30c9ae", 171 - "url": "https://download.jetbrains.com/python/dataspell-2025.1.2.1-aarch64.tar.gz", 172 - "build_number": "251.26927.91" 169 + "version": "2025.2", 170 + "sha256": "3c4261682f54a283ce693315dde5f2a472fec91887cf37b8c6b87c73ce245d2c", 171 + "url": "https://download.jetbrains.com/python/dataspell-2025.2-aarch64.tar.gz", 172 + "build_number": "252.23892.514" 173 173 }, 174 174 "gateway": { 175 175 "update-channel": "Gateway RELEASE", ··· 182 182 "goland": { 183 183 "update-channel": "GoLand RELEASE", 184 184 "url-template": "https://download.jetbrains.com/go/goland-{version}-aarch64.tar.gz", 185 - "version": "2025.2", 186 - "sha256": "99a5f3e0455fddf62ce92644cb53906e4600da6d2d2dad89164c594c31faa157", 187 - "url": "https://download.jetbrains.com/go/goland-2025.2-aarch64.tar.gz", 188 - "build_number": "252.23892.449" 185 + "version": "2025.2.0.1", 186 + "sha256": "377439d9cae41631624c848c61fcb91f1034c6997582346388d8d9f806b6e72f", 187 + "url": "https://download.jetbrains.com/go/goland-2025.2.0.1-aarch64.tar.gz", 188 + "build_number": "252.23892.530" 189 189 }, 190 190 "idea-community": { 191 191 "update-channel": "IntelliJ IDEA RELEASE", ··· 223 223 "pycharm-community": { 224 224 "update-channel": "PyCharm RELEASE", 225 225 "url-template": "https://download.jetbrains.com/python/pycharm-community-{version}-aarch64.tar.gz", 226 - "version": "2025.2", 227 - "sha256": "2aab469f976c4aa7d6686c8cc81d647960a9496ea2f3aed01f1c09448b443efb", 228 - "url": "https://download.jetbrains.com/python/pycharm-community-2025.2-aarch64.tar.gz", 229 - "build_number": "252.23892.439" 226 + "version": "2025.2.0.1", 227 + "sha256": "820f8f1a749d2544a4e4511ff23e8b55f3fe5faa4e0b715ba44999f784c5ac94", 228 + "url": "https://download.jetbrains.com/python/pycharm-community-2025.2.0.1-aarch64.tar.gz", 229 + "build_number": "252.23892.515" 230 230 }, 231 231 "pycharm-professional": { 232 232 "update-channel": "PyCharm RELEASE", 233 233 "url-template": "https://download.jetbrains.com/python/pycharm-professional-{version}-aarch64.tar.gz", 234 - "version": "2025.2", 235 - "sha256": "27a88a70b8c97be56cdc759cdd7612e55156d67c8bed5a5e23a5af42776bade9", 236 - "url": "https://download.jetbrains.com/python/pycharm-professional-2025.2-aarch64.tar.gz", 237 - "build_number": "252.23892.439" 234 + "version": "2025.2.0.1", 235 + "sha256": "d5a00d4774ad5861fad457494b644bb0ee4c6017f1f6c881da4afd23b44fdaf7", 236 + "url": "https://download.jetbrains.com/python/pycharm-professional-2025.2.0.1-aarch64.tar.gz", 237 + "build_number": "252.23892.515" 238 238 }, 239 239 "rider": { 240 240 "update-channel": "Rider RELEASE", 241 241 "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}-aarch64.tar.gz", 242 - "version": "2025.1.5", 243 - "sha256": "15b70a589a0827c6408e15eb8e20dfc2e378df66bb528514a577eeae22079553", 244 - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2025.1.5-aarch64.tar.gz", 245 - "build_number": "251.27812.87" 242 + "version": "2025.2", 243 + "sha256": "19b8c6322aac489888afe9eea81dcb6a114b4cc75d525ee3ea8a86899c6b42c7", 244 + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2025.2-aarch64.tar.gz", 245 + "build_number": "252.23892.524" 246 246 }, 247 247 "ruby-mine": { 248 248 "update-channel": "RubyMine RELEASE", ··· 297 297 "datagrip": { 298 298 "update-channel": "DataGrip RELEASE", 299 299 "url-template": "https://download.jetbrains.com/datagrip/datagrip-{version}.dmg", 300 - "version": "2025.2.1", 301 - "sha256": "e6c7fd2777ec7f621fa08b6d2d599c84b765d94be9d2b7a62f840ea6253cb9fe", 302 - "url": "https://download.jetbrains.com/datagrip/datagrip-2025.2.1.dmg", 303 - "build_number": "252.23892.464" 300 + "version": "2025.2.2", 301 + "sha256": "7e3993f6fbf4254e81ce7b19fd173ac6a3f93a7d60b4d897f3fd73136ff7dc2e", 302 + "url": "https://download.jetbrains.com/datagrip/datagrip-2025.2.2.dmg", 303 + "build_number": "252.25557.34" 304 304 }, 305 305 "dataspell": { 306 306 "update-channel": "DataSpell RELEASE", 307 307 "url-template": "https://download.jetbrains.com/python/dataspell-{version}.dmg", 308 - "version": "2025.1.2.1", 309 - "sha256": "21915425a004b9148ab5fb634ab919d328a692847f3229bcd060fc46c2b91e76", 310 - "url": "https://download.jetbrains.com/python/dataspell-2025.1.2.1.dmg", 311 - "build_number": "251.26927.91" 308 + "version": "2025.2", 309 + "sha256": "36bd810a0ab4fab0edcc135ef472a731f55c25af80d40b1e6d36a833302d525c", 310 + "url": "https://download.jetbrains.com/python/dataspell-2025.2.dmg", 311 + "build_number": "252.23892.514" 312 312 }, 313 313 "gateway": { 314 314 "update-channel": "Gateway RELEASE", ··· 321 321 "goland": { 322 322 "update-channel": "GoLand RELEASE", 323 323 "url-template": "https://download.jetbrains.com/go/goland-{version}.dmg", 324 - "version": "2025.2", 325 - "sha256": "c42e150a88b9d9ef033a7ff3678eb891408668afe83179d4f678bb674dc8e424", 326 - "url": "https://download.jetbrains.com/go/goland-2025.2.dmg", 327 - "build_number": "252.23892.449" 324 + "version": "2025.2.0.1", 325 + "sha256": "67056fa41a9e72b0d0a268f648d3dae6ba0304beae8883cf97bf95ab875195cd", 326 + "url": "https://download.jetbrains.com/go/goland-2025.2.0.1.dmg", 327 + "build_number": "252.23892.530" 328 328 }, 329 329 "idea-community": { 330 330 "update-channel": "IntelliJ IDEA RELEASE", ··· 362 362 "pycharm-community": { 363 363 "update-channel": "PyCharm RELEASE", 364 364 "url-template": "https://download.jetbrains.com/python/pycharm-community-{version}.dmg", 365 - "version": "2025.2", 366 - "sha256": "ee808240caab0d50932fe25cd3d93aeeb8a531bfbc5b034f0eff72716c3eb6a5", 367 - "url": "https://download.jetbrains.com/python/pycharm-community-2025.2.dmg", 368 - "build_number": "252.23892.439" 365 + "version": "2025.2.0.1", 366 + "sha256": "0fa4e9c93bcb1f0d56dd7faecbb01b38d3c07fbbcf4fc8c0ad4dc5dc2f15b5a9", 367 + "url": "https://download.jetbrains.com/python/pycharm-community-2025.2.0.1.dmg", 368 + "build_number": "252.23892.515" 369 369 }, 370 370 "pycharm-professional": { 371 371 "update-channel": "PyCharm RELEASE", 372 372 "url-template": "https://download.jetbrains.com/python/pycharm-professional-{version}.dmg", 373 - "version": "2025.2", 374 - "sha256": "66c6ae1e9e6531bc87f7527221d06647ce18fea15484ad9f371cc51f99a271a0", 375 - "url": "https://download.jetbrains.com/python/pycharm-professional-2025.2.dmg", 376 - "build_number": "252.23892.439" 373 + "version": "2025.2.0.1", 374 + "sha256": "440e613cc7e9d02ea27c921168b27a120e0eed5d084d878a6e7f9af3c874ac1a", 375 + "url": "https://download.jetbrains.com/python/pycharm-professional-2025.2.0.1.dmg", 376 + "build_number": "252.23892.515" 377 377 }, 378 378 "rider": { 379 379 "update-channel": "Rider RELEASE", 380 380 "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}.dmg", 381 - "version": "2025.1.5", 382 - "sha256": "ed39b7f3770bb186014e8cdd6e314b4dfbb0f90e8d24be8b175fbf71ef7957ac", 383 - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2025.1.5.dmg", 384 - "build_number": "251.27812.87" 381 + "version": "2025.2", 382 + "sha256": "c03da6f4c519e1c697ada502f43d1152e41614262970cbbf4df15d2f470658f3", 383 + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2025.2.dmg", 384 + "build_number": "252.23892.524" 385 385 }, 386 386 "ruby-mine": { 387 387 "update-channel": "RubyMine RELEASE", ··· 436 436 "datagrip": { 437 437 "update-channel": "DataGrip RELEASE", 438 438 "url-template": "https://download.jetbrains.com/datagrip/datagrip-{version}-aarch64.dmg", 439 - "version": "2025.2.1", 440 - "sha256": "865a887cc89076eac601bc073e74d6cb1b5711aaf8f4c39a2f7bd18648d9cc6e", 441 - "url": "https://download.jetbrains.com/datagrip/datagrip-2025.2.1-aarch64.dmg", 442 - "build_number": "252.23892.464" 439 + "version": "2025.2.2", 440 + "sha256": "eec04b3602062cf5dd6be20b0c77ce4a384c0727bd43403d1eb9646b268439f6", 441 + "url": "https://download.jetbrains.com/datagrip/datagrip-2025.2.2-aarch64.dmg", 442 + "build_number": "252.25557.34" 443 443 }, 444 444 "dataspell": { 445 445 "update-channel": "DataSpell RELEASE", 446 446 "url-template": "https://download.jetbrains.com/python/dataspell-{version}-aarch64.dmg", 447 - "version": "2025.1.2.1", 448 - "sha256": "97588c238523b2c492a322a0751173f908f31eb27e0d38f81dd51f670690a9a5", 449 - "url": "https://download.jetbrains.com/python/dataspell-2025.1.2.1-aarch64.dmg", 450 - "build_number": "251.26927.91" 447 + "version": "2025.2", 448 + "sha256": "484c6889a929c3ec572711164600ad93c927b57a3487636d672db77a1e9483f5", 449 + "url": "https://download.jetbrains.com/python/dataspell-2025.2-aarch64.dmg", 450 + "build_number": "252.23892.514" 451 451 }, 452 452 "gateway": { 453 453 "update-channel": "Gateway RELEASE", ··· 460 460 "goland": { 461 461 "update-channel": "GoLand RELEASE", 462 462 "url-template": "https://download.jetbrains.com/go/goland-{version}-aarch64.dmg", 463 - "version": "2025.2", 464 - "sha256": "043600466d739338b9d24a472547b3d7133505165032459e9fe6f913b6920eac", 465 - "url": "https://download.jetbrains.com/go/goland-2025.2-aarch64.dmg", 466 - "build_number": "252.23892.449" 463 + "version": "2025.2.0.1", 464 + "sha256": "e35b7f2ec7e63c0c348e172ddf10410ff108189c4a4a1e4dcfc75c757908b12b", 465 + "url": "https://download.jetbrains.com/go/goland-2025.2.0.1-aarch64.dmg", 466 + "build_number": "252.23892.530" 467 467 }, 468 468 "idea-community": { 469 469 "update-channel": "IntelliJ IDEA RELEASE", ··· 501 501 "pycharm-community": { 502 502 "update-channel": "PyCharm RELEASE", 503 503 "url-template": "https://download.jetbrains.com/python/pycharm-community-{version}-aarch64.dmg", 504 - "version": "2025.2", 505 - "sha256": "9fd11b6e5fe28d5e3cac86cac554b4e04f775254d141f3c7ec07ee9801ce8a00", 506 - "url": "https://download.jetbrains.com/python/pycharm-community-2025.2-aarch64.dmg", 507 - "build_number": "252.23892.439" 504 + "version": "2025.2.0.1", 505 + "sha256": "acdbfd143a7da358cbd9b1410eff8763f9650c58f9a976d80a9aa8977f358e00", 506 + "url": "https://download.jetbrains.com/python/pycharm-community-2025.2.0.1-aarch64.dmg", 507 + "build_number": "252.23892.515" 508 508 }, 509 509 "pycharm-professional": { 510 510 "update-channel": "PyCharm RELEASE", 511 511 "url-template": "https://download.jetbrains.com/python/pycharm-professional-{version}-aarch64.dmg", 512 - "version": "2025.2", 513 - "sha256": "54b761294795146c575a22ea5d53bc7c0a05ab906836b544ff6b830b4b79b41b", 514 - "url": "https://download.jetbrains.com/python/pycharm-professional-2025.2-aarch64.dmg", 515 - "build_number": "252.23892.439" 512 + "version": "2025.2.0.1", 513 + "sha256": "9d3265dd828c45681ba608ee2325b3b560396b7048290d7c69714cbc99e86fd7", 514 + "url": "https://download.jetbrains.com/python/pycharm-professional-2025.2.0.1-aarch64.dmg", 515 + "build_number": "252.23892.515" 516 516 }, 517 517 "rider": { 518 518 "update-channel": "Rider RELEASE", 519 519 "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}-aarch64.dmg", 520 - "version": "2025.1.5", 521 - "sha256": "74decd2d7fb0ee97587e9de165b1630bac8a9ba8ad55aa8a64e9c5e173551adb", 522 - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2025.1.5-aarch64.dmg", 523 - "build_number": "251.27812.87" 520 + "version": "2025.2", 521 + "sha256": "ec385a005fb740e6b12a5232ae57c7d189b3d32ac4813734b04d4257421368a3", 522 + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2025.2-aarch64.dmg", 523 + "build_number": "252.23892.524" 524 524 }, 525 525 "ruby-mine": { 526 526 "update-channel": "RubyMine RELEASE",
+3
pkgs/applications/editors/jetbrains/default.nix
··· 324 324 lttng-ust_2_12 325 325 musl 326 326 ] 327 + ++ lib.optionals stdenv.hostPlatform.isLinux [ 328 + xorg.xcbutilkeysyms 329 + ] 327 330 ++ lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch) [ 328 331 expat 329 332 libxml2
+345 -346
pkgs/applications/editors/jetbrains/plugins/plugins.json
··· 16 16 "webstorm" 17 17 ], 18 18 "builds": { 19 - "251.23774.423": "https://plugins.jetbrains.com/files/164/818417/IdeaVIM-2.27.0.zip", 20 - "251.25410.129": "https://plugins.jetbrains.com/files/164/818417/IdeaVIM-2.27.0.zip", 21 - "251.27812.87": "https://plugins.jetbrains.com/files/164/818417/IdeaVIM-2.27.0.zip", 22 - "252.23892.409": "https://plugins.jetbrains.com/files/164/818417/IdeaVIM-2.27.0.zip", 23 - "252.23892.411": "https://plugins.jetbrains.com/files/164/818417/IdeaVIM-2.27.0.zip", 24 - "252.23892.415": "https://plugins.jetbrains.com/files/164/818417/IdeaVIM-2.27.0.zip", 25 - "252.23892.419": "https://plugins.jetbrains.com/files/164/818417/IdeaVIM-2.27.0.zip", 26 - "252.23892.426": "https://plugins.jetbrains.com/files/164/818417/IdeaVIM-2.27.0.zip", 27 - "252.23892.439": "https://plugins.jetbrains.com/files/164/818417/IdeaVIM-2.27.0.zip", 28 - "252.23892.449": "https://plugins.jetbrains.com/files/164/818417/IdeaVIM-2.27.0.zip", 29 - "252.23892.452": "https://plugins.jetbrains.com/files/164/818417/IdeaVIM-2.27.0.zip", 30 - "252.23892.464": "https://plugins.jetbrains.com/files/164/818417/IdeaVIM-2.27.0.zip" 19 + "251.23774.423": "https://plugins.jetbrains.com/files/164/822112/IdeaVIM-2.27.1.zip", 20 + "251.25410.129": "https://plugins.jetbrains.com/files/164/822112/IdeaVIM-2.27.1.zip", 21 + "252.23892.409": "https://plugins.jetbrains.com/files/164/822112/IdeaVIM-2.27.1.zip", 22 + "252.23892.411": "https://plugins.jetbrains.com/files/164/822112/IdeaVIM-2.27.1.zip", 23 + "252.23892.415": "https://plugins.jetbrains.com/files/164/822112/IdeaVIM-2.27.1.zip", 24 + "252.23892.419": "https://plugins.jetbrains.com/files/164/822112/IdeaVIM-2.27.1.zip", 25 + "252.23892.426": "https://plugins.jetbrains.com/files/164/822112/IdeaVIM-2.27.1.zip", 26 + "252.23892.452": "https://plugins.jetbrains.com/files/164/822112/IdeaVIM-2.27.1.zip", 27 + "252.23892.515": "https://plugins.jetbrains.com/files/164/822112/IdeaVIM-2.27.1.zip", 28 + "252.23892.524": "https://plugins.jetbrains.com/files/164/822112/IdeaVIM-2.27.1.zip", 29 + "252.23892.530": "https://plugins.jetbrains.com/files/164/822112/IdeaVIM-2.27.1.zip", 30 + "252.25557.34": "https://plugins.jetbrains.com/files/164/822112/IdeaVIM-2.27.1.zip" 31 31 }, 32 32 "name": "ideavim" 33 33 }, ··· 47 47 ], 48 48 "builds": { 49 49 "251.25410.129": "https://plugins.jetbrains.com/files/1347/770332/scala-intellij-bin-2025.1.25.zip", 50 - "252.23892.409": "https://plugins.jetbrains.com/files/1347/815326/scala-intellij-bin-2025.2.26.zip" 50 + "252.23892.409": "https://plugins.jetbrains.com/files/1347/832458/scala-intellij-bin-2025.2.28.zip" 51 51 }, 52 52 "name": "scala" 53 53 }, ··· 69 69 "builds": { 70 70 "251.23774.423": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", 71 71 "251.25410.129": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", 72 - "251.27812.87": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", 73 72 "252.23892.409": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", 74 73 "252.23892.411": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", 75 74 "252.23892.415": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", 76 75 "252.23892.419": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", 77 76 "252.23892.426": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", 78 - "252.23892.439": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", 79 - "252.23892.449": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", 80 77 "252.23892.452": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", 81 - "252.23892.464": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip" 78 + "252.23892.515": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", 79 + "252.23892.524": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", 80 + "252.23892.530": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", 81 + "252.25557.34": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip" 82 82 }, 83 83 "name": "stringmanipulation" 84 84 }, ··· 100 100 "builds": { 101 101 "251.23774.423": "https://plugins.jetbrains.com/files/6884/711128/handlebars-251.23774.318.zip", 102 102 "251.25410.129": "https://plugins.jetbrains.com/files/6884/711128/handlebars-251.23774.318.zip", 103 - "251.27812.87": "https://plugins.jetbrains.com/files/6884/711128/handlebars-251.23774.318.zip", 104 103 "252.23892.409": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", 105 104 "252.23892.411": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", 106 105 "252.23892.415": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", 107 106 "252.23892.419": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", 108 107 "252.23892.426": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", 109 - "252.23892.439": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", 110 - "252.23892.449": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", 111 108 "252.23892.452": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", 112 - "252.23892.464": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip" 109 + "252.23892.515": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", 110 + "252.23892.524": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", 111 + "252.23892.530": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", 112 + "252.25557.34": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip" 113 113 }, 114 114 "name": "handlebars-mustache" 115 115 }, ··· 131 131 "builds": { 132 132 "251.23774.423": null, 133 133 "251.25410.129": null, 134 - "251.27812.87": null, 135 134 "252.23892.409": "https://plugins.jetbrains.com/files/6954/809234/Kotlin-252.23892.360-IJ.zip", 136 135 "252.23892.411": "https://plugins.jetbrains.com/files/6954/809234/Kotlin-252.23892.360-IJ.zip", 137 136 "252.23892.415": "https://plugins.jetbrains.com/files/6954/809234/Kotlin-252.23892.360-IJ.zip", 138 137 "252.23892.419": "https://plugins.jetbrains.com/files/6954/809234/Kotlin-252.23892.360-IJ.zip", 139 138 "252.23892.426": "https://plugins.jetbrains.com/files/6954/809234/Kotlin-252.23892.360-IJ.zip", 140 - "252.23892.439": "https://plugins.jetbrains.com/files/6954/809234/Kotlin-252.23892.360-IJ.zip", 141 - "252.23892.449": "https://plugins.jetbrains.com/files/6954/809234/Kotlin-252.23892.360-IJ.zip", 142 139 "252.23892.452": "https://plugins.jetbrains.com/files/6954/809234/Kotlin-252.23892.360-IJ.zip", 143 - "252.23892.464": "https://plugins.jetbrains.com/files/6954/809234/Kotlin-252.23892.360-IJ.zip" 140 + "252.23892.515": "https://plugins.jetbrains.com/files/6954/809234/Kotlin-252.23892.360-IJ.zip", 141 + "252.23892.524": "https://plugins.jetbrains.com/files/6954/809234/Kotlin-252.23892.360-IJ.zip", 142 + "252.23892.530": "https://plugins.jetbrains.com/files/6954/809234/Kotlin-252.23892.360-IJ.zip", 143 + "252.25557.34": "https://plugins.jetbrains.com/files/6954/827441/Kotlin-252.25557.23-IJ.zip" 144 144 }, 145 145 "name": "kotlin" 146 146 }, ··· 162 162 "builds": { 163 163 "251.23774.423": null, 164 164 "251.25410.129": null, 165 - "251.27812.87": "https://plugins.jetbrains.com/files/6981/806736/ini-251.27812.54.zip", 166 165 "252.23892.409": "https://plugins.jetbrains.com/files/6981/818238/ini-252.23892.449.zip", 167 166 "252.23892.411": "https://plugins.jetbrains.com/files/6981/818238/ini-252.23892.449.zip", 168 167 "252.23892.415": "https://plugins.jetbrains.com/files/6981/818238/ini-252.23892.449.zip", 169 168 "252.23892.419": "https://plugins.jetbrains.com/files/6981/818238/ini-252.23892.449.zip", 170 169 "252.23892.426": "https://plugins.jetbrains.com/files/6981/818238/ini-252.23892.449.zip", 171 - "252.23892.439": "https://plugins.jetbrains.com/files/6981/818238/ini-252.23892.449.zip", 172 - "252.23892.449": "https://plugins.jetbrains.com/files/6981/818238/ini-252.23892.449.zip", 173 170 "252.23892.452": "https://plugins.jetbrains.com/files/6981/818238/ini-252.23892.449.zip", 174 - "252.23892.464": "https://plugins.jetbrains.com/files/6981/818238/ini-252.23892.449.zip" 171 + "252.23892.515": "https://plugins.jetbrains.com/files/6981/818238/ini-252.23892.449.zip", 172 + "252.23892.524": "https://plugins.jetbrains.com/files/6981/818238/ini-252.23892.449.zip", 173 + "252.23892.530": "https://plugins.jetbrains.com/files/6981/818238/ini-252.23892.449.zip", 174 + "252.25557.34": "https://plugins.jetbrains.com/files/6981/828495/ini-252.25557.34.zip" 175 175 }, 176 176 "name": "ini" 177 177 }, ··· 193 193 "builds": { 194 194 "251.23774.423": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", 195 195 "251.25410.129": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", 196 - "251.27812.87": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", 197 196 "252.23892.409": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", 198 197 "252.23892.411": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", 199 198 "252.23892.415": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", 200 199 "252.23892.419": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", 201 200 "252.23892.426": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", 202 - "252.23892.439": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", 203 - "252.23892.449": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", 204 201 "252.23892.452": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", 205 - "252.23892.464": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip" 202 + "252.23892.515": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", 203 + "252.23892.524": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", 204 + "252.23892.530": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", 205 + "252.25557.34": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip" 206 206 }, 207 207 "name": "acejump" 208 208 }, ··· 224 224 "builds": { 225 225 "251.23774.423": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", 226 226 "251.25410.129": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", 227 - "251.27812.87": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", 228 227 "252.23892.409": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", 229 228 "252.23892.411": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", 230 229 "252.23892.415": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", 231 230 "252.23892.419": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", 232 231 "252.23892.426": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", 233 - "252.23892.439": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", 234 - "252.23892.449": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", 235 232 "252.23892.452": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", 236 - "252.23892.464": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip" 233 + "252.23892.515": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", 234 + "252.23892.524": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", 235 + "252.23892.530": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", 236 + "252.25557.34": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip" 237 237 }, 238 238 "name": "grep-console" 239 239 }, ··· 255 255 "builds": { 256 256 "251.23774.423": "https://plugins.jetbrains.com/files/7177/711086/fileWatcher-251.23774.318.zip", 257 257 "251.25410.129": "https://plugins.jetbrains.com/files/7177/711086/fileWatcher-251.23774.318.zip", 258 - "251.27812.87": "https://plugins.jetbrains.com/files/7177/711086/fileWatcher-251.23774.318.zip", 259 258 "252.23892.409": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", 260 259 "252.23892.411": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", 261 260 "252.23892.415": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", 262 261 "252.23892.419": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", 263 262 "252.23892.426": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", 264 - "252.23892.439": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", 265 - "252.23892.449": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", 266 263 "252.23892.452": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", 267 - "252.23892.464": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip" 264 + "252.23892.515": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", 265 + "252.23892.524": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", 266 + "252.23892.530": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", 267 + "252.25557.34": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip" 268 268 }, 269 269 "name": "file-watchers" 270 270 }, ··· 297 297 "builds": { 298 298 "251.23774.423": "https://plugins.jetbrains.com/files/7212/711023/cucumber-java-251.23774.318.zip", 299 299 "251.25410.129": "https://plugins.jetbrains.com/files/7212/711023/cucumber-java-251.23774.318.zip", 300 - "251.27812.87": "https://plugins.jetbrains.com/files/7212/711023/cucumber-java-251.23774.318.zip", 301 300 "252.23892.409": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", 302 301 "252.23892.411": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", 303 302 "252.23892.415": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", 304 303 "252.23892.419": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", 305 304 "252.23892.426": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", 306 - "252.23892.439": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", 307 - "252.23892.449": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", 308 305 "252.23892.452": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", 309 - "252.23892.464": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip" 306 + "252.23892.515": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", 307 + "252.23892.524": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", 308 + "252.23892.530": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", 309 + "252.25557.34": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip" 310 310 }, 311 311 "name": "cucumber-for-java" 312 312 }, ··· 346 346 ], 347 347 "builds": { 348 348 "251.25410.129": "https://plugins.jetbrains.com/files/7322/737802/python-ce-251.25410.129.zip", 349 - "251.27812.87": "https://plugins.jetbrains.com/files/7322/805188/python-ce-251.27812.49.zip", 350 349 "252.23892.409": "https://plugins.jetbrains.com/files/7322/819231/python-ce-252.23892.458.zip", 351 350 "252.23892.411": "https://plugins.jetbrains.com/files/7322/819231/python-ce-252.23892.458.zip", 352 351 "252.23892.426": "https://plugins.jetbrains.com/files/7322/819231/python-ce-252.23892.458.zip", 353 - "252.23892.439": "https://plugins.jetbrains.com/files/7322/819231/python-ce-252.23892.458.zip", 354 - "252.23892.449": "https://plugins.jetbrains.com/files/7322/819231/python-ce-252.23892.458.zip", 355 352 "252.23892.452": "https://plugins.jetbrains.com/files/7322/819231/python-ce-252.23892.458.zip", 356 - "252.23892.464": "https://plugins.jetbrains.com/files/7322/819231/python-ce-252.23892.458.zip" 353 + "252.23892.515": "https://plugins.jetbrains.com/files/7322/819231/python-ce-252.23892.458.zip", 354 + "252.23892.524": "https://plugins.jetbrains.com/files/7322/819231/python-ce-252.23892.458.zip", 355 + "252.23892.530": "https://plugins.jetbrains.com/files/7322/819231/python-ce-252.23892.458.zip", 356 + "252.25557.34": "https://plugins.jetbrains.com/files/7322/827486/python-ce-252.25557.23.zip" 357 357 }, 358 358 "name": "python-community-edition" 359 359 }, ··· 375 375 "builds": { 376 376 "251.23774.423": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", 377 377 "251.25410.129": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", 378 - "251.27812.87": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", 379 378 "252.23892.409": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", 380 379 "252.23892.411": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", 381 380 "252.23892.415": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", 382 381 "252.23892.419": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", 383 382 "252.23892.426": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", 384 - "252.23892.439": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", 385 - "252.23892.449": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", 386 383 "252.23892.452": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", 387 - "252.23892.464": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip" 384 + "252.23892.515": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", 385 + "252.23892.524": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", 386 + "252.23892.530": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", 387 + "252.25557.34": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip" 388 388 }, 389 389 "name": "asciidoc" 390 390 }, ··· 406 406 "builds": { 407 407 "251.23774.423": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", 408 408 "251.25410.129": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", 409 - "251.27812.87": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", 410 409 "252.23892.409": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", 411 410 "252.23892.411": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", 412 411 "252.23892.415": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", 413 412 "252.23892.419": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", 414 413 "252.23892.426": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", 415 - "252.23892.439": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", 416 - "252.23892.449": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", 417 414 "252.23892.452": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", 418 - "252.23892.464": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar" 415 + "252.23892.515": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", 416 + "252.23892.524": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", 417 + "252.23892.530": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", 418 + "252.25557.34": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar" 419 419 }, 420 420 "name": "wakatime" 421 421 }, ··· 437 437 "builds": { 438 438 "251.23774.423": "https://plugins.jetbrains.com/files/7499/810633/gittoolbox-600.1.7_243-signed.zip", 439 439 "251.25410.129": "https://plugins.jetbrains.com/files/7499/810633/gittoolbox-600.1.7_243-signed.zip", 440 - "251.27812.87": "https://plugins.jetbrains.com/files/7499/810633/gittoolbox-600.1.7_243-signed.zip", 441 440 "252.23892.409": "https://plugins.jetbrains.com/files/7499/810633/gittoolbox-600.1.7_243-signed.zip", 442 441 "252.23892.411": "https://plugins.jetbrains.com/files/7499/810633/gittoolbox-600.1.7_243-signed.zip", 443 442 "252.23892.415": "https://plugins.jetbrains.com/files/7499/810633/gittoolbox-600.1.7_243-signed.zip", 444 443 "252.23892.419": "https://plugins.jetbrains.com/files/7499/810633/gittoolbox-600.1.7_243-signed.zip", 445 444 "252.23892.426": "https://plugins.jetbrains.com/files/7499/810633/gittoolbox-600.1.7_243-signed.zip", 446 - "252.23892.439": "https://plugins.jetbrains.com/files/7499/810633/gittoolbox-600.1.7_243-signed.zip", 447 - "252.23892.449": "https://plugins.jetbrains.com/files/7499/810633/gittoolbox-600.1.7_243-signed.zip", 448 445 "252.23892.452": "https://plugins.jetbrains.com/files/7499/810633/gittoolbox-600.1.7_243-signed.zip", 449 - "252.23892.464": "https://plugins.jetbrains.com/files/7499/810633/gittoolbox-600.1.7_243-signed.zip" 446 + "252.23892.515": "https://plugins.jetbrains.com/files/7499/810633/gittoolbox-600.1.7_243-signed.zip", 447 + "252.23892.524": "https://plugins.jetbrains.com/files/7499/810633/gittoolbox-600.1.7_243-signed.zip", 448 + "252.23892.530": "https://plugins.jetbrains.com/files/7499/810633/gittoolbox-600.1.7_243-signed.zip", 449 + "252.25557.34": "https://plugins.jetbrains.com/files/7499/810633/gittoolbox-600.1.7_243-signed.zip" 450 450 }, 451 451 "name": "gittoolbox" 452 452 }, ··· 468 468 "builds": { 469 469 "251.23774.423": null, 470 470 "251.25410.129": null, 471 - "251.27812.87": "https://plugins.jetbrains.com/files/7724/805402/clouds-docker-impl-251.27812.52.zip", 472 - "252.23892.409": "https://plugins.jetbrains.com/files/7724/819808/clouds-docker-impl-252.23892.464.zip", 473 - "252.23892.411": "https://plugins.jetbrains.com/files/7724/819808/clouds-docker-impl-252.23892.464.zip", 474 - "252.23892.415": "https://plugins.jetbrains.com/files/7724/819808/clouds-docker-impl-252.23892.464.zip", 475 - "252.23892.419": "https://plugins.jetbrains.com/files/7724/819808/clouds-docker-impl-252.23892.464.zip", 476 - "252.23892.426": "https://plugins.jetbrains.com/files/7724/819808/clouds-docker-impl-252.23892.464.zip", 477 - "252.23892.439": "https://plugins.jetbrains.com/files/7724/819808/clouds-docker-impl-252.23892.464.zip", 478 - "252.23892.449": "https://plugins.jetbrains.com/files/7724/819808/clouds-docker-impl-252.23892.464.zip", 479 - "252.23892.452": "https://plugins.jetbrains.com/files/7724/819808/clouds-docker-impl-252.23892.464.zip", 480 - "252.23892.464": "https://plugins.jetbrains.com/files/7724/819808/clouds-docker-impl-252.23892.464.zip" 471 + "252.23892.409": "https://plugins.jetbrains.com/files/7724/826726/clouds-docker-impl-252.23892.515.zip", 472 + "252.23892.411": "https://plugins.jetbrains.com/files/7724/826726/clouds-docker-impl-252.23892.515.zip", 473 + "252.23892.415": "https://plugins.jetbrains.com/files/7724/826726/clouds-docker-impl-252.23892.515.zip", 474 + "252.23892.419": "https://plugins.jetbrains.com/files/7724/826726/clouds-docker-impl-252.23892.515.zip", 475 + "252.23892.426": "https://plugins.jetbrains.com/files/7724/826726/clouds-docker-impl-252.23892.515.zip", 476 + "252.23892.452": "https://plugins.jetbrains.com/files/7724/826726/clouds-docker-impl-252.23892.515.zip", 477 + "252.23892.515": "https://plugins.jetbrains.com/files/7724/826726/clouds-docker-impl-252.23892.515.zip", 478 + "252.23892.524": "https://plugins.jetbrains.com/files/7724/826726/clouds-docker-impl-252.23892.515.zip", 479 + "252.23892.530": "https://plugins.jetbrains.com/files/7724/826726/clouds-docker-impl-252.23892.515.zip", 480 + "252.25557.34": "https://plugins.jetbrains.com/files/7724/829211/clouds-docker-impl-252.25557.35.zip" 481 481 }, 482 482 "name": "docker" 483 483 }, ··· 499 499 "builds": { 500 500 "251.23774.423": "https://plugins.jetbrains.com/files/8097/711188/graphql-251.23774.318.zip", 501 501 "251.25410.129": "https://plugins.jetbrains.com/files/8097/711188/graphql-251.23774.318.zip", 502 - "251.27812.87": "https://plugins.jetbrains.com/files/8097/802996/graphql-251.27812.12.zip", 503 502 "252.23892.409": "https://plugins.jetbrains.com/files/8097/796399/graphql-252.23892.201.zip", 504 503 "252.23892.411": "https://plugins.jetbrains.com/files/8097/796399/graphql-252.23892.201.zip", 505 504 "252.23892.415": "https://plugins.jetbrains.com/files/8097/796399/graphql-252.23892.201.zip", 506 505 "252.23892.419": "https://plugins.jetbrains.com/files/8097/796399/graphql-252.23892.201.zip", 507 506 "252.23892.426": "https://plugins.jetbrains.com/files/8097/796399/graphql-252.23892.201.zip", 508 - "252.23892.439": "https://plugins.jetbrains.com/files/8097/796399/graphql-252.23892.201.zip", 509 - "252.23892.449": "https://plugins.jetbrains.com/files/8097/796399/graphql-252.23892.201.zip", 510 507 "252.23892.452": "https://plugins.jetbrains.com/files/8097/796399/graphql-252.23892.201.zip", 511 - "252.23892.464": "https://plugins.jetbrains.com/files/8097/796399/graphql-252.23892.201.zip" 508 + "252.23892.515": "https://plugins.jetbrains.com/files/8097/796399/graphql-252.23892.201.zip", 509 + "252.23892.524": "https://plugins.jetbrains.com/files/8097/796399/graphql-252.23892.201.zip", 510 + "252.23892.530": "https://plugins.jetbrains.com/files/8097/796399/graphql-252.23892.201.zip", 511 + "252.25557.34": "https://plugins.jetbrains.com/files/8097/827445/graphql-252.25557.23.zip" 512 512 }, 513 513 "name": "graphql" 514 514 }, ··· 529 529 "builds": { 530 530 "251.23774.423": null, 531 531 "251.25410.129": null, 532 - "251.27812.87": null, 533 532 "252.23892.409": null, 534 533 "252.23892.411": null, 535 534 "252.23892.415": null, 536 535 "252.23892.419": null, 537 536 "252.23892.426": null, 538 - "252.23892.439": null, 539 - "252.23892.449": null, 540 - "252.23892.464": null 537 + "252.23892.515": null, 538 + "252.23892.524": null, 539 + "252.23892.530": null, 540 + "252.25557.34": null 541 541 }, 542 542 "name": "-deprecated-rust" 543 543 }, ··· 558 558 "builds": { 559 559 "251.23774.423": null, 560 560 "251.25410.129": null, 561 - "251.27812.87": null, 562 561 "252.23892.409": null, 563 562 "252.23892.411": null, 564 563 "252.23892.415": null, 565 564 "252.23892.419": null, 566 565 "252.23892.426": null, 567 - "252.23892.439": null, 568 - "252.23892.449": null, 569 - "252.23892.464": null 566 + "252.23892.515": null, 567 + "252.23892.524": null, 568 + "252.23892.530": null, 569 + "252.25557.34": null 570 570 }, 571 571 "name": "-deprecated-rust-beta" 572 572 }, ··· 588 588 "builds": { 589 589 "251.23774.423": null, 590 590 "251.25410.129": null, 591 - "251.27812.87": "https://plugins.jetbrains.com/files/8195/780518/toml-251.26927.47.zip", 592 591 "252.23892.409": "https://plugins.jetbrains.com/files/8195/819801/toml-252.23892.464.zip", 593 592 "252.23892.411": "https://plugins.jetbrains.com/files/8195/819801/toml-252.23892.464.zip", 594 593 "252.23892.415": "https://plugins.jetbrains.com/files/8195/819801/toml-252.23892.464.zip", 595 594 "252.23892.419": "https://plugins.jetbrains.com/files/8195/819801/toml-252.23892.464.zip", 596 595 "252.23892.426": "https://plugins.jetbrains.com/files/8195/819801/toml-252.23892.464.zip", 597 - "252.23892.439": "https://plugins.jetbrains.com/files/8195/819801/toml-252.23892.464.zip", 598 - "252.23892.449": "https://plugins.jetbrains.com/files/8195/819801/toml-252.23892.464.zip", 599 596 "252.23892.452": "https://plugins.jetbrains.com/files/8195/819801/toml-252.23892.464.zip", 600 - "252.23892.464": "https://plugins.jetbrains.com/files/8195/819801/toml-252.23892.464.zip" 597 + "252.23892.515": "https://plugins.jetbrains.com/files/8195/819801/toml-252.23892.464.zip", 598 + "252.23892.524": "https://plugins.jetbrains.com/files/8195/819801/toml-252.23892.464.zip", 599 + "252.23892.530": "https://plugins.jetbrains.com/files/8195/819801/toml-252.23892.464.zip", 600 + "252.25557.34": "https://plugins.jetbrains.com/files/8195/828228/toml-252.25557.32.zip" 601 601 }, 602 602 "name": "toml" 603 603 }, ··· 630 630 "builds": { 631 631 "251.23774.423": null, 632 632 "251.25410.129": "https://plugins.jetbrains.com/files/8554/740850/featuresTrainer-251.25410.148.zip", 633 - "251.27812.87": "https://plugins.jetbrains.com/files/8554/768764/featuresTrainer-251.26094.133.zip", 634 - "252.23892.409": "https://plugins.jetbrains.com/files/8554/819797/featuresTrainer-252.23892.464.zip", 635 - "252.23892.411": "https://plugins.jetbrains.com/files/8554/819797/featuresTrainer-252.23892.464.zip", 636 - "252.23892.415": "https://plugins.jetbrains.com/files/8554/819797/featuresTrainer-252.23892.464.zip", 637 - "252.23892.419": "https://plugins.jetbrains.com/files/8554/819797/featuresTrainer-252.23892.464.zip", 638 - "252.23892.426": "https://plugins.jetbrains.com/files/8554/819797/featuresTrainer-252.23892.464.zip", 639 - "252.23892.439": "https://plugins.jetbrains.com/files/8554/819797/featuresTrainer-252.23892.464.zip", 640 - "252.23892.449": "https://plugins.jetbrains.com/files/8554/819797/featuresTrainer-252.23892.464.zip", 641 - "252.23892.452": "https://plugins.jetbrains.com/files/8554/819797/featuresTrainer-252.23892.464.zip", 642 - "252.23892.464": "https://plugins.jetbrains.com/files/8554/819797/featuresTrainer-252.23892.464.zip" 633 + "252.23892.409": "https://plugins.jetbrains.com/files/8554/826552/featuresTrainer-252.23892.514.zip", 634 + "252.23892.411": "https://plugins.jetbrains.com/files/8554/826552/featuresTrainer-252.23892.514.zip", 635 + "252.23892.415": "https://plugins.jetbrains.com/files/8554/826552/featuresTrainer-252.23892.514.zip", 636 + "252.23892.419": "https://plugins.jetbrains.com/files/8554/826552/featuresTrainer-252.23892.514.zip", 637 + "252.23892.426": "https://plugins.jetbrains.com/files/8554/826552/featuresTrainer-252.23892.514.zip", 638 + "252.23892.452": "https://plugins.jetbrains.com/files/8554/826552/featuresTrainer-252.23892.514.zip", 639 + "252.23892.515": "https://plugins.jetbrains.com/files/8554/826552/featuresTrainer-252.23892.514.zip", 640 + "252.23892.524": "https://plugins.jetbrains.com/files/8554/826552/featuresTrainer-252.23892.514.zip", 641 + "252.23892.530": "https://plugins.jetbrains.com/files/8554/826552/featuresTrainer-252.23892.514.zip", 642 + "252.25557.34": "https://plugins.jetbrains.com/files/8554/828474/featuresTrainer-252.25557.34.zip" 643 643 }, 644 644 "name": "ide-features-trainer" 645 645 }, ··· 661 661 "builds": { 662 662 "251.23774.423": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", 663 663 "251.25410.129": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", 664 - "251.27812.87": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", 665 664 "252.23892.409": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", 666 665 "252.23892.411": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", 667 666 "252.23892.415": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", 668 667 "252.23892.419": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", 669 668 "252.23892.426": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", 670 - "252.23892.439": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", 671 - "252.23892.449": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", 672 669 "252.23892.452": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", 673 - "252.23892.464": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip" 670 + "252.23892.515": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", 671 + "252.23892.524": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", 672 + "252.23892.530": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", 673 + "252.25557.34": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip" 674 674 }, 675 675 "name": "nixidea" 676 676 }, ··· 692 692 "builds": { 693 693 "251.23774.423": "https://plugins.jetbrains.com/files/9164/710996/gherkin-251.23774.318.zip", 694 694 "251.25410.129": "https://plugins.jetbrains.com/files/9164/710996/gherkin-251.23774.318.zip", 695 - "251.27812.87": "https://plugins.jetbrains.com/files/9164/710996/gherkin-251.23774.318.zip", 696 695 "252.23892.409": "https://plugins.jetbrains.com/files/9164/796366/gherkin-252.23892.201.zip", 697 696 "252.23892.411": "https://plugins.jetbrains.com/files/9164/796366/gherkin-252.23892.201.zip", 698 697 "252.23892.415": "https://plugins.jetbrains.com/files/9164/796366/gherkin-252.23892.201.zip", 699 698 "252.23892.419": "https://plugins.jetbrains.com/files/9164/796366/gherkin-252.23892.201.zip", 700 699 "252.23892.426": "https://plugins.jetbrains.com/files/9164/796366/gherkin-252.23892.201.zip", 701 - "252.23892.439": "https://plugins.jetbrains.com/files/9164/796366/gherkin-252.23892.201.zip", 702 - "252.23892.449": "https://plugins.jetbrains.com/files/9164/796366/gherkin-252.23892.201.zip", 703 700 "252.23892.452": "https://plugins.jetbrains.com/files/9164/796366/gherkin-252.23892.201.zip", 704 - "252.23892.464": "https://plugins.jetbrains.com/files/9164/796366/gherkin-252.23892.201.zip" 701 + "252.23892.515": "https://plugins.jetbrains.com/files/9164/796366/gherkin-252.23892.201.zip", 702 + "252.23892.524": "https://plugins.jetbrains.com/files/9164/796366/gherkin-252.23892.201.zip", 703 + "252.23892.530": "https://plugins.jetbrains.com/files/9164/796366/gherkin-252.23892.201.zip", 704 + "252.25557.34": "https://plugins.jetbrains.com/files/9164/827451/gherkin-252.25557.23.zip" 705 705 }, 706 706 "name": "gherkin" 707 707 }, ··· 723 723 "builds": { 724 724 "251.23774.423": "https://plugins.jetbrains.com/files/9525/711041/dotenv-251.23774.318.zip", 725 725 "251.25410.129": "https://plugins.jetbrains.com/files/9525/711041/dotenv-251.23774.318.zip", 726 - "251.27812.87": "https://plugins.jetbrains.com/files/9525/711041/dotenv-251.23774.318.zip", 727 726 "252.23892.409": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", 728 727 "252.23892.411": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", 729 728 "252.23892.415": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", 730 729 "252.23892.419": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", 731 730 "252.23892.426": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", 732 - "252.23892.439": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", 733 - "252.23892.449": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", 734 731 "252.23892.452": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", 735 - "252.23892.464": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip" 732 + "252.23892.515": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", 733 + "252.23892.524": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", 734 + "252.23892.530": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", 735 + "252.25557.34": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip" 736 736 }, 737 737 "name": "-env-files" 738 738 }, ··· 743 743 ], 744 744 "builds": { 745 745 "252.23892.409": "https://plugins.jetbrains.com/files/9568/808965/go-plugin-252.23892.360.zip", 746 - "252.23892.449": "https://plugins.jetbrains.com/files/9568/808965/go-plugin-252.23892.360.zip" 746 + "252.23892.530": "https://plugins.jetbrains.com/files/9568/808965/go-plugin-252.23892.360.zip" 747 747 }, 748 748 "name": "go" 749 749 }, ··· 765 765 "builds": { 766 766 "251.23774.423": "https://plugins.jetbrains.com/files/9707/702581/ANSI_Highlighter_Premium-25.1.5.jar", 767 767 "251.25410.129": "https://plugins.jetbrains.com/files/9707/702581/ANSI_Highlighter_Premium-25.1.5.jar", 768 - "251.27812.87": "https://plugins.jetbrains.com/files/9707/702581/ANSI_Highlighter_Premium-25.1.5.jar", 769 768 "252.23892.409": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", 770 769 "252.23892.411": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", 771 770 "252.23892.415": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", 772 771 "252.23892.419": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", 773 772 "252.23892.426": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", 774 - "252.23892.439": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", 775 - "252.23892.449": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", 776 773 "252.23892.452": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", 777 - "252.23892.464": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar" 774 + "252.23892.515": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", 775 + "252.23892.524": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", 776 + "252.23892.530": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", 777 + "252.25557.34": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar" 778 778 }, 779 779 "name": "ansi-highlighter-premium" 780 780 }, ··· 796 796 "builds": { 797 797 "251.23774.423": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 798 798 "251.25410.129": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 799 - "251.27812.87": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 800 799 "252.23892.409": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 801 800 "252.23892.411": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 802 801 "252.23892.415": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 803 802 "252.23892.419": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 804 803 "252.23892.426": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 805 - "252.23892.439": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 806 - "252.23892.449": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 807 804 "252.23892.452": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 808 - "252.23892.464": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip" 805 + "252.23892.515": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 806 + "252.23892.524": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 807 + "252.23892.530": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 808 + "252.25557.34": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip" 809 809 }, 810 810 "name": "key-promoter-x" 811 811 }, ··· 825 825 "webstorm" 826 826 ], 827 827 "builds": { 828 - "251.23774.423": "https://plugins.jetbrains.com/files/9836/803254/intellij-randomness-3.4.0.zip", 829 - "251.25410.129": "https://plugins.jetbrains.com/files/9836/803254/intellij-randomness-3.4.0.zip", 830 - "251.27812.87": "https://plugins.jetbrains.com/files/9836/803254/intellij-randomness-3.4.0.zip", 831 - "252.23892.409": "https://plugins.jetbrains.com/files/9836/803254/intellij-randomness-3.4.0.zip", 832 - "252.23892.411": "https://plugins.jetbrains.com/files/9836/803254/intellij-randomness-3.4.0.zip", 833 - "252.23892.415": "https://plugins.jetbrains.com/files/9836/803254/intellij-randomness-3.4.0.zip", 834 - "252.23892.419": "https://plugins.jetbrains.com/files/9836/803254/intellij-randomness-3.4.0.zip", 835 - "252.23892.426": "https://plugins.jetbrains.com/files/9836/803254/intellij-randomness-3.4.0.zip", 836 - "252.23892.439": "https://plugins.jetbrains.com/files/9836/803254/intellij-randomness-3.4.0.zip", 837 - "252.23892.449": "https://plugins.jetbrains.com/files/9836/803254/intellij-randomness-3.4.0.zip", 838 - "252.23892.452": "https://plugins.jetbrains.com/files/9836/803254/intellij-randomness-3.4.0.zip", 839 - "252.23892.464": "https://plugins.jetbrains.com/files/9836/803254/intellij-randomness-3.4.0.zip" 828 + "251.23774.423": "https://plugins.jetbrains.com/files/9836/823111/intellij-randomness-3.4.1.zip", 829 + "251.25410.129": "https://plugins.jetbrains.com/files/9836/823111/intellij-randomness-3.4.1.zip", 830 + "252.23892.409": "https://plugins.jetbrains.com/files/9836/823111/intellij-randomness-3.4.1.zip", 831 + "252.23892.411": "https://plugins.jetbrains.com/files/9836/823111/intellij-randomness-3.4.1.zip", 832 + "252.23892.415": "https://plugins.jetbrains.com/files/9836/823111/intellij-randomness-3.4.1.zip", 833 + "252.23892.419": "https://plugins.jetbrains.com/files/9836/823111/intellij-randomness-3.4.1.zip", 834 + "252.23892.426": "https://plugins.jetbrains.com/files/9836/823111/intellij-randomness-3.4.1.zip", 835 + "252.23892.452": "https://plugins.jetbrains.com/files/9836/823111/intellij-randomness-3.4.1.zip", 836 + "252.23892.515": "https://plugins.jetbrains.com/files/9836/823111/intellij-randomness-3.4.1.zip", 837 + "252.23892.524": "https://plugins.jetbrains.com/files/9836/823111/intellij-randomness-3.4.1.zip", 838 + "252.23892.530": "https://plugins.jetbrains.com/files/9836/823111/intellij-randomness-3.4.1.zip", 839 + "252.25557.34": "https://plugins.jetbrains.com/files/9836/823111/intellij-randomness-3.4.1.zip" 840 840 }, 841 841 "name": "randomness" 842 842 }, ··· 858 858 "builds": { 859 859 "251.23774.423": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 860 860 "251.25410.129": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 861 - "251.27812.87": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 862 861 "252.23892.409": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 863 862 "252.23892.411": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 864 863 "252.23892.415": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 865 864 "252.23892.419": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 866 865 "252.23892.426": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 867 - "252.23892.439": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 868 - "252.23892.449": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 869 866 "252.23892.452": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 870 - "252.23892.464": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip" 867 + "252.23892.515": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 868 + "252.23892.524": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 869 + "252.23892.530": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 870 + "252.25557.34": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip" 871 871 }, 872 872 "name": "csv-editor" 873 873 }, ··· 887 887 "webstorm" 888 888 ], 889 889 "builds": { 890 - "251.23774.423": "https://plugins.jetbrains.com/files/10080/811169/intellij-rainbow-brackets-2025.3.2.zip", 891 - "251.25410.129": "https://plugins.jetbrains.com/files/10080/811169/intellij-rainbow-brackets-2025.3.2.zip", 892 - "251.27812.87": "https://plugins.jetbrains.com/files/10080/811169/intellij-rainbow-brackets-2025.3.2.zip", 893 - "252.23892.409": "https://plugins.jetbrains.com/files/10080/811169/intellij-rainbow-brackets-2025.3.2.zip", 894 - "252.23892.411": "https://plugins.jetbrains.com/files/10080/811169/intellij-rainbow-brackets-2025.3.2.zip", 895 - "252.23892.415": "https://plugins.jetbrains.com/files/10080/811169/intellij-rainbow-brackets-2025.3.2.zip", 896 - "252.23892.419": "https://plugins.jetbrains.com/files/10080/811169/intellij-rainbow-brackets-2025.3.2.zip", 897 - "252.23892.426": "https://plugins.jetbrains.com/files/10080/811169/intellij-rainbow-brackets-2025.3.2.zip", 898 - "252.23892.439": "https://plugins.jetbrains.com/files/10080/811169/intellij-rainbow-brackets-2025.3.2.zip", 899 - "252.23892.449": "https://plugins.jetbrains.com/files/10080/811169/intellij-rainbow-brackets-2025.3.2.zip", 900 - "252.23892.452": "https://plugins.jetbrains.com/files/10080/811169/intellij-rainbow-brackets-2025.3.2.zip", 901 - "252.23892.464": "https://plugins.jetbrains.com/files/10080/811169/intellij-rainbow-brackets-2025.3.2.zip" 890 + "251.23774.423": "https://plugins.jetbrains.com/files/10080/831413/intellij-rainbow-brackets-2025.3.3.zip", 891 + "251.25410.129": "https://plugins.jetbrains.com/files/10080/831413/intellij-rainbow-brackets-2025.3.3.zip", 892 + "252.23892.409": "https://plugins.jetbrains.com/files/10080/831413/intellij-rainbow-brackets-2025.3.3.zip", 893 + "252.23892.411": "https://plugins.jetbrains.com/files/10080/831413/intellij-rainbow-brackets-2025.3.3.zip", 894 + "252.23892.415": "https://plugins.jetbrains.com/files/10080/831413/intellij-rainbow-brackets-2025.3.3.zip", 895 + "252.23892.419": "https://plugins.jetbrains.com/files/10080/831413/intellij-rainbow-brackets-2025.3.3.zip", 896 + "252.23892.426": "https://plugins.jetbrains.com/files/10080/831413/intellij-rainbow-brackets-2025.3.3.zip", 897 + "252.23892.452": "https://plugins.jetbrains.com/files/10080/831413/intellij-rainbow-brackets-2025.3.3.zip", 898 + "252.23892.515": "https://plugins.jetbrains.com/files/10080/831413/intellij-rainbow-brackets-2025.3.3.zip", 899 + "252.23892.524": "https://plugins.jetbrains.com/files/10080/831413/intellij-rainbow-brackets-2025.3.3.zip", 900 + "252.23892.530": "https://plugins.jetbrains.com/files/10080/831413/intellij-rainbow-brackets-2025.3.3.zip", 901 + "252.25557.34": "https://plugins.jetbrains.com/files/10080/831413/intellij-rainbow-brackets-2025.3.3.zip" 902 902 }, 903 903 "name": "rainbow-brackets" 904 904 }, ··· 920 920 "builds": { 921 921 "251.23774.423": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 922 922 "251.25410.129": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 923 - "251.27812.87": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 924 923 "252.23892.409": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 925 924 "252.23892.411": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 926 925 "252.23892.415": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 927 926 "252.23892.419": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 928 927 "252.23892.426": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 929 - "252.23892.439": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 930 - "252.23892.449": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 931 928 "252.23892.452": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 932 - "252.23892.464": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip" 929 + "252.23892.515": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 930 + "252.23892.524": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 931 + "252.23892.530": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 932 + "252.25557.34": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip" 933 933 }, 934 934 "name": "dot-language" 935 935 }, ··· 951 951 "builds": { 952 952 "251.23774.423": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", 953 953 "251.25410.129": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", 954 - "251.27812.87": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", 955 954 "252.23892.409": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", 956 955 "252.23892.411": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", 957 956 "252.23892.415": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", 958 957 "252.23892.419": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", 959 958 "252.23892.426": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", 960 - "252.23892.439": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", 961 - "252.23892.449": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", 962 959 "252.23892.452": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", 963 - "252.23892.464": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip" 960 + "252.23892.515": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", 961 + "252.23892.524": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", 962 + "252.23892.530": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", 963 + "252.25557.34": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip" 964 964 }, 965 965 "name": "hocon" 966 966 }, ··· 981 981 "builds": { 982 982 "251.23774.423": "https://plugins.jetbrains.com/files/10581/711019/go-template-251.23774.318.zip", 983 983 "251.25410.129": "https://plugins.jetbrains.com/files/10581/711019/go-template-251.23774.318.zip", 984 - "251.27812.87": "https://plugins.jetbrains.com/files/10581/711019/go-template-251.23774.318.zip", 985 984 "252.23892.409": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", 986 985 "252.23892.411": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", 987 986 "252.23892.415": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", 988 987 "252.23892.419": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", 989 988 "252.23892.426": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", 990 - "252.23892.439": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", 991 989 "252.23892.452": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", 992 - "252.23892.464": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip" 990 + "252.23892.515": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", 991 + "252.23892.524": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", 992 + "252.25557.34": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip" 993 993 }, 994 994 "name": "go-template" 995 995 }, ··· 1011 1011 "builds": { 1012 1012 "251.23774.423": "https://plugins.jetbrains.com/files/11058/818728/Extra_Icons-2025.1.12.zip", 1013 1013 "251.25410.129": "https://plugins.jetbrains.com/files/11058/818728/Extra_Icons-2025.1.12.zip", 1014 - "251.27812.87": "https://plugins.jetbrains.com/files/11058/818728/Extra_Icons-2025.1.12.zip", 1015 1014 "252.23892.409": "https://plugins.jetbrains.com/files/11058/818728/Extra_Icons-2025.1.12.zip", 1016 1015 "252.23892.411": "https://plugins.jetbrains.com/files/11058/818728/Extra_Icons-2025.1.12.zip", 1017 1016 "252.23892.415": "https://plugins.jetbrains.com/files/11058/818728/Extra_Icons-2025.1.12.zip", 1018 1017 "252.23892.419": "https://plugins.jetbrains.com/files/11058/818728/Extra_Icons-2025.1.12.zip", 1019 1018 "252.23892.426": "https://plugins.jetbrains.com/files/11058/818728/Extra_Icons-2025.1.12.zip", 1020 - "252.23892.439": "https://plugins.jetbrains.com/files/11058/818728/Extra_Icons-2025.1.12.zip", 1021 - "252.23892.449": "https://plugins.jetbrains.com/files/11058/818728/Extra_Icons-2025.1.12.zip", 1022 1019 "252.23892.452": "https://plugins.jetbrains.com/files/11058/818728/Extra_Icons-2025.1.12.zip", 1023 - "252.23892.464": "https://plugins.jetbrains.com/files/11058/818728/Extra_Icons-2025.1.12.zip" 1020 + "252.23892.515": "https://plugins.jetbrains.com/files/11058/818728/Extra_Icons-2025.1.12.zip", 1021 + "252.23892.524": "https://plugins.jetbrains.com/files/11058/818728/Extra_Icons-2025.1.12.zip", 1022 + "252.23892.530": "https://plugins.jetbrains.com/files/11058/818728/Extra_Icons-2025.1.12.zip", 1023 + "252.25557.34": "https://plugins.jetbrains.com/files/11058/818728/Extra_Icons-2025.1.12.zip" 1024 1024 }, 1025 1025 "name": "extra-icons" 1026 1026 }, ··· 1040 1040 "webstorm" 1041 1041 ], 1042 1042 "builds": { 1043 - "251.23774.423": "https://plugins.jetbrains.com/files/11349/817799/aws-toolkit-jetbrains-standalone-3.88.251.zip", 1044 - "251.25410.129": "https://plugins.jetbrains.com/files/11349/817799/aws-toolkit-jetbrains-standalone-3.88.251.zip", 1045 - "251.27812.87": "https://plugins.jetbrains.com/files/11349/817799/aws-toolkit-jetbrains-standalone-3.88.251.zip", 1046 - "252.23892.409": "https://plugins.jetbrains.com/files/11349/817795/aws-toolkit-jetbrains-standalone-3.88.252.zip", 1047 - "252.23892.411": "https://plugins.jetbrains.com/files/11349/817795/aws-toolkit-jetbrains-standalone-3.88.252.zip", 1048 - "252.23892.415": "https://plugins.jetbrains.com/files/11349/817795/aws-toolkit-jetbrains-standalone-3.88.252.zip", 1049 - "252.23892.419": "https://plugins.jetbrains.com/files/11349/817795/aws-toolkit-jetbrains-standalone-3.88.252.zip", 1050 - "252.23892.426": "https://plugins.jetbrains.com/files/11349/817795/aws-toolkit-jetbrains-standalone-3.88.252.zip", 1051 - "252.23892.439": "https://plugins.jetbrains.com/files/11349/817795/aws-toolkit-jetbrains-standalone-3.88.252.zip", 1052 - "252.23892.449": "https://plugins.jetbrains.com/files/11349/817795/aws-toolkit-jetbrains-standalone-3.88.252.zip", 1053 - "252.23892.452": "https://plugins.jetbrains.com/files/11349/817795/aws-toolkit-jetbrains-standalone-3.88.252.zip", 1054 - "252.23892.464": "https://plugins.jetbrains.com/files/11349/817795/aws-toolkit-jetbrains-standalone-3.88.252.zip" 1043 + "251.23774.423": "https://plugins.jetbrains.com/files/11349/821624/aws-toolkit-jetbrains-standalone-3.89.251.zip", 1044 + "251.25410.129": "https://plugins.jetbrains.com/files/11349/821624/aws-toolkit-jetbrains-standalone-3.89.251.zip", 1045 + "252.23892.409": "https://plugins.jetbrains.com/files/11349/821620/aws-toolkit-jetbrains-standalone-3.89.252.zip", 1046 + "252.23892.411": "https://plugins.jetbrains.com/files/11349/821620/aws-toolkit-jetbrains-standalone-3.89.252.zip", 1047 + "252.23892.415": "https://plugins.jetbrains.com/files/11349/821620/aws-toolkit-jetbrains-standalone-3.89.252.zip", 1048 + "252.23892.419": "https://plugins.jetbrains.com/files/11349/821620/aws-toolkit-jetbrains-standalone-3.89.252.zip", 1049 + "252.23892.426": "https://plugins.jetbrains.com/files/11349/821620/aws-toolkit-jetbrains-standalone-3.89.252.zip", 1050 + "252.23892.452": "https://plugins.jetbrains.com/files/11349/821620/aws-toolkit-jetbrains-standalone-3.89.252.zip", 1051 + "252.23892.515": "https://plugins.jetbrains.com/files/11349/821620/aws-toolkit-jetbrains-standalone-3.89.252.zip", 1052 + "252.23892.524": "https://plugins.jetbrains.com/files/11349/821620/aws-toolkit-jetbrains-standalone-3.89.252.zip", 1053 + "252.23892.530": "https://plugins.jetbrains.com/files/11349/821620/aws-toolkit-jetbrains-standalone-3.89.252.zip", 1054 + "252.25557.34": "https://plugins.jetbrains.com/files/11349/821620/aws-toolkit-jetbrains-standalone-3.89.252.zip" 1055 1055 }, 1056 1056 "name": "aws-toolkit" 1057 1057 }, ··· 1060 1060 "rider" 1061 1061 ], 1062 1062 "builds": { 1063 - "251.27812.87": "https://plugins.jetbrains.com/files/12024/667413/ReSharperPlugin.CognitiveComplexity-2025.1.0-eap01.zip" 1063 + "252.23892.524": "https://plugins.jetbrains.com/files/12024/717598/ReSharperPlugin.CognitiveComplexity-2025.1.0.zip" 1064 1064 }, 1065 1065 "name": "cognitivecomplexity" 1066 1066 }, ··· 1082 1082 "builds": { 1083 1083 "251.23774.423": "https://plugins.jetbrains.com/files/12062/711097/keymap-vscode-251.23774.318.zip", 1084 1084 "251.25410.129": "https://plugins.jetbrains.com/files/12062/711097/keymap-vscode-251.23774.318.zip", 1085 - "251.27812.87": "https://plugins.jetbrains.com/files/12062/711097/keymap-vscode-251.23774.318.zip", 1086 1085 "252.23892.409": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", 1087 1086 "252.23892.411": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", 1088 1087 "252.23892.415": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", 1089 1088 "252.23892.419": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", 1090 1089 "252.23892.426": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", 1091 - "252.23892.439": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", 1092 - "252.23892.449": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", 1093 1090 "252.23892.452": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", 1094 - "252.23892.464": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip" 1091 + "252.23892.515": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", 1092 + "252.23892.524": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", 1093 + "252.23892.530": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", 1094 + "252.25557.34": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip" 1095 1095 }, 1096 1096 "name": "vscode-keymap" 1097 1097 }, ··· 1113 1113 "builds": { 1114 1114 "251.23774.423": "https://plugins.jetbrains.com/files/12559/711714/keymap-eclipse-251.23774.329.zip", 1115 1115 "251.25410.129": "https://plugins.jetbrains.com/files/12559/711714/keymap-eclipse-251.23774.329.zip", 1116 - "251.27812.87": "https://plugins.jetbrains.com/files/12559/711714/keymap-eclipse-251.23774.329.zip", 1117 1116 "252.23892.409": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", 1118 1117 "252.23892.411": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", 1119 1118 "252.23892.415": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", 1120 1119 "252.23892.419": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", 1121 1120 "252.23892.426": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", 1122 - "252.23892.439": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", 1123 - "252.23892.449": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", 1124 1121 "252.23892.452": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", 1125 - "252.23892.464": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip" 1122 + "252.23892.515": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", 1123 + "252.23892.524": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", 1124 + "252.23892.530": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", 1125 + "252.25557.34": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip" 1126 1126 }, 1127 1127 "name": "eclipse-keymap" 1128 1128 }, ··· 1144 1144 "builds": { 1145 1145 "251.23774.423": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1146 1146 "251.25410.129": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1147 - "251.27812.87": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1148 1147 "252.23892.409": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1149 1148 "252.23892.411": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1150 1149 "252.23892.415": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1151 1150 "252.23892.419": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1152 1151 "252.23892.426": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1153 - "252.23892.439": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1154 - "252.23892.449": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1155 1152 "252.23892.452": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1156 - "252.23892.464": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip" 1153 + "252.23892.515": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1154 + "252.23892.524": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1155 + "252.23892.530": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1156 + "252.25557.34": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip" 1157 1157 }, 1158 1158 "name": "rainbow-csv" 1159 1159 }, ··· 1175 1175 "builds": { 1176 1176 "251.23774.423": "https://plugins.jetbrains.com/files/13017/711726/keymap-visualStudio-251.23774.329.zip", 1177 1177 "251.25410.129": "https://plugins.jetbrains.com/files/13017/711726/keymap-visualStudio-251.23774.329.zip", 1178 - "251.27812.87": "https://plugins.jetbrains.com/files/13017/711726/keymap-visualStudio-251.23774.329.zip", 1179 1178 "252.23892.409": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", 1180 1179 "252.23892.411": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", 1181 1180 "252.23892.415": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", 1182 1181 "252.23892.419": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", 1183 1182 "252.23892.426": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", 1184 - "252.23892.439": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", 1185 - "252.23892.449": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", 1186 1183 "252.23892.452": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", 1187 - "252.23892.464": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip" 1184 + "252.23892.515": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", 1185 + "252.23892.524": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", 1186 + "252.23892.530": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", 1187 + "252.25557.34": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip" 1188 1188 }, 1189 1189 "name": "visual-studio-keymap" 1190 1190 }, ··· 1206 1206 "builds": { 1207 1207 "251.23774.423": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1208 1208 "251.25410.129": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1209 - "251.27812.87": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1210 1209 "252.23892.409": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1211 1210 "252.23892.411": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1212 1211 "252.23892.415": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1213 1212 "252.23892.419": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1214 1213 "252.23892.426": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1215 - "252.23892.439": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1216 - "252.23892.449": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1217 1214 "252.23892.452": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1218 - "252.23892.464": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip" 1215 + "252.23892.515": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1216 + "252.23892.524": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1217 + "252.23892.530": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1218 + "252.25557.34": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip" 1219 1219 }, 1220 1220 "name": "indent-rainbow" 1221 1221 }, ··· 1237 1237 "builds": { 1238 1238 "251.23774.423": "https://plugins.jetbrains.com/files/14004/711000/protoeditor-251.23774.318.zip", 1239 1239 "251.25410.129": "https://plugins.jetbrains.com/files/14004/711000/protoeditor-251.23774.318.zip", 1240 - "251.27812.87": "https://plugins.jetbrains.com/files/14004/803006/protoeditor-251.27812.12.zip", 1241 1240 "252.23892.409": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", 1242 1241 "252.23892.411": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", 1243 1242 "252.23892.415": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", 1244 1243 "252.23892.419": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", 1245 1244 "252.23892.426": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", 1246 - "252.23892.439": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", 1247 - "252.23892.449": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", 1248 1245 "252.23892.452": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", 1249 - "252.23892.464": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip" 1246 + "252.23892.515": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", 1247 + "252.23892.524": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", 1248 + "252.23892.530": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", 1249 + "252.25557.34": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip" 1250 1250 }, 1251 1251 "name": "protocol-buffers" 1252 1252 }, ··· 1268 1268 "builds": { 1269 1269 "251.23774.423": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1270 1270 "251.25410.129": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1271 - "251.27812.87": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1272 1271 "252.23892.409": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1273 1272 "252.23892.411": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1274 1273 "252.23892.415": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1275 1274 "252.23892.419": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1276 1275 "252.23892.426": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1277 - "252.23892.439": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1278 - "252.23892.449": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1279 1276 "252.23892.452": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1280 - "252.23892.464": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar" 1277 + "252.23892.515": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1278 + "252.23892.524": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1279 + "252.23892.530": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1280 + "252.25557.34": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar" 1281 1281 }, 1282 1282 "name": "darcula-pitch-black" 1283 1283 }, ··· 1299 1299 "builds": { 1300 1300 "251.23774.423": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1301 1301 "251.25410.129": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1302 - "251.27812.87": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1303 1302 "252.23892.409": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1304 1303 "252.23892.411": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1305 1304 "252.23892.415": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1306 1305 "252.23892.419": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1307 1306 "252.23892.426": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1308 - "252.23892.439": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1309 - "252.23892.449": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1310 1307 "252.23892.452": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1311 - "252.23892.464": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar" 1308 + "252.23892.515": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1309 + "252.23892.524": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1310 + "252.23892.530": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1311 + "252.25557.34": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar" 1312 1312 }, 1313 1313 "name": "mario-progress-bar" 1314 1314 }, ··· 1330 1330 "builds": { 1331 1331 "251.23774.423": "https://plugins.jetbrains.com/files/15976/762630/IDEA_Which-Key-0.11.1.jar", 1332 1332 "251.25410.129": "https://plugins.jetbrains.com/files/15976/762630/IDEA_Which-Key-0.11.1.jar", 1333 - "251.27812.87": "https://plugins.jetbrains.com/files/15976/762630/IDEA_Which-Key-0.11.1.jar", 1334 1333 "252.23892.409": "https://plugins.jetbrains.com/files/15976/762630/IDEA_Which-Key-0.11.1.jar", 1335 1334 "252.23892.411": "https://plugins.jetbrains.com/files/15976/762630/IDEA_Which-Key-0.11.1.jar", 1336 1335 "252.23892.415": "https://plugins.jetbrains.com/files/15976/762630/IDEA_Which-Key-0.11.1.jar", 1337 1336 "252.23892.419": "https://plugins.jetbrains.com/files/15976/762630/IDEA_Which-Key-0.11.1.jar", 1338 1337 "252.23892.426": "https://plugins.jetbrains.com/files/15976/762630/IDEA_Which-Key-0.11.1.jar", 1339 - "252.23892.439": "https://plugins.jetbrains.com/files/15976/762630/IDEA_Which-Key-0.11.1.jar", 1340 - "252.23892.449": "https://plugins.jetbrains.com/files/15976/762630/IDEA_Which-Key-0.11.1.jar", 1341 1338 "252.23892.452": "https://plugins.jetbrains.com/files/15976/762630/IDEA_Which-Key-0.11.1.jar", 1342 - "252.23892.464": "https://plugins.jetbrains.com/files/15976/762630/IDEA_Which-Key-0.11.1.jar" 1339 + "252.23892.515": "https://plugins.jetbrains.com/files/15976/762630/IDEA_Which-Key-0.11.1.jar", 1340 + "252.23892.524": "https://plugins.jetbrains.com/files/15976/762630/IDEA_Which-Key-0.11.1.jar", 1341 + "252.23892.530": "https://plugins.jetbrains.com/files/15976/762630/IDEA_Which-Key-0.11.1.jar", 1342 + "252.25557.34": "https://plugins.jetbrains.com/files/15976/762630/IDEA_Which-Key-0.11.1.jar" 1343 1343 }, 1344 1344 "name": "which-key" 1345 1345 }, ··· 1361 1361 "builds": { 1362 1362 "251.23774.423": "https://plugins.jetbrains.com/files/16604/818726/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.12.zip", 1363 1363 "251.25410.129": "https://plugins.jetbrains.com/files/16604/818726/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.12.zip", 1364 - "251.27812.87": "https://plugins.jetbrains.com/files/16604/818726/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.12.zip", 1365 1364 "252.23892.409": "https://plugins.jetbrains.com/files/16604/818726/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.12.zip", 1366 1365 "252.23892.411": "https://plugins.jetbrains.com/files/16604/818726/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.12.zip", 1367 1366 "252.23892.415": "https://plugins.jetbrains.com/files/16604/818726/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.12.zip", 1368 1367 "252.23892.419": "https://plugins.jetbrains.com/files/16604/818726/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.12.zip", 1369 1368 "252.23892.426": "https://plugins.jetbrains.com/files/16604/818726/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.12.zip", 1370 - "252.23892.439": "https://plugins.jetbrains.com/files/16604/818726/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.12.zip", 1371 - "252.23892.449": "https://plugins.jetbrains.com/files/16604/818726/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.12.zip", 1372 1369 "252.23892.452": "https://plugins.jetbrains.com/files/16604/818726/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.12.zip", 1373 - "252.23892.464": "https://plugins.jetbrains.com/files/16604/818726/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.12.zip" 1370 + "252.23892.515": "https://plugins.jetbrains.com/files/16604/818726/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.12.zip", 1371 + "252.23892.524": "https://plugins.jetbrains.com/files/16604/818726/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.12.zip", 1372 + "252.23892.530": "https://plugins.jetbrains.com/files/16604/818726/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.12.zip", 1373 + "252.25557.34": "https://plugins.jetbrains.com/files/16604/818726/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.12.zip" 1374 1374 }, 1375 1375 "name": "extra-toolwindow-colorful-icons" 1376 1376 }, ··· 1390 1390 "webstorm" 1391 1391 ], 1392 1392 "builds": { 1393 - "251.23774.423": "https://plugins.jetbrains.com/files/17718/803946/github-copilot-intellij-1.5.52-243.zip", 1394 - "251.25410.129": "https://plugins.jetbrains.com/files/17718/803946/github-copilot-intellij-1.5.52-243.zip", 1395 - "251.27812.87": "https://plugins.jetbrains.com/files/17718/803946/github-copilot-intellij-1.5.52-243.zip", 1396 - "252.23892.409": "https://plugins.jetbrains.com/files/17718/803946/github-copilot-intellij-1.5.52-243.zip", 1397 - "252.23892.411": "https://plugins.jetbrains.com/files/17718/803946/github-copilot-intellij-1.5.52-243.zip", 1398 - "252.23892.415": "https://plugins.jetbrains.com/files/17718/803946/github-copilot-intellij-1.5.52-243.zip", 1399 - "252.23892.419": "https://plugins.jetbrains.com/files/17718/803946/github-copilot-intellij-1.5.52-243.zip", 1400 - "252.23892.426": "https://plugins.jetbrains.com/files/17718/803946/github-copilot-intellij-1.5.52-243.zip", 1401 - "252.23892.439": "https://plugins.jetbrains.com/files/17718/803946/github-copilot-intellij-1.5.52-243.zip", 1402 - "252.23892.449": "https://plugins.jetbrains.com/files/17718/803946/github-copilot-intellij-1.5.52-243.zip", 1403 - "252.23892.452": "https://plugins.jetbrains.com/files/17718/803946/github-copilot-intellij-1.5.52-243.zip", 1404 - "252.23892.464": "https://plugins.jetbrains.com/files/17718/803946/github-copilot-intellij-1.5.52-243.zip" 1393 + "251.23774.423": "https://plugins.jetbrains.com/files/17718/827394/github-copilot-intellij-1.5.53-243.zip", 1394 + "251.25410.129": "https://plugins.jetbrains.com/files/17718/827394/github-copilot-intellij-1.5.53-243.zip", 1395 + "252.23892.409": "https://plugins.jetbrains.com/files/17718/827394/github-copilot-intellij-1.5.53-243.zip", 1396 + "252.23892.411": "https://plugins.jetbrains.com/files/17718/827394/github-copilot-intellij-1.5.53-243.zip", 1397 + "252.23892.415": "https://plugins.jetbrains.com/files/17718/827394/github-copilot-intellij-1.5.53-243.zip", 1398 + "252.23892.419": "https://plugins.jetbrains.com/files/17718/827394/github-copilot-intellij-1.5.53-243.zip", 1399 + "252.23892.426": "https://plugins.jetbrains.com/files/17718/827394/github-copilot-intellij-1.5.53-243.zip", 1400 + "252.23892.452": "https://plugins.jetbrains.com/files/17718/827394/github-copilot-intellij-1.5.53-243.zip", 1401 + "252.23892.515": "https://plugins.jetbrains.com/files/17718/827394/github-copilot-intellij-1.5.53-243.zip", 1402 + "252.23892.524": "https://plugins.jetbrains.com/files/17718/827394/github-copilot-intellij-1.5.53-243.zip", 1403 + "252.23892.530": "https://plugins.jetbrains.com/files/17718/827394/github-copilot-intellij-1.5.53-243.zip", 1404 + "252.25557.34": "https://plugins.jetbrains.com/files/17718/827394/github-copilot-intellij-1.5.53-243.zip" 1405 1405 }, 1406 1406 "name": "github-copilot" 1407 1407 }, ··· 1423 1423 "builds": { 1424 1424 "251.23774.423": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1425 1425 "251.25410.129": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1426 - "251.27812.87": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1427 1426 "252.23892.409": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1428 1427 "252.23892.411": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1429 1428 "252.23892.415": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1430 1429 "252.23892.419": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1431 1430 "252.23892.426": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1432 - "252.23892.439": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1433 - "252.23892.449": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1434 1431 "252.23892.452": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1435 - "252.23892.464": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip" 1432 + "252.23892.515": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1433 + "252.23892.524": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1434 + "252.23892.530": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1435 + "252.25557.34": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip" 1436 1436 }, 1437 1437 "name": "netbeans-6-5-keymap" 1438 1438 }, ··· 1454 1454 "builds": { 1455 1455 "251.23774.423": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", 1456 1456 "251.25410.129": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", 1457 - "251.27812.87": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", 1458 1457 "252.23892.409": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", 1459 1458 "252.23892.411": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", 1460 1459 "252.23892.415": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", 1461 1460 "252.23892.419": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", 1462 1461 "252.23892.426": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", 1463 - "252.23892.439": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", 1464 - "252.23892.449": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", 1465 1462 "252.23892.452": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", 1466 - "252.23892.464": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip" 1463 + "252.23892.515": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", 1464 + "252.23892.524": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", 1465 + "252.23892.530": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", 1466 + "252.25557.34": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip" 1467 1467 }, 1468 1468 "name": "catppuccin-theme" 1469 1469 }, ··· 1485 1485 "builds": { 1486 1486 "251.23774.423": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", 1487 1487 "251.25410.129": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", 1488 - "251.27812.87": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", 1489 1488 "252.23892.409": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", 1490 1489 "252.23892.411": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", 1491 1490 "252.23892.415": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", 1492 1491 "252.23892.419": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", 1493 1492 "252.23892.426": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", 1494 - "252.23892.439": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", 1495 - "252.23892.449": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", 1496 1493 "252.23892.452": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", 1497 - "252.23892.464": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip" 1494 + "252.23892.515": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", 1495 + "252.23892.524": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", 1496 + "252.23892.530": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", 1497 + "252.25557.34": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip" 1498 1498 }, 1499 1499 "name": "codeglance-pro" 1500 1500 }, ··· 1514 1514 "webstorm" 1515 1515 ], 1516 1516 "builds": { 1517 - "251.23774.423": "https://plugins.jetbrains.com/files/18922/817874/GerryThemes.jar", 1518 - "251.25410.129": "https://plugins.jetbrains.com/files/18922/817874/GerryThemes.jar", 1519 - "251.27812.87": "https://plugins.jetbrains.com/files/18922/817874/GerryThemes.jar", 1520 - "252.23892.409": "https://plugins.jetbrains.com/files/18922/817874/GerryThemes.jar", 1521 - "252.23892.411": "https://plugins.jetbrains.com/files/18922/817874/GerryThemes.jar", 1522 - "252.23892.415": "https://plugins.jetbrains.com/files/18922/817874/GerryThemes.jar", 1523 - "252.23892.419": "https://plugins.jetbrains.com/files/18922/817874/GerryThemes.jar", 1524 - "252.23892.426": "https://plugins.jetbrains.com/files/18922/817874/GerryThemes.jar", 1525 - "252.23892.439": "https://plugins.jetbrains.com/files/18922/817874/GerryThemes.jar", 1526 - "252.23892.449": "https://plugins.jetbrains.com/files/18922/817874/GerryThemes.jar", 1527 - "252.23892.452": "https://plugins.jetbrains.com/files/18922/817874/GerryThemes.jar", 1528 - "252.23892.464": "https://plugins.jetbrains.com/files/18922/817874/GerryThemes.jar" 1517 + "251.23774.423": "https://plugins.jetbrains.com/files/18922/827073/GerryThemes.jar", 1518 + "251.25410.129": "https://plugins.jetbrains.com/files/18922/827073/GerryThemes.jar", 1519 + "252.23892.409": "https://plugins.jetbrains.com/files/18922/827073/GerryThemes.jar", 1520 + "252.23892.411": "https://plugins.jetbrains.com/files/18922/827073/GerryThemes.jar", 1521 + "252.23892.415": "https://plugins.jetbrains.com/files/18922/827073/GerryThemes.jar", 1522 + "252.23892.419": "https://plugins.jetbrains.com/files/18922/827073/GerryThemes.jar", 1523 + "252.23892.426": "https://plugins.jetbrains.com/files/18922/827073/GerryThemes.jar", 1524 + "252.23892.452": "https://plugins.jetbrains.com/files/18922/827073/GerryThemes.jar", 1525 + "252.23892.515": "https://plugins.jetbrains.com/files/18922/827073/GerryThemes.jar", 1526 + "252.23892.524": "https://plugins.jetbrains.com/files/18922/827073/GerryThemes.jar", 1527 + "252.23892.530": "https://plugins.jetbrains.com/files/18922/827073/GerryThemes.jar", 1528 + "252.25557.34": "https://plugins.jetbrains.com/files/18922/827073/GerryThemes.jar" 1529 1529 }, 1530 1530 "name": "gerry-themes" 1531 1531 }, ··· 1547 1547 "builds": { 1548 1548 "251.23774.423": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1549 1549 "251.25410.129": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1550 - "251.27812.87": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1551 1550 "252.23892.409": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1552 1551 "252.23892.411": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1553 1552 "252.23892.415": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1554 1553 "252.23892.419": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1555 1554 "252.23892.426": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1556 - "252.23892.439": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1557 - "252.23892.449": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1558 1555 "252.23892.452": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1559 - "252.23892.464": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip" 1556 + "252.23892.515": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1557 + "252.23892.524": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1558 + "252.23892.530": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1559 + "252.25557.34": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip" 1560 1560 }, 1561 1561 "name": "better-direnv" 1562 1562 }, ··· 1578 1578 "builds": { 1579 1579 "251.23774.423": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", 1580 1580 "251.25410.129": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", 1581 - "251.27812.87": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", 1582 1581 "252.23892.409": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", 1583 1582 "252.23892.411": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", 1584 1583 "252.23892.415": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", 1585 1584 "252.23892.419": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", 1586 1585 "252.23892.426": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", 1587 - "252.23892.439": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", 1588 - "252.23892.449": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", 1589 1586 "252.23892.452": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", 1590 - "252.23892.464": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip" 1587 + "252.23892.515": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", 1588 + "252.23892.524": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", 1589 + "252.23892.530": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", 1590 + "252.25557.34": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip" 1591 1591 }, 1592 1592 "name": "mermaid" 1593 1593 }, ··· 1609 1609 "builds": { 1610 1610 "251.23774.423": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1611 1611 "251.25410.129": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1612 - "251.27812.87": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1613 1612 "252.23892.409": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1614 1613 "252.23892.411": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1615 1614 "252.23892.415": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1616 1615 "252.23892.419": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1617 1616 "252.23892.426": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1618 - "252.23892.439": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1619 - "252.23892.449": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1620 1617 "252.23892.452": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1621 - "252.23892.464": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip" 1618 + "252.23892.515": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1619 + "252.23892.524": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1620 + "252.23892.530": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1621 + "252.25557.34": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip" 1622 1622 }, 1623 1623 "name": "ferris" 1624 1624 }, ··· 1640 1640 "builds": { 1641 1641 "251.23774.423": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", 1642 1642 "251.25410.129": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", 1643 - "251.27812.87": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", 1644 1643 "252.23892.409": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", 1645 1644 "252.23892.411": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", 1646 1645 "252.23892.415": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", 1647 1646 "252.23892.419": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", 1648 1647 "252.23892.426": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", 1649 - "252.23892.439": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", 1650 - "252.23892.449": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", 1651 1648 "252.23892.452": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", 1652 - "252.23892.464": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip" 1649 + "252.23892.515": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", 1650 + "252.23892.524": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", 1651 + "252.23892.530": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", 1652 + "252.25557.34": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip" 1653 1653 }, 1654 1654 "name": "code-complexity" 1655 1655 }, ··· 1671 1671 "builds": { 1672 1672 "251.23774.423": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", 1673 1673 "251.25410.129": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", 1674 - "251.27812.87": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", 1675 1674 "252.23892.409": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", 1676 1675 "252.23892.411": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", 1677 1676 "252.23892.415": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", 1678 1677 "252.23892.419": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", 1679 1678 "252.23892.426": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", 1680 - "252.23892.439": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", 1681 - "252.23892.449": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", 1682 1679 "252.23892.452": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", 1683 - "252.23892.464": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip" 1680 + "252.23892.515": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", 1681 + "252.23892.524": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", 1682 + "252.23892.530": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", 1683 + "252.25557.34": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip" 1684 1684 }, 1685 1685 "name": "developer-tools" 1686 1686 }, ··· 1696 1696 "webstorm" 1697 1697 ], 1698 1698 "builds": { 1699 - "251.27812.87": "https://plugins.jetbrains.com/files/21962/732363/clouds-docker-gateway-251.25410.75.zip", 1700 1699 "252.23892.409": "https://plugins.jetbrains.com/files/21962/810863/clouds-docker-gateway-252.23892.363.zip", 1701 1700 "252.23892.411": "https://plugins.jetbrains.com/files/21962/810863/clouds-docker-gateway-252.23892.363.zip", 1702 1701 "252.23892.415": "https://plugins.jetbrains.com/files/21962/810863/clouds-docker-gateway-252.23892.363.zip", 1703 1702 "252.23892.419": "https://plugins.jetbrains.com/files/21962/810863/clouds-docker-gateway-252.23892.363.zip", 1704 1703 "252.23892.426": "https://plugins.jetbrains.com/files/21962/810863/clouds-docker-gateway-252.23892.363.zip", 1705 - "252.23892.449": "https://plugins.jetbrains.com/files/21962/810863/clouds-docker-gateway-252.23892.363.zip", 1706 - "252.23892.452": "https://plugins.jetbrains.com/files/21962/810863/clouds-docker-gateway-252.23892.363.zip" 1704 + "252.23892.452": "https://plugins.jetbrains.com/files/21962/810863/clouds-docker-gateway-252.23892.363.zip", 1705 + "252.23892.524": "https://plugins.jetbrains.com/files/21962/810863/clouds-docker-gateway-252.23892.363.zip", 1706 + "252.23892.530": "https://plugins.jetbrains.com/files/21962/810863/clouds-docker-gateway-252.23892.363.zip" 1707 1707 }, 1708 1708 "name": "dev-containers" 1709 1709 }, ··· 1736 1736 "webstorm" 1737 1737 ], 1738 1738 "builds": { 1739 - "251.23774.423": "https://plugins.jetbrains.com/files/22707/800990/continue-intellij-extension-1.0.30.zip", 1740 - "251.25410.129": "https://plugins.jetbrains.com/files/22707/800990/continue-intellij-extension-1.0.30.zip", 1741 - "251.27812.87": "https://plugins.jetbrains.com/files/22707/800990/continue-intellij-extension-1.0.30.zip", 1742 - "252.23892.409": "https://plugins.jetbrains.com/files/22707/800990/continue-intellij-extension-1.0.30.zip", 1743 - "252.23892.411": "https://plugins.jetbrains.com/files/22707/800990/continue-intellij-extension-1.0.30.zip", 1744 - "252.23892.415": "https://plugins.jetbrains.com/files/22707/800990/continue-intellij-extension-1.0.30.zip", 1745 - "252.23892.419": "https://plugins.jetbrains.com/files/22707/800990/continue-intellij-extension-1.0.30.zip", 1746 - "252.23892.426": "https://plugins.jetbrains.com/files/22707/800990/continue-intellij-extension-1.0.30.zip", 1747 - "252.23892.439": "https://plugins.jetbrains.com/files/22707/800990/continue-intellij-extension-1.0.30.zip", 1748 - "252.23892.449": "https://plugins.jetbrains.com/files/22707/800990/continue-intellij-extension-1.0.30.zip", 1749 - "252.23892.452": "https://plugins.jetbrains.com/files/22707/800990/continue-intellij-extension-1.0.30.zip", 1750 - "252.23892.464": "https://plugins.jetbrains.com/files/22707/800990/continue-intellij-extension-1.0.30.zip" 1739 + "251.23774.423": "https://plugins.jetbrains.com/files/22707/823138/continue-intellij-extension-1.0.35.zip", 1740 + "251.25410.129": "https://plugins.jetbrains.com/files/22707/823138/continue-intellij-extension-1.0.35.zip", 1741 + "252.23892.409": "https://plugins.jetbrains.com/files/22707/823138/continue-intellij-extension-1.0.35.zip", 1742 + "252.23892.411": "https://plugins.jetbrains.com/files/22707/823138/continue-intellij-extension-1.0.35.zip", 1743 + "252.23892.415": "https://plugins.jetbrains.com/files/22707/823138/continue-intellij-extension-1.0.35.zip", 1744 + "252.23892.419": "https://plugins.jetbrains.com/files/22707/823138/continue-intellij-extension-1.0.35.zip", 1745 + "252.23892.426": "https://plugins.jetbrains.com/files/22707/823138/continue-intellij-extension-1.0.35.zip", 1746 + "252.23892.452": "https://plugins.jetbrains.com/files/22707/823138/continue-intellij-extension-1.0.35.zip", 1747 + "252.23892.515": "https://plugins.jetbrains.com/files/22707/823138/continue-intellij-extension-1.0.35.zip", 1748 + "252.23892.524": "https://plugins.jetbrains.com/files/22707/823138/continue-intellij-extension-1.0.35.zip", 1749 + "252.23892.530": "https://plugins.jetbrains.com/files/22707/823138/continue-intellij-extension-1.0.35.zip", 1750 + "252.25557.34": "https://plugins.jetbrains.com/files/22707/823138/continue-intellij-extension-1.0.35.zip" 1751 1751 }, 1752 1752 "name": "continue" 1753 1753 }, ··· 1767 1767 "webstorm" 1768 1768 ], 1769 1769 "builds": { 1770 - "251.23774.423": "https://plugins.jetbrains.com/files/22857/716106/vcs-gitlab-IU-251.23774.435-IU.zip", 1770 + "251.23774.423": null, 1771 1771 "251.25410.129": "https://plugins.jetbrains.com/files/22857/742106/vcs-gitlab-IU-251.25410.159-IU.zip", 1772 - "251.27812.87": "https://plugins.jetbrains.com/files/22857/780560/vcs-gitlab-IU-251.26927.54-IU.zip", 1773 - "252.23892.409": "https://plugins.jetbrains.com/files/22857/819822/vcs-gitlab-IU-252.23892.464-IU.zip", 1774 - "252.23892.411": "https://plugins.jetbrains.com/files/22857/819822/vcs-gitlab-IU-252.23892.464-IU.zip", 1775 - "252.23892.415": "https://plugins.jetbrains.com/files/22857/819822/vcs-gitlab-IU-252.23892.464-IU.zip", 1776 - "252.23892.419": "https://plugins.jetbrains.com/files/22857/819822/vcs-gitlab-IU-252.23892.464-IU.zip", 1777 - "252.23892.426": "https://plugins.jetbrains.com/files/22857/819822/vcs-gitlab-IU-252.23892.464-IU.zip", 1778 - "252.23892.439": "https://plugins.jetbrains.com/files/22857/819822/vcs-gitlab-IU-252.23892.464-IU.zip", 1779 - "252.23892.449": "https://plugins.jetbrains.com/files/22857/819822/vcs-gitlab-IU-252.23892.464-IU.zip", 1780 - "252.23892.452": "https://plugins.jetbrains.com/files/22857/819822/vcs-gitlab-IU-252.23892.464-IU.zip", 1781 - "252.23892.464": "https://plugins.jetbrains.com/files/22857/819822/vcs-gitlab-IU-252.23892.464-IU.zip" 1772 + "252.23892.409": "https://plugins.jetbrains.com/files/22857/826717/vcs-gitlab-IU-252.23892.515-IU.zip", 1773 + "252.23892.411": "https://plugins.jetbrains.com/files/22857/826717/vcs-gitlab-IU-252.23892.515-IU.zip", 1774 + "252.23892.415": "https://plugins.jetbrains.com/files/22857/826717/vcs-gitlab-IU-252.23892.515-IU.zip", 1775 + "252.23892.419": "https://plugins.jetbrains.com/files/22857/826717/vcs-gitlab-IU-252.23892.515-IU.zip", 1776 + "252.23892.426": "https://plugins.jetbrains.com/files/22857/826717/vcs-gitlab-IU-252.23892.515-IU.zip", 1777 + "252.23892.452": "https://plugins.jetbrains.com/files/22857/826717/vcs-gitlab-IU-252.23892.515-IU.zip", 1778 + "252.23892.515": "https://plugins.jetbrains.com/files/22857/826717/vcs-gitlab-IU-252.23892.515-IU.zip", 1779 + "252.23892.524": "https://plugins.jetbrains.com/files/22857/826717/vcs-gitlab-IU-252.23892.515-IU.zip", 1780 + "252.23892.530": "https://plugins.jetbrains.com/files/22857/826717/vcs-gitlab-IU-252.23892.515-IU.zip", 1781 + "252.25557.34": "https://plugins.jetbrains.com/files/22857/829212/vcs-gitlab-IU-252.25557.35-IU.zip" 1782 1782 }, 1783 1783 "name": "gitlab" 1784 1784 }, ··· 1800 1800 "builds": { 1801 1801 "251.23774.423": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", 1802 1802 "251.25410.129": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", 1803 - "251.27812.87": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", 1804 1803 "252.23892.409": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", 1805 1804 "252.23892.411": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", 1806 1805 "252.23892.415": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", 1807 1806 "252.23892.419": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", 1808 1807 "252.23892.426": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", 1809 - "252.23892.439": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", 1810 - "252.23892.449": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", 1811 1808 "252.23892.452": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", 1812 - "252.23892.464": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip" 1809 + "252.23892.515": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", 1810 + "252.23892.524": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", 1811 + "252.23892.530": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", 1812 + "252.25557.34": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip" 1813 1813 }, 1814 1814 "name": "catppuccin-icons" 1815 1815 }, ··· 1831 1831 "builds": { 1832 1832 "251.23774.423": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1833 1833 "251.25410.129": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1834 - "251.27812.87": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1835 1834 "252.23892.409": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1836 1835 "252.23892.411": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1837 1836 "252.23892.415": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1838 1837 "252.23892.419": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1839 1838 "252.23892.426": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1840 - "252.23892.439": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1841 - "252.23892.449": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1842 1839 "252.23892.452": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1843 - "252.23892.464": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip" 1840 + "252.23892.515": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1841 + "252.23892.524": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1842 + "252.23892.530": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1843 + "252.25557.34": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip" 1844 1844 }, 1845 1845 "name": "mermaid-chart" 1846 1846 }, ··· 1862 1862 "builds": { 1863 1863 "251.23774.423": "https://plugins.jetbrains.com/files/23806/784029/Oxocarbon-1.4.6.zip", 1864 1864 "251.25410.129": "https://plugins.jetbrains.com/files/23806/784029/Oxocarbon-1.4.6.zip", 1865 - "251.27812.87": "https://plugins.jetbrains.com/files/23806/784029/Oxocarbon-1.4.6.zip", 1866 1865 "252.23892.409": null, 1867 1866 "252.23892.411": null, 1868 1867 "252.23892.415": null, 1869 1868 "252.23892.419": null, 1870 1869 "252.23892.426": null, 1871 - "252.23892.439": null, 1872 - "252.23892.449": null, 1873 1870 "252.23892.452": null, 1874 - "252.23892.464": null 1871 + "252.23892.515": null, 1872 + "252.23892.524": null, 1873 + "252.23892.530": null, 1874 + "252.25557.34": null 1875 1875 }, 1876 1876 "name": "oxocarbon" 1877 1877 }, ··· 1893 1893 "builds": { 1894 1894 "251.23774.423": "https://plugins.jetbrains.com/files/23927/818724/Extra_IDE_Tweaks_Subscription-2025.1.11.zip", 1895 1895 "251.25410.129": "https://plugins.jetbrains.com/files/23927/818724/Extra_IDE_Tweaks_Subscription-2025.1.11.zip", 1896 - "251.27812.87": "https://plugins.jetbrains.com/files/23927/818724/Extra_IDE_Tweaks_Subscription-2025.1.11.zip", 1897 1896 "252.23892.409": "https://plugins.jetbrains.com/files/23927/818724/Extra_IDE_Tweaks_Subscription-2025.1.11.zip", 1898 1897 "252.23892.411": "https://plugins.jetbrains.com/files/23927/818724/Extra_IDE_Tweaks_Subscription-2025.1.11.zip", 1899 1898 "252.23892.415": "https://plugins.jetbrains.com/files/23927/818724/Extra_IDE_Tweaks_Subscription-2025.1.11.zip", 1900 1899 "252.23892.419": "https://plugins.jetbrains.com/files/23927/818724/Extra_IDE_Tweaks_Subscription-2025.1.11.zip", 1901 1900 "252.23892.426": "https://plugins.jetbrains.com/files/23927/818724/Extra_IDE_Tweaks_Subscription-2025.1.11.zip", 1902 - "252.23892.439": "https://plugins.jetbrains.com/files/23927/818724/Extra_IDE_Tweaks_Subscription-2025.1.11.zip", 1903 - "252.23892.449": "https://plugins.jetbrains.com/files/23927/818724/Extra_IDE_Tweaks_Subscription-2025.1.11.zip", 1904 1901 "252.23892.452": "https://plugins.jetbrains.com/files/23927/818724/Extra_IDE_Tweaks_Subscription-2025.1.11.zip", 1905 - "252.23892.464": "https://plugins.jetbrains.com/files/23927/818724/Extra_IDE_Tweaks_Subscription-2025.1.11.zip" 1902 + "252.23892.515": "https://plugins.jetbrains.com/files/23927/818724/Extra_IDE_Tweaks_Subscription-2025.1.11.zip", 1903 + "252.23892.524": "https://plugins.jetbrains.com/files/23927/818724/Extra_IDE_Tweaks_Subscription-2025.1.11.zip", 1904 + "252.23892.530": "https://plugins.jetbrains.com/files/23927/818724/Extra_IDE_Tweaks_Subscription-2025.1.11.zip", 1905 + "252.25557.34": "https://plugins.jetbrains.com/files/23927/818724/Extra_IDE_Tweaks_Subscription-2025.1.11.zip" 1906 1906 }, 1907 1907 "name": "extra-ide-tweaks" 1908 1908 }, ··· 1924 1924 "builds": { 1925 1925 "251.23774.423": "https://plugins.jetbrains.com/files/24559/818729/Extra_Tools_Pack-2025.1.14.zip", 1926 1926 "251.25410.129": "https://plugins.jetbrains.com/files/24559/818729/Extra_Tools_Pack-2025.1.14.zip", 1927 - "251.27812.87": "https://plugins.jetbrains.com/files/24559/818729/Extra_Tools_Pack-2025.1.14.zip", 1928 1927 "252.23892.409": "https://plugins.jetbrains.com/files/24559/818729/Extra_Tools_Pack-2025.1.14.zip", 1929 1928 "252.23892.411": "https://plugins.jetbrains.com/files/24559/818729/Extra_Tools_Pack-2025.1.14.zip", 1930 1929 "252.23892.415": "https://plugins.jetbrains.com/files/24559/818729/Extra_Tools_Pack-2025.1.14.zip", 1931 1930 "252.23892.419": "https://plugins.jetbrains.com/files/24559/818729/Extra_Tools_Pack-2025.1.14.zip", 1932 1931 "252.23892.426": "https://plugins.jetbrains.com/files/24559/818729/Extra_Tools_Pack-2025.1.14.zip", 1933 - "252.23892.439": "https://plugins.jetbrains.com/files/24559/818729/Extra_Tools_Pack-2025.1.14.zip", 1934 - "252.23892.449": "https://plugins.jetbrains.com/files/24559/818729/Extra_Tools_Pack-2025.1.14.zip", 1935 1932 "252.23892.452": "https://plugins.jetbrains.com/files/24559/818729/Extra_Tools_Pack-2025.1.14.zip", 1936 - "252.23892.464": "https://plugins.jetbrains.com/files/24559/818729/Extra_Tools_Pack-2025.1.14.zip" 1933 + "252.23892.515": "https://plugins.jetbrains.com/files/24559/818729/Extra_Tools_Pack-2025.1.14.zip", 1934 + "252.23892.524": "https://plugins.jetbrains.com/files/24559/818729/Extra_Tools_Pack-2025.1.14.zip", 1935 + "252.23892.530": "https://plugins.jetbrains.com/files/24559/818729/Extra_Tools_Pack-2025.1.14.zip", 1936 + "252.25557.34": "https://plugins.jetbrains.com/files/24559/818729/Extra_Tools_Pack-2025.1.14.zip" 1937 1937 }, 1938 1938 "name": "extra-tools-pack" 1939 1939 }, ··· 1950 1950 "webstorm" 1951 1951 ], 1952 1952 "builds": { 1953 - "251.27812.87": null, 1954 1953 "252.23892.409": null, 1955 1954 "252.23892.411": null, 1956 1955 "252.23892.415": null, 1957 1956 "252.23892.419": null, 1958 1957 "252.23892.426": null, 1959 - "252.23892.449": null, 1960 1958 "252.23892.452": null, 1961 - "252.23892.464": null 1959 + "252.23892.524": null, 1960 + "252.23892.530": null, 1961 + "252.25557.34": null 1962 1962 }, 1963 1963 "name": "nix-lsp" 1964 1964 }, ··· 1978 1978 ], 1979 1979 "builds": { 1980 1980 "251.25410.129": "https://plugins.jetbrains.com/files/26084/804883/markdtask-2025.2.zip", 1981 - "251.27812.87": "https://plugins.jetbrains.com/files/26084/804883/markdtask-2025.2.zip", 1982 1981 "252.23892.409": null, 1983 1982 "252.23892.411": null, 1984 1983 "252.23892.415": null, 1985 1984 "252.23892.419": null, 1986 1985 "252.23892.426": null, 1987 - "252.23892.439": null, 1988 - "252.23892.449": null, 1989 1986 "252.23892.452": null, 1990 - "252.23892.464": null 1987 + "252.23892.515": null, 1988 + "252.23892.524": null, 1989 + "252.23892.530": null, 1990 + "252.25557.34": null 1991 1991 }, 1992 1992 "name": "markdtask" 1993 1993 } 1994 1994 }, 1995 1995 "files": { 1996 1996 "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip": "sha256-frvQ+Dm1ueID6+vNlja0HtecGyn+ppq9GTgmU3kQ+58=", 1997 - "https://plugins.jetbrains.com/files/10080/811169/intellij-rainbow-brackets-2025.3.2.zip": "sha256-X02u3BiuX9V2pQqgrs4qcKbN2IlcXhuVb56knZKMwzU=", 1997 + "https://plugins.jetbrains.com/files/10080/831413/intellij-rainbow-brackets-2025.3.3.zip": "sha256-jOIt/BAP+vUnnSbrVaB/3Nfv8w+OSNWGFhSoFCVgSsM=", 1998 1998 "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip": "sha256-25vtwXuBNiYL9E0pKG4dqJDkwX1FckAErdqRPKXybQA=", 1999 1999 "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip": "sha256-GO0bXJsHx9O1A6M9NUCv9m4JwKHs5plwSssgx+InNqE=", 2000 2000 "https://plugins.jetbrains.com/files/10581/711019/go-template-251.23774.318.zip": "sha256-zX1nEdq84wwQvGhV664V5bNBPVTI4zWo306JtjXcGkE=", 2001 2001 "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip": "sha256-XKv4jEKOk2O++VdHycGoLgICsusULbWRlQ0J5p+KgAE=", 2002 2002 "https://plugins.jetbrains.com/files/11058/818728/Extra_Icons-2025.1.12.zip": "sha256-bCnzLM8TUy/4hQJPnodsXL8q5h1P4upbx24wKb3CteU=", 2003 - "https://plugins.jetbrains.com/files/11349/817795/aws-toolkit-jetbrains-standalone-3.88.252.zip": "sha256-LUGbKTrAuGIMGWzkAu7bIaVcm1GSRADrrh3JhSgdmRc=", 2004 - "https://plugins.jetbrains.com/files/11349/817799/aws-toolkit-jetbrains-standalone-3.88.251.zip": "sha256-MuUz3CUqmxTiXZuZJ/TieFXOfVR/u4eHLoaCeBoKWrc=", 2005 - "https://plugins.jetbrains.com/files/12024/667413/ReSharperPlugin.CognitiveComplexity-2025.1.0-eap01.zip": "sha256-SWIXjxnwAf9dju1oOgzePrTY0lPNNX54Afp5OIkGGi4=", 2003 + "https://plugins.jetbrains.com/files/11349/821620/aws-toolkit-jetbrains-standalone-3.89.252.zip": "sha256-Rl75ZzoJl6TvTx1OMePLBVheI8InH+nI4xVmEGj8p5g=", 2004 + "https://plugins.jetbrains.com/files/11349/821624/aws-toolkit-jetbrains-standalone-3.89.251.zip": "sha256-/PG3q6Xd3bBX6fi9/Mrm52JBlXP5z2SG16L8bdSY6IU=", 2005 + "https://plugins.jetbrains.com/files/12024/717598/ReSharperPlugin.CognitiveComplexity-2025.1.0.zip": "sha256-vHTnhg3gxkno5w98PQFL/V/xiUmbGMMemo7qmCveF6Y=", 2006 2006 "https://plugins.jetbrains.com/files/12062/711097/keymap-vscode-251.23774.318.zip": "sha256-obbLL8n6gK8oFw8NnJbdAylPHfTv4GheBDnVFOUpwL0=", 2007 2007 "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip": "sha256-V3Vk6UYLUSiSmypD+g0DCX1sPw3/wZqvLxFhbkTqY34=", 2008 2008 "https://plugins.jetbrains.com/files/12559/711714/keymap-eclipse-251.23774.329.zip": "sha256-HC1s5FqSLVgPNKc5Wiw0RFC6KpozxmjKzbh9rS9nFwc=", ··· 2012 2012 "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip": "sha256-5qDjLRMNwn+1QVN8cKUYlakQ8aBRiTyGuA7se3l9BI0=", 2013 2013 "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip": "sha256-eKwDE+PMtYhrGbDDZPS5cimssH+1xV4GF6RXXg/3urU=", 2014 2014 "https://plugins.jetbrains.com/files/1347/770332/scala-intellij-bin-2025.1.25.zip": "sha256-h9GNGjqTc+h+x/0TRilKmqGoPsxhPmXIKoGC/s4/PKg=", 2015 - "https://plugins.jetbrains.com/files/1347/815326/scala-intellij-bin-2025.2.26.zip": "sha256-rcFM+JlWk6dG17yci/nfwAkZQBlr+vV/ZoaKC3zahSo=", 2015 + "https://plugins.jetbrains.com/files/1347/832458/scala-intellij-bin-2025.2.28.zip": "sha256-lAqV+2yzp586EwxX3ZEnTnR5cdJfjoPn1RDAKC5dSyU=", 2016 2016 "https://plugins.jetbrains.com/files/14004/711000/protoeditor-251.23774.318.zip": "sha256-ZYn365EY8+VP1TKM4wBotMj1hYbSSr4J1K5oIZlE2SE=", 2017 2017 "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip": "sha256-WK9ukN6g2tCmeljFXwv3F+xFI/VZKlIeFs8DXqPcIKA=", 2018 - "https://plugins.jetbrains.com/files/14004/803006/protoeditor-251.27812.12.zip": "sha256-EPL6bUZmdBXrkfeGyx7uf73kWGM/drxic/poSXJinS8=", 2019 2018 "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar": "sha256-eXInfAqY3yEZRXCAuv3KGldM1pNKEioNwPB0rIGgJFw=", 2020 2019 "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar": "sha256-mB09zvUg1hLXl9lgW1NEU+DyVel1utZv6s+mFykckYY=", 2021 2020 "https://plugins.jetbrains.com/files/15976/762630/IDEA_Which-Key-0.11.1.jar": "sha256-Z3q0d4jCqeBwzW0jSSM3q4MTAPaTqQuwnV3ZVHfOMR4=", 2022 - "https://plugins.jetbrains.com/files/164/818417/IdeaVIM-2.27.0.zip": "sha256-UYYDZ7jXJqHcpzaTafbwaiyuHAW4a/nPyXZndryg2iQ=", 2021 + "https://plugins.jetbrains.com/files/164/822112/IdeaVIM-2.27.1.zip": "sha256-nM3JZS5nHZc7zXetKuR0WI51mmGD6dpSkw8jnQSS3Mo=", 2023 2022 "https://plugins.jetbrains.com/files/16604/818726/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.12.zip": "sha256-OTr5iG0ivYx+lP9VzEF9resMG5ARj9LuBnwqXohmaH0=", 2024 - "https://plugins.jetbrains.com/files/17718/803946/github-copilot-intellij-1.5.52-243.zip": "sha256-rP2PplN9rOnKGWMdmXphdMeV0AqoauT0aIoKkgM7Hjw=", 2023 + "https://plugins.jetbrains.com/files/17718/827394/github-copilot-intellij-1.5.53-243.zip": "sha256-v9tBz3OMFvwkJ7HPJXG6VwRHjgEGp4v6vBI2QvcaM/Q=", 2025 2024 "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip": "sha256-KrzZTKZMQqoEMw+vDUv2jjs0EX0leaPBkU8H/ecq/oI=", 2026 2025 "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip": "sha256-fa9GiD/PNGy8AEao99vW3DBF1FKSulu3t+wO7mdr5fk=", 2027 2026 "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip": "sha256-/1lyQq7JANhcKmIaaBHZ8ZCR4p23sLjLTTq9/68Fz+c=", 2028 - "https://plugins.jetbrains.com/files/18922/817874/GerryThemes.jar": "sha256-Njx/k4fTX1U8jgh1oSvGg/32I5cdVryhHxNqBs7L1fg=", 2027 + "https://plugins.jetbrains.com/files/18922/827073/GerryThemes.jar": "sha256-mG0VSF+DzGu9p2NMRe+0E0iZ+xXwsQ3D2GPE7+DvlyI=", 2029 2028 "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip": "sha256-hoFfIid7lClHDiT+ZH3H+tFSvWYb1tSRZH1iif+kWrM=", 2030 2029 "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip": "sha256-QTh77pyi4lh7V0DGPFx9kERjFCop219d76wTDwD0SYY=", 2031 2030 "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip": "sha256-N66Bh0AwHmg5N9PNguRAGtpJ/dLMWMp3rxjTgz9poFo=", 2032 2031 "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip": "sha256-hevU8OwVr5HjMLpROZm3NiZI+PW2f7eNTxD+1aZsC8Q=", 2033 2032 "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip": "sha256-8agNBVenqaV9DlvRmFP7ul3IZfj9Dij8v/h8QMUb72E=", 2034 2033 "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip": "sha256-lOPUSxlbgagD0SuXTw+fEdwTxxfUHP1Kl6L+u/oa4fs=", 2035 - "https://plugins.jetbrains.com/files/21962/732363/clouds-docker-gateway-251.25410.75.zip": "sha256-kfXB36mIOn82pq+22ryztxY9K6CgwwNarNKcLuIH9G4=", 2036 2034 "https://plugins.jetbrains.com/files/21962/810863/clouds-docker-gateway-252.23892.363.zip": "sha256-ZAhVR7fPls5Xgwmsm+LFYcj+PENF4F7Nh4F3R4SXzH0=", 2037 2035 "https://plugins.jetbrains.com/files/22407/818405/intellij-rust-252.23892.452.zip": "sha256-Q81oaxg4/YgCOkZ9NobQjmd/NKGReuz4hxvEdHTFiac=", 2038 - "https://plugins.jetbrains.com/files/22707/800990/continue-intellij-extension-1.0.30.zip": "sha256-UxVzxs2ToLkq1/q6s44pggUMNFoObdxNbJdPJVUTNBA=", 2039 - "https://plugins.jetbrains.com/files/22857/716106/vcs-gitlab-IU-251.23774.435-IU.zip": "sha256-zNNFPPPnYLkSzXX3CA1IMA0cjeXMcPY58+v80/KjVkg=", 2036 + "https://plugins.jetbrains.com/files/22707/823138/continue-intellij-extension-1.0.35.zip": "sha256-XuZ52O/lOalOV/cyphMwFtPttt/rpqIoAxOs1vWx/e8=", 2040 2037 "https://plugins.jetbrains.com/files/22857/742106/vcs-gitlab-IU-251.25410.159-IU.zip": "sha256-PwxExt+Dlq11Y5UdEwFr/2BJPST3EYY7r/3gsXoxGzo=", 2041 - "https://plugins.jetbrains.com/files/22857/780560/vcs-gitlab-IU-251.26927.54-IU.zip": "sha256-pLB6vIl7bgtu2tu/7OpcnAkMFEc+iEVyRJgxmSl35hk=", 2042 - "https://plugins.jetbrains.com/files/22857/819822/vcs-gitlab-IU-252.23892.464-IU.zip": "sha256-S5RmNVL+dcDaUb8f0Cv8eQJ8TpCd0aDn7JBdHalu+z0=", 2038 + "https://plugins.jetbrains.com/files/22857/826717/vcs-gitlab-IU-252.23892.515-IU.zip": "sha256-1fkImbCktws9WcnJSwnMiZ7ULc3hKj9TiFXuNDf+L/U=", 2039 + "https://plugins.jetbrains.com/files/22857/829212/vcs-gitlab-IU-252.25557.35-IU.zip": "sha256-7fLyaf7JNH3FwKSH+HsQcGNszzzVMUy2qsFmcWgW0/g=", 2043 2040 "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip": "sha256-TZNCi4kRc7NNcV89j2UhT6y1+l1L512xTN/yTztjQfY=", 2044 2041 "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip": "sha256-ssaSY1I6FopLBgVKHUyjBrqzxHLSuI/swtDfQWJ7gxU=", 2045 2042 "https://plugins.jetbrains.com/files/23806/784029/Oxocarbon-1.4.6.zip": "sha256-+cLKIu8abGXZqJ3GutQsoQQg3s0wkmk5qKosW0O8RII=", ··· 2050 2047 "https://plugins.jetbrains.com/files/6884/711128/handlebars-251.23774.318.zip": "sha256-34s7pOsqMaGoVYhCuAZtylNwplQOtNQJUppepsl4F4Q=", 2051 2048 "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip": "sha256-iWKLgk+eWhUmv/lH9+B2HI97d++EYvLwGgtRsJf4aSE=", 2052 2049 "https://plugins.jetbrains.com/files/6954/809234/Kotlin-252.23892.360-IJ.zip": "sha256-pQGVguF7zzzasLm2tlmtvqiPtdFN4Q5NKRwYx1r62fM=", 2053 - "https://plugins.jetbrains.com/files/6981/806736/ini-251.27812.54.zip": "sha256-olPIXYib4IUF/qmTzTOmEEXq01I8ji7no4dqSTJvqhY=", 2050 + "https://plugins.jetbrains.com/files/6954/827441/Kotlin-252.25557.23-IJ.zip": "sha256-QhghDaVjeC8XU4u/HpIKd2JQeH6h7yRohkK4m0trNsc=", 2054 2051 "https://plugins.jetbrains.com/files/6981/818238/ini-252.23892.449.zip": "sha256-H+ve44o4oKp14Mww4cFa6aCO7ipN/0M7Re5Lg8PNfJc=", 2052 + "https://plugins.jetbrains.com/files/6981/828495/ini-252.25557.34.zip": "sha256-SNrHSWzVwbWDNYhGF+ldezeXVKewS6iQfcNtIcZGBE0=", 2055 2053 "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip": "sha256-BW47ZEUINVnhV0RZ1np7Dkf3lfyrtKoZ9ej/SVct2Xs=", 2056 2054 "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip": "sha256-KcRoHqvCcC6qRz58DHkQ6AFqnpyqPhETekuMWBQYYw8=", 2057 2055 "https://plugins.jetbrains.com/files/7177/711086/fileWatcher-251.23774.318.zip": "sha256-jNHP/vaCaolmvNUQRGmIgSR1ykjDtKqyJ69UIn5cz70=", ··· 2062 2060 "https://plugins.jetbrains.com/files/7219/770179/Symfony_Plugin-2025.1.280.zip": "sha256-SgldikXjVx6hUw3LqcN8/NxLLBfnr/LUc/SrIIACl7k=", 2063 2061 "https://plugins.jetbrains.com/files/7320/718466/PHP_Annotations-12.0.0.zip": "sha256-HfTd3zT/7sOrYutEkEzpFAu6AijrFrpHJg1ftP3N87Y=", 2064 2062 "https://plugins.jetbrains.com/files/7322/737802/python-ce-251.25410.129.zip": "sha256-gN9XqO/x41scgJ9dzTdC4i4hIZJpwSeR7OjU2BG8gzU=", 2065 - "https://plugins.jetbrains.com/files/7322/805188/python-ce-251.27812.49.zip": "sha256-53cIBQbvP13Py0nN5ZXJBLH3xA5/tz2ba4hhVWRaFSM=", 2066 2063 "https://plugins.jetbrains.com/files/7322/819231/python-ce-252.23892.458.zip": "sha256-BFycp1qz7r+X4ohvy7oFnT76dGNGrqpMZrWO71q8ah8=", 2064 + "https://plugins.jetbrains.com/files/7322/827486/python-ce-252.25557.23.zip": "sha256-ywoEFCw4wNx2nvPf5CxHnM5Fc0zu9zmizyvFC/ksNvY=", 2067 2065 "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip": "sha256-6VpRIidsf8iWJeR3OarwwgS1NDXj9j6bLnxU/YBskeY=", 2068 2066 "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar": "sha256-DobKZKokueqq0z75d2Fo3BD8mWX9+LpGdT9C7Eu2fHc=", 2069 2067 "https://plugins.jetbrains.com/files/7499/810633/gittoolbox-600.1.7_243-signed.zip": "sha256-lSgPEqhTvr+xm+9Or01IQABgjNugoUZHLUgUFZaOLs0=", 2070 - "https://plugins.jetbrains.com/files/7724/805402/clouds-docker-impl-251.27812.52.zip": "sha256-irzstm3qMkiJSVsXGunYdMvThvPX1KU4Cf85ZDf3/9o=", 2071 - "https://plugins.jetbrains.com/files/7724/819808/clouds-docker-impl-252.23892.464.zip": "sha256-0Mz1BuAdHZ87KcIepSudLkFJt/du7PeJVOy14Jj18V8=", 2068 + "https://plugins.jetbrains.com/files/7724/826726/clouds-docker-impl-252.23892.515.zip": "sha256-D21m3wQENj79cODe7vX2UuBqta3Tv8ctSf5Rk1VkX84=", 2069 + "https://plugins.jetbrains.com/files/7724/829211/clouds-docker-impl-252.25557.35.zip": "sha256-6qeGPeLCBPKFmjE07yjHSTQPq0eHh3d3HxNyV9wNPf8=", 2072 2070 "https://plugins.jetbrains.com/files/8097/711188/graphql-251.23774.318.zip": "sha256-O+gSW36MwqQqUiZBQl8J4NFNK+jFowtT9k1ykhSraxM=", 2073 2071 "https://plugins.jetbrains.com/files/8097/796399/graphql-252.23892.201.zip": "sha256-eLh0p5vDNG7fUV7pqbIbkL30dpPj19NE9JbwcDwxZXs=", 2074 - "https://plugins.jetbrains.com/files/8097/802996/graphql-251.27812.12.zip": "sha256-Pju+Kre4EKRoKYEPsj74+JFvd+VyXSb7EMDo00eCz10=", 2075 - "https://plugins.jetbrains.com/files/8195/780518/toml-251.26927.47.zip": "sha256-WGGDyxE1ElguDMm7dONA2f0k3u+Tl1vZp3HMLkr5bFw=", 2072 + "https://plugins.jetbrains.com/files/8097/827445/graphql-252.25557.23.zip": "sha256-wN3+7++f6i0MvEmOTiWZgAW1QzM5HiD7jSAMS8jWC5s=", 2076 2073 "https://plugins.jetbrains.com/files/8195/819801/toml-252.23892.464.zip": "sha256-CXbS+/k9a4YqYPRxd5OWGxtal2+5ECshavcOSrYqca0=", 2074 + "https://plugins.jetbrains.com/files/8195/828228/toml-252.25557.32.zip": "sha256-z0hIeOb0UXSpmuerL5EYKaKfSH/oQCtKCr3O752SMgU=", 2077 2075 "https://plugins.jetbrains.com/files/8327/809293/Minecraft_Development-2025.1-1.8.6.zip": "sha256-mePVZa+63bheH85ylkbX9oOX1Nq/IYLAGHHseOJx520=", 2078 2076 "https://plugins.jetbrains.com/files/8327/809294/Minecraft_Development-2025.2-1.8.6.zip": "sha256-NOuzQ+CL+Z8n5gwMBaberLyMvS5KNmXKwZ+j88+SFqU=", 2079 2077 "https://plugins.jetbrains.com/files/8554/740850/featuresTrainer-251.25410.148.zip": "sha256-iK3cy0Nf87rLV0m/t3LJv65Klij/9L5l9ad2UW9O00w=", 2080 - "https://plugins.jetbrains.com/files/8554/768764/featuresTrainer-251.26094.133.zip": "sha256-qcMxLM2Y/Q18r718VasRMAlKppbH+ra/6eKCkmVL88s=", 2081 - "https://plugins.jetbrains.com/files/8554/819797/featuresTrainer-252.23892.464.zip": "sha256-BIz14Jbr9vX7GLdxW4u23lY8bFUm4SOu1CBj0i827A8=", 2078 + "https://plugins.jetbrains.com/files/8554/826552/featuresTrainer-252.23892.514.zip": "sha256-AQLuTcRERFq2ZfzOqUGMte/pLe7/3g6G+9UqNMuUYiY=", 2079 + "https://plugins.jetbrains.com/files/8554/828474/featuresTrainer-252.25557.34.zip": "sha256-ydCebS4OHac4Y2Y9X53fvKzYZLRmIaTCKJCE1qwPkjg=", 2082 2080 "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip": "sha256-JShheBoOBiWM9HubMUJvBn4H3DnWykvqPyrmetaCZiM=", 2083 2081 "https://plugins.jetbrains.com/files/9164/710996/gherkin-251.23774.318.zip": "sha256-Boy61dRieXmWrnTMfqqYZbdG/DNQ24KdguKN2fcZ+eg=", 2084 2082 "https://plugins.jetbrains.com/files/9164/796366/gherkin-252.23892.201.zip": "sha256-KrC3EK4wYLSxWywF8I8nVx6tkclr1wAMya1Z1XF0QY8=", 2083 + "https://plugins.jetbrains.com/files/9164/827451/gherkin-252.25557.23.zip": "sha256-y66kYTYD+R9Sert2JHWGwFFIgc5UJTssZrjgvzOjljk=", 2085 2084 "https://plugins.jetbrains.com/files/9525/711041/dotenv-251.23774.318.zip": "sha256-0c/2qbuu+M6z0gvpme+Mkv23JlQKNTUU+9GL9mh2IFw=", 2086 2085 "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip": "sha256-N0DNEtF3FDcRirfjfSCCVUbDIA4SB35F/9XY1tPXXmg=", 2087 2086 "https://plugins.jetbrains.com/files/9568/808965/go-plugin-252.23892.360.zip": "sha256-7RuJXLGB5bcfHQnp/p69hjccgJKbCvYCGG634WQ8wQ4=", 2088 2087 "https://plugins.jetbrains.com/files/9707/702581/ANSI_Highlighter_Premium-25.1.5.jar": "sha256-XYCD4kOHDeIKhti0T175xhBHR8uscaFN4c9CNlUaCDs=", 2089 2088 "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar": "sha256-mp1k2BdksxbGH4zUp/7DnjcGi5OXJ7UekCfX6dWZOtU=", 2090 2089 "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip": "sha256-Mzmmq0RzMKZeKfBSo7FHvzeEtPGIrwqEDLAONQEsR1M=", 2091 - "https://plugins.jetbrains.com/files/9836/803254/intellij-randomness-3.4.0.zip": "sha256-mg0xdvhe/CSKJqmwACKHfk9zoRqfSz6xNPRP1njFClg=" 2090 + "https://plugins.jetbrains.com/files/9836/823111/intellij-randomness-3.4.1.zip": "sha256-BFlrdhQVhERwCqRIkiYHN/gUnMBv8gfGt+LX1Debvmw=" 2092 2091 } 2093 2092 }
+3 -3
pkgs/applications/emulators/libretro/cores/ppsspp.nix
··· 13 13 }: 14 14 mkLibretroCore { 15 15 core = "ppsspp"; 16 - version = "0-unstable-2025-08-11"; 16 + version = "0-unstable-2025-08-19"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "hrydgard"; 20 20 repo = "ppsspp"; 21 - rev = "9912aa5c8d3b95165c56e29ffaa50069aeae0860"; 22 - hash = "sha256-5snyC0hk1VqYH4aqz4E7ukPyOLrDVZwDsw3LPdHDSzM="; 21 + rev = "e526986da2b491763e2d715741f1babeef68f1a6"; 22 + hash = "sha256-aPYsgb/nO9RzSGL+evMiCoYz3+08HC83An3rMoCWWMw="; 23 23 fetchSubmodules = true; 24 24 }; 25 25
+23 -11
pkgs/applications/misc/ArchiSteamFarm/default.nix
··· 9 9 callPackage, 10 10 }: 11 11 12 + let 13 + plugins = [ 14 + "ArchiSteamFarm.OfficialPlugins.ItemsMatcher" 15 + "ArchiSteamFarm.OfficialPlugins.MobileAuthenticator" 16 + "ArchiSteamFarm.OfficialPlugins.Monitoring" 17 + "ArchiSteamFarm.OfficialPlugins.SteamTokenDumper" 18 + ]; 19 + in 12 20 buildDotnetModule rec { 13 21 pname = "ArchiSteamFarm"; 14 22 # nixpkgs-update: no auto update ··· 26 34 27 35 nugetDeps = ./deps.json; 28 36 29 - projectFile = "ArchiSteamFarm.sln"; 37 + projectFile = [ 38 + "ArchiSteamFarm" 39 + ] 40 + ++ plugins; 41 + testProjectFile = "ArchiSteamFarm.Tests"; 42 + 30 43 executable = "ArchiSteamFarm"; 31 44 32 45 enableParallelBuilding = false; ··· 50 63 51 64 doCheck = true; 52 65 53 - preInstall = '' 66 + installPhase = '' 54 67 dotnetProjectFiles=(ArchiSteamFarm) 55 68 56 69 # A mutable path, with this directory tree must be set. By default, this would point at the nix store causing errors. ··· 58 71 --run 'mkdir -p ~/.config/archisteamfarm/{config,logs,plugins}' 59 72 --set "ASF_PATH" "~/.config/archisteamfarm" 60 73 ) 61 - ''; 74 + 75 + dotnetInstallPhase 62 76 63 - postInstall = '' 64 77 buildPlugin() { 65 78 echo "Publishing plugin $1" 66 - dotnet publish $1 -p:ContinuousIntegrationBuild=true -p:Deterministic=true \ 67 - --output $out/lib/ArchiSteamFarm/plugins/$1 --configuration Release \ 68 - $dotnetFlags $dotnetInstallFlags 79 + dotnetProjectFiles=("$1") 80 + dotnetInstallPath="$out/lib/ArchiSteamFarm/plugins/$1" 81 + dotnetInstallPhase 69 82 } 70 83 71 - buildPlugin ArchiSteamFarm.OfficialPlugins.ItemsMatcher 72 - buildPlugin ArchiSteamFarm.OfficialPlugins.MobileAuthenticator 73 - buildPlugin ArchiSteamFarm.OfficialPlugins.Monitoring 74 - buildPlugin ArchiSteamFarm.OfficialPlugins.SteamTokenDumper 84 + '' 85 + + lib.concatMapStrings (p: "buildPlugin ${p}\n") plugins 86 + + '' 75 87 76 88 chmod +x $out/lib/ArchiSteamFarm/ArchiSteamFarm.dll 77 89 wrapDotnetProgram $out/lib/ArchiSteamFarm/ArchiSteamFarm.dll $out/bin/ArchiSteamFarm
+825 -825
pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
··· 1 1 { 2 - version = "141.0.3"; 2 + version = "142.0"; 3 3 sources = [ 4 4 { 5 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/ach/firefox-141.0.3.tar.xz"; 5 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/ach/firefox-142.0.tar.xz"; 6 6 locale = "ach"; 7 7 arch = "linux-x86_64"; 8 - sha256 = "627a4d8be46f887db7391104717770a4c11249c37678bc484a2b2deb5007509b"; 8 + sha256 = "976f6cc23f5e2f424707fd42e30d9ce29086748ae7e817ff5ee3f69e628ad744"; 9 9 } 10 10 { 11 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/af/firefox-141.0.3.tar.xz"; 11 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/af/firefox-142.0.tar.xz"; 12 12 locale = "af"; 13 13 arch = "linux-x86_64"; 14 - sha256 = "a3328847130d990f6b1cc79587988ff351895745d7901e11be49a8116d98b145"; 14 + sha256 = "ad0d46e8f2805bd1fe3fd3382db7c0c6d4e30a9ef2c9b3fb10ffedd05da9e173"; 15 15 } 16 16 { 17 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/an/firefox-141.0.3.tar.xz"; 17 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/an/firefox-142.0.tar.xz"; 18 18 locale = "an"; 19 19 arch = "linux-x86_64"; 20 - sha256 = "b51fe97d0deaa9d2289d7bf0157f17693f4f698b5a73456f151561fdefff4035"; 20 + sha256 = "bb1e2662b6a1c1b78ead75953d680ca458a297200535d581f0efa78e9af98f6e"; 21 21 } 22 22 { 23 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/ar/firefox-141.0.3.tar.xz"; 23 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/ar/firefox-142.0.tar.xz"; 24 24 locale = "ar"; 25 25 arch = "linux-x86_64"; 26 - sha256 = "5b546a369af373c0540501c2130229b0193e0241e582a0118f04e7d8545239c8"; 26 + sha256 = "c918c6ee47806c78fb5e30ed3200521f6ceb32944e09c305779c11c0904dcf19"; 27 27 } 28 28 { 29 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/ast/firefox-141.0.3.tar.xz"; 29 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/ast/firefox-142.0.tar.xz"; 30 30 locale = "ast"; 31 31 arch = "linux-x86_64"; 32 - sha256 = "6ff16269395855e6bda0d3e247cc5b2dfb0380c5463c3998a75ab6118c9cfae9"; 32 + sha256 = "1796c0d0e1ec2611d3163771fd4a28e9d5338718d3f4b3d0b2b6708060a757d8"; 33 33 } 34 34 { 35 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/az/firefox-141.0.3.tar.xz"; 35 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/az/firefox-142.0.tar.xz"; 36 36 locale = "az"; 37 37 arch = "linux-x86_64"; 38 - sha256 = "47dab2243a9976c8a342419fc2bd9e3018efdbf55073d6ef93047ab69961048f"; 38 + sha256 = "fd9c59ef7973e3f77328fb3c47a62f5615cc99119344f2131ab5a6e8da1123db"; 39 39 } 40 40 { 41 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/be/firefox-141.0.3.tar.xz"; 41 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/be/firefox-142.0.tar.xz"; 42 42 locale = "be"; 43 43 arch = "linux-x86_64"; 44 - sha256 = "c14d9c0487f19581bbe84fa143f9f44715954801145ca6faed1c360c8b1df3ae"; 44 + sha256 = "edd79a3228f633f0c14f782743b557ca9f3bf6640dc2abead7214dc654bae573"; 45 45 } 46 46 { 47 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/bg/firefox-141.0.3.tar.xz"; 47 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/bg/firefox-142.0.tar.xz"; 48 48 locale = "bg"; 49 49 arch = "linux-x86_64"; 50 - sha256 = "383245e15b900f1ca81f4a6d4b0f9ecc4fde8282178a990bb70934c61737fcef"; 50 + sha256 = "71a98e2e79b7eff784d7af92cbe5ec036e8377732252bd8e6a3e5fe972596702"; 51 51 } 52 52 { 53 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/bn/firefox-141.0.3.tar.xz"; 53 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/bn/firefox-142.0.tar.xz"; 54 54 locale = "bn"; 55 55 arch = "linux-x86_64"; 56 - sha256 = "4cc0f97e7b2ffecb317b17ca14548ae6d7165d63ef0b2d038f609175e8d08a45"; 56 + sha256 = "db927c2ddb58a6de6037137efa711cbe83f9de193e19adcc964045dceb846e53"; 57 57 } 58 58 { 59 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/br/firefox-141.0.3.tar.xz"; 59 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/br/firefox-142.0.tar.xz"; 60 60 locale = "br"; 61 61 arch = "linux-x86_64"; 62 - sha256 = "a4dd23993d44aa9193d8241d6ac4beff9f8da61693487ff74bf4b9204a74e2c4"; 62 + sha256 = "ba126d77778c751dc5d200921cf0b73f2fa84298d19f1fd62a69e187aa3b7626"; 63 63 } 64 64 { 65 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/bs/firefox-141.0.3.tar.xz"; 65 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/bs/firefox-142.0.tar.xz"; 66 66 locale = "bs"; 67 67 arch = "linux-x86_64"; 68 - sha256 = "cfdd129fc1d4e8da8902d1f88c30561331e6a07ee22120b2594f020cf668fb47"; 68 + sha256 = "ed08e068f1f13e44d799ba9406fedecb32dd38d256097b238a9d7f302477f58a"; 69 69 } 70 70 { 71 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/ca-valencia/firefox-141.0.3.tar.xz"; 71 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/ca-valencia/firefox-142.0.tar.xz"; 72 72 locale = "ca-valencia"; 73 73 arch = "linux-x86_64"; 74 - sha256 = "b52d0747340a94efc4b2761515fed56ba86432374aaf7a20ea6dd56fb8a3272f"; 74 + sha256 = "18ec8149098c8d0d78e043567e07fcf6e724ed09c6f7fd99f69e0330abee9df8"; 75 75 } 76 76 { 77 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/ca/firefox-141.0.3.tar.xz"; 77 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/ca/firefox-142.0.tar.xz"; 78 78 locale = "ca"; 79 79 arch = "linux-x86_64"; 80 - sha256 = "b897391f406a34ec2f31295918ff62cff0cf2f7dfc84411864b38d5723169750"; 80 + sha256 = "1edcfb2adf59b4a00e7015a9e43e8351e08b0f6e0985fb925b401dd30487baed"; 81 81 } 82 82 { 83 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/cak/firefox-141.0.3.tar.xz"; 83 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/cak/firefox-142.0.tar.xz"; 84 84 locale = "cak"; 85 85 arch = "linux-x86_64"; 86 - sha256 = "e1b3886e2f57754b960c3cbe7dbad8813d2514f24d77d7325372d0222c89c0de"; 86 + sha256 = "39c85d9d3518d21be8f45750deaa1aab39e74f178c77c07d6aba334f62e23b11"; 87 87 } 88 88 { 89 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/cs/firefox-141.0.3.tar.xz"; 89 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/cs/firefox-142.0.tar.xz"; 90 90 locale = "cs"; 91 91 arch = "linux-x86_64"; 92 - sha256 = "de8bc7aae84cf049ff05ce9031ffa1912e03c8ce5a59d6ad909e2bf76b7e8156"; 92 + sha256 = "ee022094dfd544c523e6942a86ca8066a69fa5222105f7bd699bfc36c05ac368"; 93 93 } 94 94 { 95 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/cy/firefox-141.0.3.tar.xz"; 95 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/cy/firefox-142.0.tar.xz"; 96 96 locale = "cy"; 97 97 arch = "linux-x86_64"; 98 - sha256 = "cfc2148edf9625131c675119d12b0add30bb462680a0714fbaa30dffd943d34b"; 98 + sha256 = "432e72cabe82d1cd92c957230c70c4032c90cfe073b5396c774dad7d5f450498"; 99 99 } 100 100 { 101 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/da/firefox-141.0.3.tar.xz"; 101 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/da/firefox-142.0.tar.xz"; 102 102 locale = "da"; 103 103 arch = "linux-x86_64"; 104 - sha256 = "870fbedf5e68fced72212de2e3e31c69caa70998f9efa030ac0268f73a99e121"; 104 + sha256 = "406b5bd9ab26ef389b29c73d0256fbd30b4b7d175a7d80ce0c6574c077cb169e"; 105 105 } 106 106 { 107 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/de/firefox-141.0.3.tar.xz"; 107 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/de/firefox-142.0.tar.xz"; 108 108 locale = "de"; 109 109 arch = "linux-x86_64"; 110 - sha256 = "e49dc3615933515577496d92c91c39d03d01dce2d77542c84c8763c0f50f3733"; 110 + sha256 = "78bc260583ed88785c7f566606bc75cb406c14321de5ec00ad8c5d5e131447fc"; 111 111 } 112 112 { 113 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/dsb/firefox-141.0.3.tar.xz"; 113 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/dsb/firefox-142.0.tar.xz"; 114 114 locale = "dsb"; 115 115 arch = "linux-x86_64"; 116 - sha256 = "5d4b54b412bbccf50da17040798a071a8c37c731651d0c7a9a6d6645fec6371f"; 116 + sha256 = "0fc986d0bc419f0dc88e844ab3e7079d4b3472b5c059473d1143345dffbc588d"; 117 117 } 118 118 { 119 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/el/firefox-141.0.3.tar.xz"; 119 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/el/firefox-142.0.tar.xz"; 120 120 locale = "el"; 121 121 arch = "linux-x86_64"; 122 - sha256 = "36ac776b807e433d9c001283c042bfe185db2b99ea81c4be6b4b06f81d5fed42"; 122 + sha256 = "a642b1852dc865911777dc21d30ed14b3f29d4320d02a94d00b62d484ae39e9e"; 123 123 } 124 124 { 125 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/en-CA/firefox-141.0.3.tar.xz"; 125 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/en-CA/firefox-142.0.tar.xz"; 126 126 locale = "en-CA"; 127 127 arch = "linux-x86_64"; 128 - sha256 = "ed4bc1a1b19efc5f3d994de75661d19aa0f3d283751e62072d9b99cf6a6b0573"; 128 + sha256 = "ba05b60920e0c8e3fdbed5a5b3f9b804d94c5efaaf0204eeb189dd85d2bccce7"; 129 129 } 130 130 { 131 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/en-GB/firefox-141.0.3.tar.xz"; 131 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/en-GB/firefox-142.0.tar.xz"; 132 132 locale = "en-GB"; 133 133 arch = "linux-x86_64"; 134 - sha256 = "d538f26dfd3f81ca3d71a022a5f996826bf1bd42dea33c7171e6c737f85cc5a7"; 134 + sha256 = "325e635f2f60c2a09ccd1079f498addbb287c2f5bac5af956e40ce3b02462d81"; 135 135 } 136 136 { 137 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/en-US/firefox-141.0.3.tar.xz"; 137 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/en-US/firefox-142.0.tar.xz"; 138 138 locale = "en-US"; 139 139 arch = "linux-x86_64"; 140 - sha256 = "e935dc3b74cf2cb1086e1e0b4a51d18e4d307e71ce6a20db64fe49d09cc78716"; 140 + sha256 = "da8897a6a618e73878e6022a2bece76af509c304c73ae5c53dc523d35cb7bae6"; 141 141 } 142 142 { 143 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/eo/firefox-141.0.3.tar.xz"; 143 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/eo/firefox-142.0.tar.xz"; 144 144 locale = "eo"; 145 145 arch = "linux-x86_64"; 146 - sha256 = "052530afd49c38ae1d9bf45a4a8580b7765463e0502a7800d8573c55098e20ae"; 146 + sha256 = "c9da2c7d09c40bc746a91820747a5f11b1a2a9893a5545d5d62a5d8e18bc37db"; 147 147 } 148 148 { 149 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/es-AR/firefox-141.0.3.tar.xz"; 149 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/es-AR/firefox-142.0.tar.xz"; 150 150 locale = "es-AR"; 151 151 arch = "linux-x86_64"; 152 - sha256 = "c0bb261ed8bd997614b2cd67ed84ba46cb00d0a81cdbf36bac19a5994257bb50"; 152 + sha256 = "d5cb86ad0b547ae94175ae1a5701e423c55999ea12406daa4068415dbb9300ea"; 153 153 } 154 154 { 155 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/es-CL/firefox-141.0.3.tar.xz"; 155 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/es-CL/firefox-142.0.tar.xz"; 156 156 locale = "es-CL"; 157 157 arch = "linux-x86_64"; 158 - sha256 = "fd81aebbd847d8ac847c14b1bd0fecc7fe3939d8e30690f46472585875f23e6e"; 158 + sha256 = "0acf0f75cefdae8a4c9e2ecc316219926a737ed625d8907b816453aa662e0712"; 159 159 } 160 160 { 161 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/es-ES/firefox-141.0.3.tar.xz"; 161 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/es-ES/firefox-142.0.tar.xz"; 162 162 locale = "es-ES"; 163 163 arch = "linux-x86_64"; 164 - sha256 = "4a5bb347eb890e3b43e08a491d4875846e409fc0ebef2e63669f660ff9088559"; 164 + sha256 = "150d931d17242ddd3d795918dfa2feec0de721144e44c7509e3d5c0badb9471f"; 165 165 } 166 166 { 167 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/es-MX/firefox-141.0.3.tar.xz"; 167 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/es-MX/firefox-142.0.tar.xz"; 168 168 locale = "es-MX"; 169 169 arch = "linux-x86_64"; 170 - sha256 = "02fdbe38a6ac621361f3a33cd00f7d48ab22797841e856d60fa2b069d4acc54b"; 170 + sha256 = "e4f02ef45ef112342b27c4064287dd6230ea807835dffc89484c7c78554fb926"; 171 171 } 172 172 { 173 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/et/firefox-141.0.3.tar.xz"; 173 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/et/firefox-142.0.tar.xz"; 174 174 locale = "et"; 175 175 arch = "linux-x86_64"; 176 - sha256 = "70941c683adddcae1af5f5be91b89419cfaf8b43a4a7252c71c6f74119dd4391"; 176 + sha256 = "635f5596736bc0a19c42f7b30aacbf4800d4c844bedfc2d6b080db428fc63f98"; 177 177 } 178 178 { 179 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/eu/firefox-141.0.3.tar.xz"; 179 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/eu/firefox-142.0.tar.xz"; 180 180 locale = "eu"; 181 181 arch = "linux-x86_64"; 182 - sha256 = "972a4963d255e7de02e9d9efadbb1757efd2aaf557434b2086342b0a0de0224a"; 182 + sha256 = "456c72d05b30537ea7b25964e70034a98d76b4559805135bdff286017b63e238"; 183 183 } 184 184 { 185 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/fa/firefox-141.0.3.tar.xz"; 185 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/fa/firefox-142.0.tar.xz"; 186 186 locale = "fa"; 187 187 arch = "linux-x86_64"; 188 - sha256 = "c5dc7efab021fe09f279b831b8aa07fe0efb7daa7f3a079501cb5341afc5cd26"; 188 + sha256 = "8b14a40b42727c15f3fcb3255e71a9d74d712186ce82be034dd7045ade7ebdc3"; 189 189 } 190 190 { 191 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/ff/firefox-141.0.3.tar.xz"; 191 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/ff/firefox-142.0.tar.xz"; 192 192 locale = "ff"; 193 193 arch = "linux-x86_64"; 194 - sha256 = "73dfd15598e6e7c58d259f08da9a4ce1e3bcb788e648bf46513c2c04cde0ec35"; 194 + sha256 = "5fec4d8fd012bea2a96c4c6e707f253a5d8d000c21b6ce27e478116e8953146f"; 195 195 } 196 196 { 197 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/fi/firefox-141.0.3.tar.xz"; 197 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/fi/firefox-142.0.tar.xz"; 198 198 locale = "fi"; 199 199 arch = "linux-x86_64"; 200 - sha256 = "e16378f41f13f6f0618b381df48081d3f249210337c8c20b804abac0027f432e"; 200 + sha256 = "0b11eb23bcc283777ba30a114496aeb7a87817afd961a2db9669d724f5b7675d"; 201 201 } 202 202 { 203 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/fr/firefox-141.0.3.tar.xz"; 203 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/fr/firefox-142.0.tar.xz"; 204 204 locale = "fr"; 205 205 arch = "linux-x86_64"; 206 - sha256 = "02405cc92fce9ebc697e4680e26efbb5e2249b819dc019a7117ab7e15e611bb6"; 206 + sha256 = "587c9bb19db79eb2ebc4243dabb514144746884065588c0ede15df5283f4f5b3"; 207 207 } 208 208 { 209 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/fur/firefox-141.0.3.tar.xz"; 209 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/fur/firefox-142.0.tar.xz"; 210 210 locale = "fur"; 211 211 arch = "linux-x86_64"; 212 - sha256 = "abdb82d146239caa719bbdd0ea3c93557b228040c59b110268f530c94bcfa007"; 212 + sha256 = "5e96d08d90c378864f63ba07c4f1328f17f5b79c3b0d49469d77335c31b55c51"; 213 213 } 214 214 { 215 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/fy-NL/firefox-141.0.3.tar.xz"; 215 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/fy-NL/firefox-142.0.tar.xz"; 216 216 locale = "fy-NL"; 217 217 arch = "linux-x86_64"; 218 - sha256 = "58b7a105cf0c653a6a6f603680fb6f532db7630721341d5bddfa90b435b40260"; 218 + sha256 = "b847fb56503ead73435ece318f3a0b95a39c58accccacd5d09345dfa8bde89f7"; 219 219 } 220 220 { 221 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/ga-IE/firefox-141.0.3.tar.xz"; 221 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/ga-IE/firefox-142.0.tar.xz"; 222 222 locale = "ga-IE"; 223 223 arch = "linux-x86_64"; 224 - sha256 = "b5cda01f55ad36c7bb831867294daa33774aa6345ad1845935e607851a6a073c"; 224 + sha256 = "38aa9a55cfd3d41c47fe0a176bb6bbc5214a9801579045d9a62a35a3e64d75f0"; 225 225 } 226 226 { 227 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/gd/firefox-141.0.3.tar.xz"; 227 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/gd/firefox-142.0.tar.xz"; 228 228 locale = "gd"; 229 229 arch = "linux-x86_64"; 230 - sha256 = "abd1e83a1bd68e30029463ab4e06e16da81c118d884a460b65dbe8888c176b4c"; 230 + sha256 = "779c07699548e94142a84610ecc45b80d0f7d3e87ad83cdfeb1697cfe6fd9d44"; 231 231 } 232 232 { 233 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/gl/firefox-141.0.3.tar.xz"; 233 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/gl/firefox-142.0.tar.xz"; 234 234 locale = "gl"; 235 235 arch = "linux-x86_64"; 236 - sha256 = "193b1a552d54e64beeb53e33eb8d1be8d0d2e399f5921213bddfd277b7e4e99d"; 236 + sha256 = "2b610417fc4e835b973438367a6dc185ddbd2e855516b1381c1db1a2d735b64e"; 237 237 } 238 238 { 239 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/gn/firefox-141.0.3.tar.xz"; 239 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/gn/firefox-142.0.tar.xz"; 240 240 locale = "gn"; 241 241 arch = "linux-x86_64"; 242 - sha256 = "e6b7d2d12404f0ecf6b893706df626fd03ecfbc941834c5243de70e28218178c"; 242 + sha256 = "80f24fc46d9740973ce64ed08f27f95de4589e61ef0ecb67425041acc346dcc6"; 243 243 } 244 244 { 245 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/gu-IN/firefox-141.0.3.tar.xz"; 245 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/gu-IN/firefox-142.0.tar.xz"; 246 246 locale = "gu-IN"; 247 247 arch = "linux-x86_64"; 248 - sha256 = "2b507c7ef9785ee01c5c6beb1e3333d6436b81b2028d366f171132a6707a585b"; 248 + sha256 = "fe251ca598869714166e78197b3e877ee62897dcbd77c96866006c4a596578de"; 249 249 } 250 250 { 251 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/he/firefox-141.0.3.tar.xz"; 251 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/he/firefox-142.0.tar.xz"; 252 252 locale = "he"; 253 253 arch = "linux-x86_64"; 254 - sha256 = "d0a00794bfe739ce3592bef7c04e1d4c023ed12053fde3e30777a639672bf6ad"; 254 + sha256 = "a7be1bf9bd8511f2a989e3d5efc6393d9345f1c5e2d32b9d2cfe1c437bcbfebb"; 255 255 } 256 256 { 257 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/hi-IN/firefox-141.0.3.tar.xz"; 257 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/hi-IN/firefox-142.0.tar.xz"; 258 258 locale = "hi-IN"; 259 259 arch = "linux-x86_64"; 260 - sha256 = "a726e5c526d431e1db48b1c7c2a7e165a5b4ada21525470767ede11b3ecfd491"; 260 + sha256 = "f898b3feda7d77cef6118275a952c22152510b59f4421654c845804ffe7b18a4"; 261 261 } 262 262 { 263 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/hr/firefox-141.0.3.tar.xz"; 263 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/hr/firefox-142.0.tar.xz"; 264 264 locale = "hr"; 265 265 arch = "linux-x86_64"; 266 - sha256 = "1606ad305956ad319b0ed6be93fef16ae1444d4a9580283fc81126cdc42f7490"; 266 + sha256 = "f79a590a4ea20e3cf7ae409c2e57ffde17a115a190a1041a2ed6b31ef8751a1b"; 267 267 } 268 268 { 269 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/hsb/firefox-141.0.3.tar.xz"; 269 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/hsb/firefox-142.0.tar.xz"; 270 270 locale = "hsb"; 271 271 arch = "linux-x86_64"; 272 - sha256 = "e8903b3e5deba70a9bea38fa76186bfe0127252b72d84e624b4575c523d293f1"; 272 + sha256 = "8024d111749d767df4f505083ab71e2262588b099401852486b01793801a6f52"; 273 273 } 274 274 { 275 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/hu/firefox-141.0.3.tar.xz"; 275 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/hu/firefox-142.0.tar.xz"; 276 276 locale = "hu"; 277 277 arch = "linux-x86_64"; 278 - sha256 = "6b2289c4ebc6a9780ee0e1c45a765e036d5372408a4757b2bafce9a504a37b77"; 278 + sha256 = "b817751a906dce2fcbe603584519c3d9f5aaf165b42d7d76078cf6e427f7cc4a"; 279 279 } 280 280 { 281 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/hy-AM/firefox-141.0.3.tar.xz"; 281 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/hy-AM/firefox-142.0.tar.xz"; 282 282 locale = "hy-AM"; 283 283 arch = "linux-x86_64"; 284 - sha256 = "0bb5f079ada3dadb0fc364d194a3272a7bf7fdb2e03cf408e0a16e2aac2e1c58"; 284 + sha256 = "fa3b3ba641cedb46e407951e54ad0974e42a0a064eda28a381d8d354d1077615"; 285 285 } 286 286 { 287 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/ia/firefox-141.0.3.tar.xz"; 287 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/ia/firefox-142.0.tar.xz"; 288 288 locale = "ia"; 289 289 arch = "linux-x86_64"; 290 - sha256 = "dfcc1f9cddf732589baa8422eea711ca236f36a5a743cf2e6050d7f7762c211a"; 290 + sha256 = "890ee1b281307a1bb18307d799179810ac8c0c4598cde13743f0071a72d8efd7"; 291 291 } 292 292 { 293 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/id/firefox-141.0.3.tar.xz"; 293 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/id/firefox-142.0.tar.xz"; 294 294 locale = "id"; 295 295 arch = "linux-x86_64"; 296 - sha256 = "c0b5fb2ac764622cc3a10aeb60bc483e548d73d35113125fbe66f432bf36220e"; 296 + sha256 = "91e3559c31afc494e380312c253f2681ed0b0cb2ad6d78239de9d2e5302aa437"; 297 297 } 298 298 { 299 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/is/firefox-141.0.3.tar.xz"; 299 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/is/firefox-142.0.tar.xz"; 300 300 locale = "is"; 301 301 arch = "linux-x86_64"; 302 - sha256 = "91ec6acc0d488eaa203cc76ffd7c7e9e0812761f281a3d3138c56db03a4d7263"; 302 + sha256 = "40a5d4b7484dac6574569be2516d79a372ba92b9ef02f3c56629bcd8b59772fc"; 303 303 } 304 304 { 305 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/it/firefox-141.0.3.tar.xz"; 305 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/it/firefox-142.0.tar.xz"; 306 306 locale = "it"; 307 307 arch = "linux-x86_64"; 308 - sha256 = "c465319d249106d1250c82bf12452d3fa7c6720c34b467783a469491cab2a70a"; 308 + sha256 = "4ae36b25a62701dd67443ee9c97cffd60b9d05c2d2cefbf0594292929f0d2397"; 309 309 } 310 310 { 311 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/ja/firefox-141.0.3.tar.xz"; 311 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/ja/firefox-142.0.tar.xz"; 312 312 locale = "ja"; 313 313 arch = "linux-x86_64"; 314 - sha256 = "cc85b2392b2d127ee7135155de501d09e005201b8ccef57a70ca38067d7edf0c"; 314 + sha256 = "7523b6ed419578a9c3a5e5f96ed5d18e3e38f0fe688f4c61652e794d564a895b"; 315 315 } 316 316 { 317 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/ka/firefox-141.0.3.tar.xz"; 317 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/ka/firefox-142.0.tar.xz"; 318 318 locale = "ka"; 319 319 arch = "linux-x86_64"; 320 - sha256 = "b1931ccdc07f128cae1aa04589b774b4cc65ac5decb4e34a83c059aace514d2a"; 320 + sha256 = "58a732e118e661dc6c85b1940e627d0a87e12107b7dae28d6e760672019e5174"; 321 321 } 322 322 { 323 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/kab/firefox-141.0.3.tar.xz"; 323 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/kab/firefox-142.0.tar.xz"; 324 324 locale = "kab"; 325 325 arch = "linux-x86_64"; 326 - sha256 = "30876d54903ea9761228ef52325097762a07f4c32e6788dcf1340f4c7a2fe0e7"; 326 + sha256 = "9b156db9489d37504a82429a0df7ab5932c364bc882c9d18a1ece58454fa6044"; 327 327 } 328 328 { 329 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/kk/firefox-141.0.3.tar.xz"; 329 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/kk/firefox-142.0.tar.xz"; 330 330 locale = "kk"; 331 331 arch = "linux-x86_64"; 332 - sha256 = "2e3f5b378e39205927a706a80c4c8bdcd7efa465b7c5183e013fd8943ae51218"; 332 + sha256 = "014805d500a11d057e01fb359ab14f729b2bc2760d976abfa498b9a737f4b633"; 333 333 } 334 334 { 335 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/km/firefox-141.0.3.tar.xz"; 335 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/km/firefox-142.0.tar.xz"; 336 336 locale = "km"; 337 337 arch = "linux-x86_64"; 338 - sha256 = "a70779d314b66fd3d2c49acd3cac2c45ecbf87634f3b307dddfa23c2e04f14b7"; 338 + sha256 = "6a160215eb1f63737dbf12fd50329e6f9c32fb237e9fda2fe1ccf59391a02518"; 339 339 } 340 340 { 341 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/kn/firefox-141.0.3.tar.xz"; 341 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/kn/firefox-142.0.tar.xz"; 342 342 locale = "kn"; 343 343 arch = "linux-x86_64"; 344 - sha256 = "88fcee7e76eb29fd325f12251e025cd5191a50dba5b0b9144cf5950e71cfdebe"; 344 + sha256 = "ca4a3d58f03065ca5a41dbaaff94593275ea66c88bc86917aa0378c7ec9e5787"; 345 345 } 346 346 { 347 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/ko/firefox-141.0.3.tar.xz"; 347 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/ko/firefox-142.0.tar.xz"; 348 348 locale = "ko"; 349 349 arch = "linux-x86_64"; 350 - sha256 = "8ce7700492e0d560f6aa3d07d96ac86110418ab198dcb7844d80d45a9666bda9"; 350 + sha256 = "d15029751353b8b5443113f5ddedb2563a76ffd13486657027982aef27f9764b"; 351 351 } 352 352 { 353 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/lij/firefox-141.0.3.tar.xz"; 353 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/lij/firefox-142.0.tar.xz"; 354 354 locale = "lij"; 355 355 arch = "linux-x86_64"; 356 - sha256 = "6d39d04672163d25ceedea83d1948bb12573861e76a40db7c4028fcb117bafe7"; 356 + sha256 = "72a2a6196b20637ac5707a8b008a066ccfe7cd5b5effd69004472daf15cd79ab"; 357 357 } 358 358 { 359 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/lt/firefox-141.0.3.tar.xz"; 359 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/lt/firefox-142.0.tar.xz"; 360 360 locale = "lt"; 361 361 arch = "linux-x86_64"; 362 - sha256 = "23f76ddb376d0f52b19ea4ddb32a88784f2aa8245c1098b3d7478622f8cefa20"; 362 + sha256 = "b4d1c58b93deb09ffc3247ca1e41896ec115c4b779d90fec1fc88707019c77a2"; 363 363 } 364 364 { 365 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/lv/firefox-141.0.3.tar.xz"; 365 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/lv/firefox-142.0.tar.xz"; 366 366 locale = "lv"; 367 367 arch = "linux-x86_64"; 368 - sha256 = "e49bf464dfd0b0c641247fc8d20a0fa9c827ca1038ea0186715616fa252d96c3"; 368 + sha256 = "333700baaeef92678591a5f475bcab96c56369c3c05ec29b189221351f5d5bc5"; 369 369 } 370 370 { 371 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/mk/firefox-141.0.3.tar.xz"; 371 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/mk/firefox-142.0.tar.xz"; 372 372 locale = "mk"; 373 373 arch = "linux-x86_64"; 374 - sha256 = "d8d649d47b2ed665bc282ee5a84859d5d8d9535fb5404bc9cb532b29dccc472c"; 374 + sha256 = "e964be73f05d573a73dfbc1ae7b91874045264a98268debea93c73c3257dd5ba"; 375 375 } 376 376 { 377 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/mr/firefox-141.0.3.tar.xz"; 377 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/mr/firefox-142.0.tar.xz"; 378 378 locale = "mr"; 379 379 arch = "linux-x86_64"; 380 - sha256 = "b68caed75fd5ca5d2d6133c33cc962ec48f30e6f0a1eeade2238d80087f8c5f0"; 380 + sha256 = "0e835694db9b4dcf7a1bd1e660b9a9ae4674a68aba1ccabece9171200c2a48e5"; 381 381 } 382 382 { 383 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/ms/firefox-141.0.3.tar.xz"; 383 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/ms/firefox-142.0.tar.xz"; 384 384 locale = "ms"; 385 385 arch = "linux-x86_64"; 386 - sha256 = "234b1f31cf6e62cc2623d0c12b796103c3acc4062e6f34f80c5bbfe90c403023"; 386 + sha256 = "120ec06da676f32673028204d3b90d31a3cc1ed89a654b58a3aa79e0c638f38a"; 387 387 } 388 388 { 389 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/my/firefox-141.0.3.tar.xz"; 389 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/my/firefox-142.0.tar.xz"; 390 390 locale = "my"; 391 391 arch = "linux-x86_64"; 392 - sha256 = "967fbaf3be42b7b6eb4ba5835efa1e65a4d0125af0245aec9ab87f68c343e434"; 392 + sha256 = "711884e25a99c139d0e8ed06f16d581b2975fffb54e1e76026344f640bec6706"; 393 393 } 394 394 { 395 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/nb-NO/firefox-141.0.3.tar.xz"; 395 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/nb-NO/firefox-142.0.tar.xz"; 396 396 locale = "nb-NO"; 397 397 arch = "linux-x86_64"; 398 - sha256 = "8337db76591abb2072024762d03fe28124caa1a9605e89c7b7a85e35353cbe61"; 398 + sha256 = "7c94754b50b523887ccd8931181d34f0a113390de40c090cb6d13b1e0dee2524"; 399 399 } 400 400 { 401 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/ne-NP/firefox-141.0.3.tar.xz"; 401 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/ne-NP/firefox-142.0.tar.xz"; 402 402 locale = "ne-NP"; 403 403 arch = "linux-x86_64"; 404 - sha256 = "f4c9726d7ce21dd3b70936563efbc8bf783e3d84da2a2762cbe8e416877d3ed1"; 404 + sha256 = "41a2d302ec4a2c0cb30e36cf325e89f19bb1ff25a2f96e494b14f1578ccc78fd"; 405 405 } 406 406 { 407 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/nl/firefox-141.0.3.tar.xz"; 407 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/nl/firefox-142.0.tar.xz"; 408 408 locale = "nl"; 409 409 arch = "linux-x86_64"; 410 - sha256 = "8a04a89d515278c2d5d3741dcee78cbb2680b7f2626035f686f4f4c4234b58e1"; 410 + sha256 = "247dec3c13da214027d5b48837c145d573891c6a1371ba8926a2bcc4be65b751"; 411 411 } 412 412 { 413 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/nn-NO/firefox-141.0.3.tar.xz"; 413 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/nn-NO/firefox-142.0.tar.xz"; 414 414 locale = "nn-NO"; 415 415 arch = "linux-x86_64"; 416 - sha256 = "85cd04b5bd0c2ceebb59b4f445c4a0cfaedb4c4b4b9a9396c391f88829af2915"; 416 + sha256 = "b57a14eab995933d3d940dcbab2dc5240dd903578be6e4ddb145e16076ddeeeb"; 417 417 } 418 418 { 419 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/oc/firefox-141.0.3.tar.xz"; 419 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/oc/firefox-142.0.tar.xz"; 420 420 locale = "oc"; 421 421 arch = "linux-x86_64"; 422 - sha256 = "0630f27847f064e3aa2c95e572d842e9de3ac33b4b3b2595ea4801ae0c0f4ddf"; 422 + sha256 = "009ed4a141a5786a057267e4e36defd2844a17282edc13265a838a1716ebfc36"; 423 423 } 424 424 { 425 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/pa-IN/firefox-141.0.3.tar.xz"; 425 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/pa-IN/firefox-142.0.tar.xz"; 426 426 locale = "pa-IN"; 427 427 arch = "linux-x86_64"; 428 - sha256 = "451c8936508fc4fe6d15c80ed8caeeb6c988ef714c8c0cde05db1247d3b805f3"; 428 + sha256 = "aa64c7d7c3cdd8de4a16da60b25f09494c47e4aa17add61d8ecc9e9926c92567"; 429 429 } 430 430 { 431 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/pl/firefox-141.0.3.tar.xz"; 431 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/pl/firefox-142.0.tar.xz"; 432 432 locale = "pl"; 433 433 arch = "linux-x86_64"; 434 - sha256 = "4e9b8f2a222f661db29476e24dd6a2ad3d44048a5fb8989791f7ce2ed9ad0a00"; 434 + sha256 = "51c0acceeee93f3125d64eaf3626be297da3ebe7997cd850056b13f4c161ee3f"; 435 435 } 436 436 { 437 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/pt-BR/firefox-141.0.3.tar.xz"; 437 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/pt-BR/firefox-142.0.tar.xz"; 438 438 locale = "pt-BR"; 439 439 arch = "linux-x86_64"; 440 - sha256 = "952a8006048609953750d844b946cceb64a3ce4d19c28a21c655573d686516f2"; 440 + sha256 = "46be026a9a453aa4d882652040a07f8fe0acacd8cf61e4967bb488c36e23b0e8"; 441 441 } 442 442 { 443 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/pt-PT/firefox-141.0.3.tar.xz"; 443 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/pt-PT/firefox-142.0.tar.xz"; 444 444 locale = "pt-PT"; 445 445 arch = "linux-x86_64"; 446 - sha256 = "e0222e499f2aaaf1bbde67024548acb01a5a801a2fa9cf20e6ead985b57bf008"; 446 + sha256 = "54a827e362ba0903077cfd4d331d3a3387a2b5e0b7ee04b9141963b872e44672"; 447 447 } 448 448 { 449 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/rm/firefox-141.0.3.tar.xz"; 449 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/rm/firefox-142.0.tar.xz"; 450 450 locale = "rm"; 451 451 arch = "linux-x86_64"; 452 - sha256 = "cc5a1b6315bb7a4c5e0ff2d5f1d7c016e2a04166be5e403a1245c2e94e5773f4"; 452 + sha256 = "8e365d64a7a9fbd2954e9ae366ebfbd4cd94f82b77a0c4af184911481d89f456"; 453 453 } 454 454 { 455 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/ro/firefox-141.0.3.tar.xz"; 455 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/ro/firefox-142.0.tar.xz"; 456 456 locale = "ro"; 457 457 arch = "linux-x86_64"; 458 - sha256 = "6186daea4314e9598123c5089c21cf16bd3a0a06daf202eb74b1fb82cc63c6d4"; 458 + sha256 = "ca780d538f0f96a269e3eb41cf0de0740ddd1602534f0a08ac0e34bf8b0b3284"; 459 459 } 460 460 { 461 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/ru/firefox-141.0.3.tar.xz"; 461 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/ru/firefox-142.0.tar.xz"; 462 462 locale = "ru"; 463 463 arch = "linux-x86_64"; 464 - sha256 = "e132dedfc3162525b55264dbf44cb0cbed144bbffc1f809543b4a6fc97b8a3cb"; 464 + sha256 = "105cbd709553de005c3f7828dd7b1e2c1320d8398462447fe408878c72a9312a"; 465 465 } 466 466 { 467 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/sat/firefox-141.0.3.tar.xz"; 467 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/sat/firefox-142.0.tar.xz"; 468 468 locale = "sat"; 469 469 arch = "linux-x86_64"; 470 - sha256 = "2ecdf78b2d37fcdaa446cd11e3b8dacf568636e53b21411d82a116435eec502c"; 470 + sha256 = "3850174c7b2f5ec333247c2694949e5eb554e0424a10ef2bdb21853f77d0d720"; 471 471 } 472 472 { 473 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/sc/firefox-141.0.3.tar.xz"; 473 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/sc/firefox-142.0.tar.xz"; 474 474 locale = "sc"; 475 475 arch = "linux-x86_64"; 476 - sha256 = "0d7c129a54df727e424985085aa9244db225b35834cc10db558a0777a78d3354"; 476 + sha256 = "b2090afa84c4449fb87e2f0c71720da55b209f43ebe4b4489d2e00724908de16"; 477 477 } 478 478 { 479 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/sco/firefox-141.0.3.tar.xz"; 479 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/sco/firefox-142.0.tar.xz"; 480 480 locale = "sco"; 481 481 arch = "linux-x86_64"; 482 - sha256 = "cbca9d3ee3b188d0cfe8fe22047c0b4e1c2a60d54c56e8a33f5b6d56a6ec4933"; 482 + sha256 = "e5c13cf87aee1e06723fc3766a2ff96772fd7dffcedda80a2ee52a69ac7c45f7"; 483 483 } 484 484 { 485 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/si/firefox-141.0.3.tar.xz"; 485 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/si/firefox-142.0.tar.xz"; 486 486 locale = "si"; 487 487 arch = "linux-x86_64"; 488 - sha256 = "65f2153b2e9d84aef26d32e5996549fe28352d5562f8e3b9c436f26267e71b3b"; 488 + sha256 = "6447693b7dca2ffb282073e6a0142be2eeb43b22c3ad70c23e1b77e137ddd153"; 489 489 } 490 490 { 491 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/sk/firefox-141.0.3.tar.xz"; 491 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/sk/firefox-142.0.tar.xz"; 492 492 locale = "sk"; 493 493 arch = "linux-x86_64"; 494 - sha256 = "31bdef610c0981dde69ff5fc6b52bc47c13959593732e43d9e9a023163dfdaac"; 494 + sha256 = "3bc2a3f3e5af935a48253ee3d318cd97a41fc0712ebfa9fc1d9790a868065da6"; 495 495 } 496 496 { 497 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/skr/firefox-141.0.3.tar.xz"; 497 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/skr/firefox-142.0.tar.xz"; 498 498 locale = "skr"; 499 499 arch = "linux-x86_64"; 500 - sha256 = "a2c8243c422bd59345c827bf21dbd547bc90d4a910d7a980b499ced6d1f7f4e8"; 500 + sha256 = "4b56fcc03f7101dd92f05021a9a0335ac4b6f3c800e4ccbec261b504243d1aec"; 501 501 } 502 502 { 503 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/sl/firefox-141.0.3.tar.xz"; 503 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/sl/firefox-142.0.tar.xz"; 504 504 locale = "sl"; 505 505 arch = "linux-x86_64"; 506 - sha256 = "39a7c3a9c39ca27d1f74c91820eb99bbbb343606c701c3bac262aa7f36f8aa91"; 506 + sha256 = "4ff34389bd3c41aed9e7fbc7eacdfeedba1cb2dd47a6e7683fb19a5356786cd7"; 507 507 } 508 508 { 509 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/son/firefox-141.0.3.tar.xz"; 509 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/son/firefox-142.0.tar.xz"; 510 510 locale = "son"; 511 511 arch = "linux-x86_64"; 512 - sha256 = "5d6e3a82abf8ab47a79d172346fcd2f0776eb03e241a48925249bbcb876ad95f"; 512 + sha256 = "74fb0405402e590c0d61b9c5088cb7cda1c2ef85463c3c971c17f189b5fbb8be"; 513 513 } 514 514 { 515 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/sq/firefox-141.0.3.tar.xz"; 515 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/sq/firefox-142.0.tar.xz"; 516 516 locale = "sq"; 517 517 arch = "linux-x86_64"; 518 - sha256 = "ef0d73a552521da111a7e5d656431e6ea41c9b5ea6a2588daf70511f2c9d7ed0"; 518 + sha256 = "0f64d1b9a1a5c2b1943281737f52fec1243b1d4608628e5c5d7dcbfbd498f72d"; 519 519 } 520 520 { 521 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/sr/firefox-141.0.3.tar.xz"; 521 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/sr/firefox-142.0.tar.xz"; 522 522 locale = "sr"; 523 523 arch = "linux-x86_64"; 524 - sha256 = "6b1b550a3264ac2a6f38a495483df69233da8b69359e95a994d69ec6fb34f207"; 524 + sha256 = "d9987ab490f232327d0aa43f02efa0912b66fff9b8c25171afcd7f4b50addc7f"; 525 525 } 526 526 { 527 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/sv-SE/firefox-141.0.3.tar.xz"; 527 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/sv-SE/firefox-142.0.tar.xz"; 528 528 locale = "sv-SE"; 529 529 arch = "linux-x86_64"; 530 - sha256 = "fca7ee95852ae2e035501cc6bb9bc5209c50aec1b99e04594885731c541c9ef7"; 530 + sha256 = "2a332785288057d97da6e35683538102c89009e4a0f513fde375bee5534b7ff2"; 531 531 } 532 532 { 533 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/szl/firefox-141.0.3.tar.xz"; 533 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/szl/firefox-142.0.tar.xz"; 534 534 locale = "szl"; 535 535 arch = "linux-x86_64"; 536 - sha256 = "c3c4786dd3e67fa218bde85acd35da7080a675ea1620b3e843e7d0078473d83c"; 536 + sha256 = "3ce788078efac5a9e9e2d71032f0a66e75e15b7917bcd1a94d1317aa3c2affab"; 537 537 } 538 538 { 539 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/ta/firefox-141.0.3.tar.xz"; 539 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/ta/firefox-142.0.tar.xz"; 540 540 locale = "ta"; 541 541 arch = "linux-x86_64"; 542 - sha256 = "a4ddd375e6eaea0dcbd780cdc3b3adffaa54c911cedcedd794f09b9f72dcb890"; 542 + sha256 = "3bee43ee483a17fb065b462fd913b5d5d805edacdbcb944954f4e99a093e43b6"; 543 543 } 544 544 { 545 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/te/firefox-141.0.3.tar.xz"; 545 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/te/firefox-142.0.tar.xz"; 546 546 locale = "te"; 547 547 arch = "linux-x86_64"; 548 - sha256 = "07dbf1ede2211fb3e40ea5b0d385f9db4fc3db9f6731cfeb2ee6879cd0e9f8a0"; 548 + sha256 = "2ad61bc631e07ab5c7ef9b52596f0b18dc314ef8eef78568e14a01de08ffd4fd"; 549 549 } 550 550 { 551 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/tg/firefox-141.0.3.tar.xz"; 551 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/tg/firefox-142.0.tar.xz"; 552 552 locale = "tg"; 553 553 arch = "linux-x86_64"; 554 - sha256 = "bb525b288b4675fee1bd4ae8ef9ef257f67d2aed6b7f55bad521554950dcea4e"; 554 + sha256 = "782eaeef612c200c1301e6850f659925fb2b24ff8a00f1f79160a62eb25a855d"; 555 555 } 556 556 { 557 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/th/firefox-141.0.3.tar.xz"; 557 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/th/firefox-142.0.tar.xz"; 558 558 locale = "th"; 559 559 arch = "linux-x86_64"; 560 - sha256 = "460dc2824d799ba7fc7962215dfbb64728cdcc1c9c4dbf37aed4f711193adf73"; 560 + sha256 = "912c0f1c6d1819597da3cb08c7c668db12051708bdadbd4539a1cc4f8a685b23"; 561 561 } 562 562 { 563 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/tl/firefox-141.0.3.tar.xz"; 563 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/tl/firefox-142.0.tar.xz"; 564 564 locale = "tl"; 565 565 arch = "linux-x86_64"; 566 - sha256 = "f17e55bf0f527f25636997a2994ef5015dbe2efe652da21bf8de0c9082166b61"; 566 + sha256 = "971d7da5f1f42afa3511249e46d687bb71518c4538460f08c7b5c7069bee2d12"; 567 567 } 568 568 { 569 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/tr/firefox-141.0.3.tar.xz"; 569 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/tr/firefox-142.0.tar.xz"; 570 570 locale = "tr"; 571 571 arch = "linux-x86_64"; 572 - sha256 = "b2cccbd810fbff42ef813eed3bf4fa0d79bc6fc5e7bd0be8d6f988b5ded2b04d"; 572 + sha256 = "a63e0c5667c45f039416e445bb289030aa349be7796d196d31d6900c19628559"; 573 573 } 574 574 { 575 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/trs/firefox-141.0.3.tar.xz"; 575 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/trs/firefox-142.0.tar.xz"; 576 576 locale = "trs"; 577 577 arch = "linux-x86_64"; 578 - sha256 = "7423e305071334bd4c3cdf0f042b282f69e69f77a251a27db788f6aa1143b87d"; 578 + sha256 = "ade9d7d1fabc7243e234e7569280b8aa31105a30cf029af889a73fbe990d236a"; 579 579 } 580 580 { 581 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/uk/firefox-141.0.3.tar.xz"; 581 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/uk/firefox-142.0.tar.xz"; 582 582 locale = "uk"; 583 583 arch = "linux-x86_64"; 584 - sha256 = "08b7faa09dd02b3cc0e18638c1c49334a002f681e0d568b33a8e77fb7df8ecc3"; 584 + sha256 = "8b0996b524fd6c1a1340a40fae0b5191017a644e9dc2568fad27c776c26010b5"; 585 585 } 586 586 { 587 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/ur/firefox-141.0.3.tar.xz"; 587 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/ur/firefox-142.0.tar.xz"; 588 588 locale = "ur"; 589 589 arch = "linux-x86_64"; 590 - sha256 = "e8df2fd0571ea3cfa0a2a214fb0aecc2dc0501dbf34f697ec2405a0d34ad0856"; 590 + sha256 = "9c5182b9b50c628f013fed8c41c386604b94387f6ac1f15fa15aff9b9ddb7683"; 591 591 } 592 592 { 593 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/uz/firefox-141.0.3.tar.xz"; 593 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/uz/firefox-142.0.tar.xz"; 594 594 locale = "uz"; 595 595 arch = "linux-x86_64"; 596 - sha256 = "43b31557610d0b1906a765f7ae5b9b6e10acd1080f3be5624b2f655bad5cea85"; 596 + sha256 = "327575842eeb0dea826665fc48bc60e397b44a9178cd9e9eb86cd64fc5581fbf"; 597 597 } 598 598 { 599 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/vi/firefox-141.0.3.tar.xz"; 599 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/vi/firefox-142.0.tar.xz"; 600 600 locale = "vi"; 601 601 arch = "linux-x86_64"; 602 - sha256 = "ec6b0ce219d1c8d484388bd4579c0cf38be2cf5384e02613412123e18f44f3cc"; 602 + sha256 = "31560864ac90a9c608add4e919a00d64a985a479a9064660003d22946eeb926b"; 603 603 } 604 604 { 605 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/xh/firefox-141.0.3.tar.xz"; 605 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/xh/firefox-142.0.tar.xz"; 606 606 locale = "xh"; 607 607 arch = "linux-x86_64"; 608 - sha256 = "207a37f147b854c9a3ffd23df767b428a2f4ad1d9bb8de542ba56a0569293463"; 608 + sha256 = "78d7ef260cec395b672c65e71861df41935fa6c9184d8506e884b70a480a4e0a"; 609 609 } 610 610 { 611 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/zh-CN/firefox-141.0.3.tar.xz"; 611 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/zh-CN/firefox-142.0.tar.xz"; 612 612 locale = "zh-CN"; 613 613 arch = "linux-x86_64"; 614 - sha256 = "c77dea8cec09985661c8b4270cffad80f315ac8fd31daf657a83485a48d9f48e"; 614 + sha256 = "8601948f17218d68119a858a5552cedf28b8fc3e65514f8ef944480c8b2e1798"; 615 615 } 616 616 { 617 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-x86_64/zh-TW/firefox-141.0.3.tar.xz"; 617 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/zh-TW/firefox-142.0.tar.xz"; 618 618 locale = "zh-TW"; 619 619 arch = "linux-x86_64"; 620 - sha256 = "e68a2e2440c11c1c432a0cd3fa39c4a1e35283d15939e48aed3537d740019760"; 620 + sha256 = "214c61f3bc9852d3715f16788a7b976dada4fcdbbd359b186baf1ab0dd29ea83"; 621 621 } 622 622 { 623 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/ach/firefox-141.0.3.tar.xz"; 623 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/ach/firefox-142.0.tar.xz"; 624 624 locale = "ach"; 625 625 arch = "linux-i686"; 626 - sha256 = "430afe73bec379064f9991b94c7601ce1a215abe9e77d0d3d3693393e59411c2"; 626 + sha256 = "fc4a7fea82160141623769017acf7e82925bdf6191987b186cc60ad486eb94e2"; 627 627 } 628 628 { 629 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/af/firefox-141.0.3.tar.xz"; 629 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/af/firefox-142.0.tar.xz"; 630 630 locale = "af"; 631 631 arch = "linux-i686"; 632 - sha256 = "b1e4a9da21efb4dc1209c6dc3bf02697c529b359d20d38a0df7c0273499d8c32"; 632 + sha256 = "7748555d74c20e192648ac775433c283ca46f904bef896aaf1ef93a34c95cd04"; 633 633 } 634 634 { 635 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/an/firefox-141.0.3.tar.xz"; 635 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/an/firefox-142.0.tar.xz"; 636 636 locale = "an"; 637 637 arch = "linux-i686"; 638 - sha256 = "3d89974b36c94100b286ae574b3009924ac6c2d5ded3785c1b1d777a01436641"; 638 + sha256 = "f1a9e9ec99ef78884d0b6b3a85f3485f425931286d26679a54f17010719d530c"; 639 639 } 640 640 { 641 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/ar/firefox-141.0.3.tar.xz"; 641 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/ar/firefox-142.0.tar.xz"; 642 642 locale = "ar"; 643 643 arch = "linux-i686"; 644 - sha256 = "35d29bb4f36b5ea18478db7a3d1682c04258d660dc86681f81e5e54922395863"; 644 + sha256 = "7e837f06373faa7d4a39d434fd65e2e17d8f998b6e78fb4e7243898183c91c8a"; 645 645 } 646 646 { 647 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/ast/firefox-141.0.3.tar.xz"; 647 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/ast/firefox-142.0.tar.xz"; 648 648 locale = "ast"; 649 649 arch = "linux-i686"; 650 - sha256 = "54826a2feccbad02eb5ef4d6a7c9693fa808d7208eba65ba0ebc45044142d597"; 650 + sha256 = "106be6d64518e25efa5961d15c7c619f5418ef664cd2fe7c97ff6d5fe5bcfc75"; 651 651 } 652 652 { 653 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/az/firefox-141.0.3.tar.xz"; 653 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/az/firefox-142.0.tar.xz"; 654 654 locale = "az"; 655 655 arch = "linux-i686"; 656 - sha256 = "c5b2083cd46261cebfb95f25bf73c06372e82efa0ea311211d6bf5f0b07ee279"; 656 + sha256 = "54da322dd08e297a3497bdb8048e5ec6fe244da4857462ec5ee5eb302340b332"; 657 657 } 658 658 { 659 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/be/firefox-141.0.3.tar.xz"; 659 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/be/firefox-142.0.tar.xz"; 660 660 locale = "be"; 661 661 arch = "linux-i686"; 662 - sha256 = "2d94ffa8fb7220859a320bd4032434e925fdd778184f52872f56526bcbdda6a1"; 662 + sha256 = "4bcdc953af64da3fb09654e4795e657232c38742d6200cf3d4f5fa77fd9fc59e"; 663 663 } 664 664 { 665 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/bg/firefox-141.0.3.tar.xz"; 665 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/bg/firefox-142.0.tar.xz"; 666 666 locale = "bg"; 667 667 arch = "linux-i686"; 668 - sha256 = "cb61e1c0a88f92f11c4bd1b811a6b39a319ce95816ebe58c4e662ee50ff186cd"; 668 + sha256 = "eb78a42254ac0b191e8ddcf40d2dffd523f93c4706aaff94a8fd63dd6ebdd365"; 669 669 } 670 670 { 671 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/bn/firefox-141.0.3.tar.xz"; 671 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/bn/firefox-142.0.tar.xz"; 672 672 locale = "bn"; 673 673 arch = "linux-i686"; 674 - sha256 = "029258a2a00b56c556750b569e3884b860e8b038f38727472f4cea91a43863ff"; 674 + sha256 = "9ed4b5005902e01475a749e50c42d2afe0f21398287ba6d49c57959e4cb02ccb"; 675 675 } 676 676 { 677 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/br/firefox-141.0.3.tar.xz"; 677 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/br/firefox-142.0.tar.xz"; 678 678 locale = "br"; 679 679 arch = "linux-i686"; 680 - sha256 = "1281010d16e1834487155bea138ca826b7dbfcb541252306b1984f995e449060"; 680 + sha256 = "6117a291d5c55068112baeb44c4698a8f32f78bce304da56eb102abe5272fe36"; 681 681 } 682 682 { 683 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/bs/firefox-141.0.3.tar.xz"; 683 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/bs/firefox-142.0.tar.xz"; 684 684 locale = "bs"; 685 685 arch = "linux-i686"; 686 - sha256 = "04b4ea9e36665de7fbb57652756703431d893e568a9e56a7482273cc436cec32"; 686 + sha256 = "dd9860fa8d705471e1000ff12924a9469702b4e1e0372f2a3ab0705ff36920d0"; 687 687 } 688 688 { 689 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/ca-valencia/firefox-141.0.3.tar.xz"; 689 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/ca-valencia/firefox-142.0.tar.xz"; 690 690 locale = "ca-valencia"; 691 691 arch = "linux-i686"; 692 - sha256 = "8c83bc9b8983529f9e623fef98003848ccb15844530c95cd5f852be3eb87e307"; 692 + sha256 = "8a7ecd6ff52a20c3432a78666ed44a1981791d344e63973f4d09adedefd3a40e"; 693 693 } 694 694 { 695 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/ca/firefox-141.0.3.tar.xz"; 695 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/ca/firefox-142.0.tar.xz"; 696 696 locale = "ca"; 697 697 arch = "linux-i686"; 698 - sha256 = "41de6dca478d45cf7fbb192e5c86be1589cfd817ed0b59ac5e8225906f5cede5"; 698 + sha256 = "9b226ef2047ea2a8674534d54200027b5bf74bc3107625cd3378c2693b0cc7f9"; 699 699 } 700 700 { 701 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/cak/firefox-141.0.3.tar.xz"; 701 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/cak/firefox-142.0.tar.xz"; 702 702 locale = "cak"; 703 703 arch = "linux-i686"; 704 - sha256 = "0dd7eb6969df8388a1a5ef09eefd3fa38854a46bfdfa0c61a7e499a84f335af2"; 704 + sha256 = "d1161e746acb0ad0c89eb0670c52763601dd262e4f86f6200f7f051ac50e5bc7"; 705 705 } 706 706 { 707 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/cs/firefox-141.0.3.tar.xz"; 707 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/cs/firefox-142.0.tar.xz"; 708 708 locale = "cs"; 709 709 arch = "linux-i686"; 710 - sha256 = "c50b643127c85aed97d9ba2336df8003d7b2a209986b76cbaa42a2caefbb9c8b"; 710 + sha256 = "6418275502ac82476a71f0f5912a4a24f7990831d8c148e0b40f4382b8780c3b"; 711 711 } 712 712 { 713 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/cy/firefox-141.0.3.tar.xz"; 713 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/cy/firefox-142.0.tar.xz"; 714 714 locale = "cy"; 715 715 arch = "linux-i686"; 716 - sha256 = "27b32566217af2553eff27d770fee2a7cffae0b9c1b482d1adba9874653572ad"; 716 + sha256 = "5de9311ad00230b6a22b1944202d59b7e68fdf133e9eef909bb59f19e4e965b5"; 717 717 } 718 718 { 719 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/da/firefox-141.0.3.tar.xz"; 719 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/da/firefox-142.0.tar.xz"; 720 720 locale = "da"; 721 721 arch = "linux-i686"; 722 - sha256 = "ad9dcdb91517b93e8f14bdb4da9d716c5015fc7f7b3ba4fe89b28bd768907eea"; 722 + sha256 = "652f0a30f840e64b22f6e2d8e127a814cf4c18180480cb0060c01db3ad3782a9"; 723 723 } 724 724 { 725 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/de/firefox-141.0.3.tar.xz"; 725 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/de/firefox-142.0.tar.xz"; 726 726 locale = "de"; 727 727 arch = "linux-i686"; 728 - sha256 = "d2c586a4beb4d36571bbb24956835257a94f6f7b817b5199b96e05bba4642bfa"; 728 + sha256 = "8adf8e26555e92f87f858e0678428c873de00dabdceff1036b2a07f6f26677db"; 729 729 } 730 730 { 731 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/dsb/firefox-141.0.3.tar.xz"; 731 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/dsb/firefox-142.0.tar.xz"; 732 732 locale = "dsb"; 733 733 arch = "linux-i686"; 734 - sha256 = "3dc3de3d15a0396b29d79221f7c657c511da50b1c52fbf5d0d395af68c219793"; 734 + sha256 = "3c9f1cb357b7f46781c56ef5958f449f2219aace47dfe506a432bebc97ed4725"; 735 735 } 736 736 { 737 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/el/firefox-141.0.3.tar.xz"; 737 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/el/firefox-142.0.tar.xz"; 738 738 locale = "el"; 739 739 arch = "linux-i686"; 740 - sha256 = "fa100a3b13faea853813d9f932dd0d235c94d70bd3532354b0f51df6bcc63855"; 740 + sha256 = "2ff6550045c8afaddd9b37e67dd847dd02619f899018ff2a1419e38cd02107aa"; 741 741 } 742 742 { 743 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/en-CA/firefox-141.0.3.tar.xz"; 743 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/en-CA/firefox-142.0.tar.xz"; 744 744 locale = "en-CA"; 745 745 arch = "linux-i686"; 746 - sha256 = "6ac6abda7b0f89daa5cd995f2d8cc12ee4356030cab564f5edd900ae01b0235f"; 746 + sha256 = "2db9da4480f9aaf00fc85cea135416dc361667beeb31568d533e8bc54a4d90b6"; 747 747 } 748 748 { 749 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/en-GB/firefox-141.0.3.tar.xz"; 749 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/en-GB/firefox-142.0.tar.xz"; 750 750 locale = "en-GB"; 751 751 arch = "linux-i686"; 752 - sha256 = "519cdd6f0b84d50e0c76bce2529ffa482fede20198f5e20f7ec738322759c086"; 752 + sha256 = "be6171cf13c7bb6a7b25bd393b995edef97f1141ab272cff1f5d9c630c4815cb"; 753 753 } 754 754 { 755 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/en-US/firefox-141.0.3.tar.xz"; 755 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/en-US/firefox-142.0.tar.xz"; 756 756 locale = "en-US"; 757 757 arch = "linux-i686"; 758 - sha256 = "c25a2bccaf4834fffc9373a56b4325adbd2de93a3e16be148714e98b060ffb47"; 758 + sha256 = "35802f3583480eb1712169ccfa2d5071fa3c5cfbd67c99c61be2bda30724d001"; 759 759 } 760 760 { 761 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/eo/firefox-141.0.3.tar.xz"; 761 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/eo/firefox-142.0.tar.xz"; 762 762 locale = "eo"; 763 763 arch = "linux-i686"; 764 - sha256 = "3563a0f51f26ca176f4768a8371f072f00d1e9d4541a05ad548cdc59020da081"; 764 + sha256 = "69769f26fcf1cac74a7895182d3a6df80304d7617a73d639822a8c4b44012674"; 765 765 } 766 766 { 767 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/es-AR/firefox-141.0.3.tar.xz"; 767 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/es-AR/firefox-142.0.tar.xz"; 768 768 locale = "es-AR"; 769 769 arch = "linux-i686"; 770 - sha256 = "b178b3c9b82918ef2a60e71034a5e2ebd8f02837e8644760398b13f5ad3ddce7"; 770 + sha256 = "647f3dca1c6471bdd2c6464ab0821e9e56e5576e728df6d27e081cbe82025a44"; 771 771 } 772 772 { 773 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/es-CL/firefox-141.0.3.tar.xz"; 773 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/es-CL/firefox-142.0.tar.xz"; 774 774 locale = "es-CL"; 775 775 arch = "linux-i686"; 776 - sha256 = "a75d85a4ce1688db409ff5715fb7de3fd976599bef192ed9b4601a63d1eb1329"; 776 + sha256 = "ec92d03b9f12210e51fb25d414d28bcd397a9caa9f39db6108b5bf90bd263ac7"; 777 777 } 778 778 { 779 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/es-ES/firefox-141.0.3.tar.xz"; 779 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/es-ES/firefox-142.0.tar.xz"; 780 780 locale = "es-ES"; 781 781 arch = "linux-i686"; 782 - sha256 = "b580f83418fb8938d6aee9f7513fb79e12570789deab418e43d6ad40bd43cee6"; 782 + sha256 = "a0c22bc77e897cead51543556324d0b0312c9761633febb93050e9f654b27247"; 783 783 } 784 784 { 785 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/es-MX/firefox-141.0.3.tar.xz"; 785 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/es-MX/firefox-142.0.tar.xz"; 786 786 locale = "es-MX"; 787 787 arch = "linux-i686"; 788 - sha256 = "eacf0db15e324426bc68ab12a3699c2a1f3bb354523fc7ae4975989786bb29dd"; 788 + sha256 = "821293fa7b3bd2c72dab6a0eb52362dec18be7e572be8116a634c4519afca071"; 789 789 } 790 790 { 791 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/et/firefox-141.0.3.tar.xz"; 791 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/et/firefox-142.0.tar.xz"; 792 792 locale = "et"; 793 793 arch = "linux-i686"; 794 - sha256 = "0126372b0ca3d832130ea86749ec97996350539c0ab9121f0356b3290e71ee9f"; 794 + sha256 = "4f94f792135e22d9af305a3b38cd610e72cc94f53bb2a1ec95705b2a758574a7"; 795 795 } 796 796 { 797 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/eu/firefox-141.0.3.tar.xz"; 797 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/eu/firefox-142.0.tar.xz"; 798 798 locale = "eu"; 799 799 arch = "linux-i686"; 800 - sha256 = "e00604f526da6689248506b2e815c18a4867d08f944367d90d22ce82f2e3433f"; 800 + sha256 = "a8db4e2ea27b589779daa1638b647ec0f5e8414ff72cb36ec50ec026df2d6780"; 801 801 } 802 802 { 803 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/fa/firefox-141.0.3.tar.xz"; 803 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/fa/firefox-142.0.tar.xz"; 804 804 locale = "fa"; 805 805 arch = "linux-i686"; 806 - sha256 = "8537bd4650e8856a2b45f87cbd984a3d3612c9cc0863d7664a0d64121515929a"; 806 + sha256 = "0a5e806d9851a7b4495a038588d644d789c616d5435f58e48294aca62210de00"; 807 807 } 808 808 { 809 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/ff/firefox-141.0.3.tar.xz"; 809 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/ff/firefox-142.0.tar.xz"; 810 810 locale = "ff"; 811 811 arch = "linux-i686"; 812 - sha256 = "a923380c701d00297a667aeb9f050fb93c650fa5d855a73b98af141eb5ce7061"; 812 + sha256 = "261fe54cdb117c324e312aa3f55e5788b2eb879d1c23b7f6935652b2f9a5f039"; 813 813 } 814 814 { 815 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/fi/firefox-141.0.3.tar.xz"; 815 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/fi/firefox-142.0.tar.xz"; 816 816 locale = "fi"; 817 817 arch = "linux-i686"; 818 - sha256 = "4f457ec29c0e4fd17efa639688f2c07deb648e3a3cda70ad888b05791e5d24bf"; 818 + sha256 = "bdc0a6e82ae82c2299305438638146c315d9df02af9170acd4bd84c3020d5385"; 819 819 } 820 820 { 821 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/fr/firefox-141.0.3.tar.xz"; 821 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/fr/firefox-142.0.tar.xz"; 822 822 locale = "fr"; 823 823 arch = "linux-i686"; 824 - sha256 = "88d55afcc9f798114aba4cd4dc704e30223253f057f1ffbdd13f4901818b2851"; 824 + sha256 = "bf9c258b2760f3e0b8b3ba83456ff3687a8e1bb82b9ecc47a652a80c45593221"; 825 825 } 826 826 { 827 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/fur/firefox-141.0.3.tar.xz"; 827 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/fur/firefox-142.0.tar.xz"; 828 828 locale = "fur"; 829 829 arch = "linux-i686"; 830 - sha256 = "f4d87d8d5a6200ba7edd3896f5b36e1eb51f97d155347cddd30c6438e5469655"; 830 + sha256 = "7f6265f93b325d3899104e8edd211ab4e51d83696576fed98edfae6accd73928"; 831 831 } 832 832 { 833 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/fy-NL/firefox-141.0.3.tar.xz"; 833 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/fy-NL/firefox-142.0.tar.xz"; 834 834 locale = "fy-NL"; 835 835 arch = "linux-i686"; 836 - sha256 = "70a871dbe5dd29906d0d319f27612ae869329a878e281881026536c4f64718d4"; 836 + sha256 = "ce94c4ee325b5195fbc9a867bbd01900518d678af12933e32acbd4896fe022d8"; 837 837 } 838 838 { 839 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/ga-IE/firefox-141.0.3.tar.xz"; 839 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/ga-IE/firefox-142.0.tar.xz"; 840 840 locale = "ga-IE"; 841 841 arch = "linux-i686"; 842 - sha256 = "4690f593af76a7c6be8c7ea146fdfbf64545aa2a4c641bde6e4dc45eece202da"; 842 + sha256 = "af635a399e0fef6fbb523926104f46a512b49d11e25dfbec6d0e92bb50f9a701"; 843 843 } 844 844 { 845 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/gd/firefox-141.0.3.tar.xz"; 845 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/gd/firefox-142.0.tar.xz"; 846 846 locale = "gd"; 847 847 arch = "linux-i686"; 848 - sha256 = "bc1e3e34ce83f4e71f49c0e33e85f2145dba4bc3f8210bc1ab839d6e7a377b56"; 848 + sha256 = "d6b292b7588403c0c636a2ff47b2e75dd5ad2a4bc9d93dd74c5ed4d8d21837a3"; 849 849 } 850 850 { 851 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/gl/firefox-141.0.3.tar.xz"; 851 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/gl/firefox-142.0.tar.xz"; 852 852 locale = "gl"; 853 853 arch = "linux-i686"; 854 - sha256 = "b154b62ee61194f46585cda915853d47c12aee25645d50417d171fa2e9601a19"; 854 + sha256 = "7a59997b9ce011c63a6736123decd47e74da6a145fd141731b06063c56beabd6"; 855 855 } 856 856 { 857 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/gn/firefox-141.0.3.tar.xz"; 857 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/gn/firefox-142.0.tar.xz"; 858 858 locale = "gn"; 859 859 arch = "linux-i686"; 860 - sha256 = "6ab50dc644867074e308710706bad29f824702da4ef1ecaf72a6e75ec4fcb7c7"; 860 + sha256 = "89213a797f9089e8da9d4ab33122e6c0ba3943f2a96bbb3d04e5f5a44cdbb5ea"; 861 861 } 862 862 { 863 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/gu-IN/firefox-141.0.3.tar.xz"; 863 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/gu-IN/firefox-142.0.tar.xz"; 864 864 locale = "gu-IN"; 865 865 arch = "linux-i686"; 866 - sha256 = "68ee4b47d52a6412bfc5c0fbba871368fb6ea1d32020609e4fbb41c52f9d03c9"; 866 + sha256 = "71286d2324657e3525540d16b9f93be7da415a047ab6ea7aa28e7fb2cbcdf69c"; 867 867 } 868 868 { 869 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/he/firefox-141.0.3.tar.xz"; 869 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/he/firefox-142.0.tar.xz"; 870 870 locale = "he"; 871 871 arch = "linux-i686"; 872 - sha256 = "c2a8e6896a9a0255a554a80ce574846e3b52a100a718610e17b29b6a2173d104"; 872 + sha256 = "5c13f77fa08e5078bbac374f586fbe49618436aa640d4dc5b07d054b65dc7e04"; 873 873 } 874 874 { 875 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/hi-IN/firefox-141.0.3.tar.xz"; 875 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/hi-IN/firefox-142.0.tar.xz"; 876 876 locale = "hi-IN"; 877 877 arch = "linux-i686"; 878 - sha256 = "9d7dd9aa634163cdcd137639aa62ab4d8762d52f9de2fd767e53ae395bbeabc8"; 878 + sha256 = "c2b3fa2f57abf0054eb3adadb2d41c29d299b1ed65711f9e7899e52c4fd8ac2c"; 879 879 } 880 880 { 881 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/hr/firefox-141.0.3.tar.xz"; 881 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/hr/firefox-142.0.tar.xz"; 882 882 locale = "hr"; 883 883 arch = "linux-i686"; 884 - sha256 = "1af3da92a14d37503be94b758663165f5581d9aedece04662bdc7dcc7bdd7ff6"; 884 + sha256 = "0fba59df56417aaf66d03a4c7ef0af8aec41a45d015799aaffafd81407d55299"; 885 885 } 886 886 { 887 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/hsb/firefox-141.0.3.tar.xz"; 887 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/hsb/firefox-142.0.tar.xz"; 888 888 locale = "hsb"; 889 889 arch = "linux-i686"; 890 - sha256 = "64b6bb6f9a79cff6ac16a274245440d554867f8e147dbc9bd780af671e92774a"; 890 + sha256 = "9b95e9dd3cb71651721246a04ef6410755787f1ca43efae61719f9a0d0dc6465"; 891 891 } 892 892 { 893 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/hu/firefox-141.0.3.tar.xz"; 893 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/hu/firefox-142.0.tar.xz"; 894 894 locale = "hu"; 895 895 arch = "linux-i686"; 896 - sha256 = "332b5049a77a2fda85677df4c21c9d785fd09df53e2975c8d501fa401dd8fa6d"; 896 + sha256 = "942c3e6d5eb3f7a33a2ddb9af33a744de5d70f7afafe6cefa78f7a50c8cbc365"; 897 897 } 898 898 { 899 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/hy-AM/firefox-141.0.3.tar.xz"; 899 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/hy-AM/firefox-142.0.tar.xz"; 900 900 locale = "hy-AM"; 901 901 arch = "linux-i686"; 902 - sha256 = "6510f66985d4ca96960a64dd56808a3f0b6d655c93cf9b7ca5d925ff3cf6c5ce"; 902 + sha256 = "c21f44ce2dc0da7b1484e665ad38b7c128ecbe1edacd68ffb66be46c437bee1f"; 903 903 } 904 904 { 905 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/ia/firefox-141.0.3.tar.xz"; 905 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/ia/firefox-142.0.tar.xz"; 906 906 locale = "ia"; 907 907 arch = "linux-i686"; 908 - sha256 = "616f6855964f20c760d5c88ae375641769fd9f3c1819499de0557285d05245f1"; 908 + sha256 = "1e40421df269eb65028eb86a114263d67d9479a7e0011b89771871c312d8f474"; 909 909 } 910 910 { 911 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/id/firefox-141.0.3.tar.xz"; 911 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/id/firefox-142.0.tar.xz"; 912 912 locale = "id"; 913 913 arch = "linux-i686"; 914 - sha256 = "2148705494600dfb0a054b84a108294dadd80b792b4bc066ea6b9a6fdec85ed8"; 914 + sha256 = "8bc79f1a52c4dc376c1b48e1c209ace4568747c1ae7e02a6ea970d1d45f12d91"; 915 915 } 916 916 { 917 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/is/firefox-141.0.3.tar.xz"; 917 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/is/firefox-142.0.tar.xz"; 918 918 locale = "is"; 919 919 arch = "linux-i686"; 920 - sha256 = "f5b0bf1b5abde821bf2d351aea172fbd70d03ea8f0108c8b4848a9c72ff74f69"; 920 + sha256 = "cc07b35e75e0fd84a9eedde937ea4f1589429f1519dcd16036ef526d99aa4e94"; 921 921 } 922 922 { 923 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/it/firefox-141.0.3.tar.xz"; 923 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/it/firefox-142.0.tar.xz"; 924 924 locale = "it"; 925 925 arch = "linux-i686"; 926 - sha256 = "c68e6398ecf2340b9516089feb915a55401a23a1d4138895d44641aad1091ad5"; 926 + sha256 = "a7bcd566f3266e3d4f0d67b68ec781487edfb9816bf7d7a3f3957ff250d53792"; 927 927 } 928 928 { 929 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/ja/firefox-141.0.3.tar.xz"; 929 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/ja/firefox-142.0.tar.xz"; 930 930 locale = "ja"; 931 931 arch = "linux-i686"; 932 - sha256 = "279d36dc35f593b9c68c46340a20b97b70bae6d3494b7d5ee96a113a7722e27c"; 932 + sha256 = "9e757db38e70f46b3393e9f2a9d499def057e0a87ea94d2480e70ad887b8da57"; 933 933 } 934 934 { 935 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/ka/firefox-141.0.3.tar.xz"; 935 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/ka/firefox-142.0.tar.xz"; 936 936 locale = "ka"; 937 937 arch = "linux-i686"; 938 - sha256 = "4486869af0c7f5914cebac5f2a74367d9f004a5e0fdc8e6873401c7c0ef4499f"; 938 + sha256 = "63505998a10b74c7e089e67e1250c5234f0434617604637f2be5c593b85a5ce0"; 939 939 } 940 940 { 941 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/kab/firefox-141.0.3.tar.xz"; 941 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/kab/firefox-142.0.tar.xz"; 942 942 locale = "kab"; 943 943 arch = "linux-i686"; 944 - sha256 = "e1e3a336cfcd28c0f5c1397f30518c05faa32c0dbe0876a99e531a8bfa5b6aec"; 944 + sha256 = "64a59aa70cff48617dfb7acfe21ddb812f16a563beffe1af22dcf118ae58f6d0"; 945 945 } 946 946 { 947 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/kk/firefox-141.0.3.tar.xz"; 947 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/kk/firefox-142.0.tar.xz"; 948 948 locale = "kk"; 949 949 arch = "linux-i686"; 950 - sha256 = "27da62cc3e408b942c0927267777b7e2d1be0ca574cca7f17337e8c688e7026e"; 950 + sha256 = "5399b8052f93b456382a64cdbe93526e1d1de1971f58da7b29d2b40bc9f48afb"; 951 951 } 952 952 { 953 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/km/firefox-141.0.3.tar.xz"; 953 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/km/firefox-142.0.tar.xz"; 954 954 locale = "km"; 955 955 arch = "linux-i686"; 956 - sha256 = "8db765bb108f2038dacc7aee071903b1ffb910c4b10aad87bec6013db7ef4355"; 956 + sha256 = "0652ac26570ab69d0398e12764bdeb67053f199c88afd1c1c8cb7eb76ed2ce71"; 957 957 } 958 958 { 959 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/kn/firefox-141.0.3.tar.xz"; 959 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/kn/firefox-142.0.tar.xz"; 960 960 locale = "kn"; 961 961 arch = "linux-i686"; 962 - sha256 = "cc44ac2dfad32c45d848323f5054870ca637cd909145716d32b58ca95a396d18"; 962 + sha256 = "48f5478cce2a00395e98400862b78b72f3bd8b6a58c14620b2c5e2b18e5d82dd"; 963 963 } 964 964 { 965 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/ko/firefox-141.0.3.tar.xz"; 965 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/ko/firefox-142.0.tar.xz"; 966 966 locale = "ko"; 967 967 arch = "linux-i686"; 968 - sha256 = "058c043c7414f3ec6fa71d2fc62a894b0261eb9b922b3a201e4bcfecb4614214"; 968 + sha256 = "e5291cdc1f708828add197c76f2c7d80e331bcb09d55822c2554264eb7545a79"; 969 969 } 970 970 { 971 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/lij/firefox-141.0.3.tar.xz"; 971 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/lij/firefox-142.0.tar.xz"; 972 972 locale = "lij"; 973 973 arch = "linux-i686"; 974 - sha256 = "7534342ba4d7b8698c3a1b337dbaabf287fd6bb015ac3ca49e2710a1b9178f27"; 974 + sha256 = "1b52beca4930c15fc4807a808c5b65b6c13cc72128756e8b8bf97f50980d1c26"; 975 975 } 976 976 { 977 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/lt/firefox-141.0.3.tar.xz"; 977 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/lt/firefox-142.0.tar.xz"; 978 978 locale = "lt"; 979 979 arch = "linux-i686"; 980 - sha256 = "8905db0bf688308e7ab00947a02fbd4d8e635819ffb47074e8f1ab88bd97a7cc"; 980 + sha256 = "beaf21a8b9d287a3ea8a4206d28ec9b4e02ddfc3ff2520948158386374687058"; 981 981 } 982 982 { 983 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/lv/firefox-141.0.3.tar.xz"; 983 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/lv/firefox-142.0.tar.xz"; 984 984 locale = "lv"; 985 985 arch = "linux-i686"; 986 - sha256 = "e30336009649d3b6245b902b3991de1a8c051ef8cbbf59c032e3870f55891e2a"; 986 + sha256 = "3db45120dd104017b53cf6cc6b2c271a3bc92a0029c365c23e5053c9a1c58302"; 987 987 } 988 988 { 989 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/mk/firefox-141.0.3.tar.xz"; 989 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/mk/firefox-142.0.tar.xz"; 990 990 locale = "mk"; 991 991 arch = "linux-i686"; 992 - sha256 = "e987c8a0a465bcd0a8a44c60b6099456ca33fa2bda45c91d5d7bd5ec89b0b5fb"; 992 + sha256 = "3cf2d3bbfe82b6cf710255b33c5fbaebae3c9580f6c9508ec3aa9285b5da0176"; 993 993 } 994 994 { 995 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/mr/firefox-141.0.3.tar.xz"; 995 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/mr/firefox-142.0.tar.xz"; 996 996 locale = "mr"; 997 997 arch = "linux-i686"; 998 - sha256 = "deca7494d6d5be56c4d4552815ce6cfa2827ca36d71994eb41277bdc4e6d1da8"; 998 + sha256 = "a3ad66e409cdf21c091c96383480e4871973b7749e3c2e454d3f9680daca3921"; 999 999 } 1000 1000 { 1001 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/ms/firefox-141.0.3.tar.xz"; 1001 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/ms/firefox-142.0.tar.xz"; 1002 1002 locale = "ms"; 1003 1003 arch = "linux-i686"; 1004 - sha256 = "ee8f4bc73f5f15a794e827b8eaed14d4d7b1d80572dcef1a1b34dd123495e8fe"; 1004 + sha256 = "c60c8bc1638e2d57dd2554356a22a2b040a6c5e16433134f2c165a12a55396e6"; 1005 1005 } 1006 1006 { 1007 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/my/firefox-141.0.3.tar.xz"; 1007 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/my/firefox-142.0.tar.xz"; 1008 1008 locale = "my"; 1009 1009 arch = "linux-i686"; 1010 - sha256 = "3d22a28e3b532aca6003f308c16066c9f5c65a9ef1879139cc768b4aabfaa58a"; 1010 + sha256 = "cd84aa70b2d837e16a941ac7ac6cf9c9c7c0308289e1fd028ad40e360dcf7a90"; 1011 1011 } 1012 1012 { 1013 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/nb-NO/firefox-141.0.3.tar.xz"; 1013 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/nb-NO/firefox-142.0.tar.xz"; 1014 1014 locale = "nb-NO"; 1015 1015 arch = "linux-i686"; 1016 - sha256 = "029fc76180e5fae9269823b9e1d1b4e93811a786d3e03234e916724e61c29758"; 1016 + sha256 = "42d5bb3c134dae5e2f824557af1817af9c9dabbfef6c4ebf1eddacf94080cab0"; 1017 1017 } 1018 1018 { 1019 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/ne-NP/firefox-141.0.3.tar.xz"; 1019 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/ne-NP/firefox-142.0.tar.xz"; 1020 1020 locale = "ne-NP"; 1021 1021 arch = "linux-i686"; 1022 - sha256 = "70ce7680d3ae733bc7126175051637171b95b213419ac77b946463f5808e7bbf"; 1022 + sha256 = "2ce380f9a93ddd55e57245393dde616b38a7fd4e42165f577f0f83977db1fdf1"; 1023 1023 } 1024 1024 { 1025 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/nl/firefox-141.0.3.tar.xz"; 1025 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/nl/firefox-142.0.tar.xz"; 1026 1026 locale = "nl"; 1027 1027 arch = "linux-i686"; 1028 - sha256 = "9f351f5accac0fa2f0d1629634a3637021e17e43077cd72cb934164d28ae4bba"; 1028 + sha256 = "cf327dee63c04402691040005e4e8ae1fe2b90c5f60a281b92b215a37427a09b"; 1029 1029 } 1030 1030 { 1031 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/nn-NO/firefox-141.0.3.tar.xz"; 1031 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/nn-NO/firefox-142.0.tar.xz"; 1032 1032 locale = "nn-NO"; 1033 1033 arch = "linux-i686"; 1034 - sha256 = "291eeed795bc674079b84603af989a80874903f25fe5fb4e3dbe662a60be7cbc"; 1034 + sha256 = "73b165475870e1ad96fe35aaed7de089306d7c50fe5a5f9f14e5a48e253f30a6"; 1035 1035 } 1036 1036 { 1037 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/oc/firefox-141.0.3.tar.xz"; 1037 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/oc/firefox-142.0.tar.xz"; 1038 1038 locale = "oc"; 1039 1039 arch = "linux-i686"; 1040 - sha256 = "4d5a5f4a284596c6e3f2a379edbae1ee13dee348765dbc4dcbac0ac4393855d5"; 1040 + sha256 = "9d168ef2cd974d1432ce0e75ac6fe4a6b7dfe4a6bded8621228d4a8221adc1d1"; 1041 1041 } 1042 1042 { 1043 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/pa-IN/firefox-141.0.3.tar.xz"; 1043 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/pa-IN/firefox-142.0.tar.xz"; 1044 1044 locale = "pa-IN"; 1045 1045 arch = "linux-i686"; 1046 - sha256 = "f869cbf5be62cca880d7e399699b8118e11e852306f6c845238014affa439904"; 1046 + sha256 = "0be936468c4dd6c818624b842de91de06422139dfb8c9449196fd16e80e154ee"; 1047 1047 } 1048 1048 { 1049 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/pl/firefox-141.0.3.tar.xz"; 1049 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/pl/firefox-142.0.tar.xz"; 1050 1050 locale = "pl"; 1051 1051 arch = "linux-i686"; 1052 - sha256 = "9a77a8d285f099ea48662fde12b1d1cc32c09b12db161d1834ae2a745251bd66"; 1052 + sha256 = "8e6bb775643b1c7307ec2a79f8d6bfafc3aea92b39290d13af7cdcfde6cb971d"; 1053 1053 } 1054 1054 { 1055 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/pt-BR/firefox-141.0.3.tar.xz"; 1055 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/pt-BR/firefox-142.0.tar.xz"; 1056 1056 locale = "pt-BR"; 1057 1057 arch = "linux-i686"; 1058 - sha256 = "e8897fb645e1586d39bd6f4f7a9000b81dd77c5226fdd803818f14ef36e6bfb0"; 1058 + sha256 = "ce15b163fe8d71422914b09e0661b547144a41b6beffb2c29aec4e3638e42ee1"; 1059 1059 } 1060 1060 { 1061 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/pt-PT/firefox-141.0.3.tar.xz"; 1061 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/pt-PT/firefox-142.0.tar.xz"; 1062 1062 locale = "pt-PT"; 1063 1063 arch = "linux-i686"; 1064 - sha256 = "47ba2f64adf0c87f27fc633195944e9036128dbf4125784ab799604a4808a65d"; 1064 + sha256 = "9679d819adbda174978fe784976190e51a7eb55347fd7fd12edefcfea2a568c7"; 1065 1065 } 1066 1066 { 1067 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/rm/firefox-141.0.3.tar.xz"; 1067 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/rm/firefox-142.0.tar.xz"; 1068 1068 locale = "rm"; 1069 1069 arch = "linux-i686"; 1070 - sha256 = "4e5bbdfddc36348ceb803b938df58d21c206a45f2164a27808478b3074838292"; 1070 + sha256 = "3fd17d2f37958fd90212bcdd49537322cb1b407e99bbe897c60edb0b221fda2c"; 1071 1071 } 1072 1072 { 1073 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/ro/firefox-141.0.3.tar.xz"; 1073 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/ro/firefox-142.0.tar.xz"; 1074 1074 locale = "ro"; 1075 1075 arch = "linux-i686"; 1076 - sha256 = "62961ce7baf70cf994288796c27e382dd54762d2a2912e9c06d65f987bd202cd"; 1076 + sha256 = "15f201cddc8d8d4afdce5381a617a1a28b9873276f8386191adffd88601e5dbd"; 1077 1077 } 1078 1078 { 1079 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/ru/firefox-141.0.3.tar.xz"; 1079 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/ru/firefox-142.0.tar.xz"; 1080 1080 locale = "ru"; 1081 1081 arch = "linux-i686"; 1082 - sha256 = "2b3b6f8ec33ff4543e8385c34e845e83cc9db8ba8946bb6fc77294bb841879f9"; 1082 + sha256 = "96a0eae63272fbf78e5ac2ce4b998247665df26aea801fe6644a8933dcafbafa"; 1083 1083 } 1084 1084 { 1085 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/sat/firefox-141.0.3.tar.xz"; 1085 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/sat/firefox-142.0.tar.xz"; 1086 1086 locale = "sat"; 1087 1087 arch = "linux-i686"; 1088 - sha256 = "f8b270f3e69117c49fc0275ccc40cb2aeb70fbca8e6994b977bf65f58ee7df61"; 1088 + sha256 = "517762dc5dad2d87045db2614b840e41d5e899fcd6b875dd160f6e467227f9c1"; 1089 1089 } 1090 1090 { 1091 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/sc/firefox-141.0.3.tar.xz"; 1091 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/sc/firefox-142.0.tar.xz"; 1092 1092 locale = "sc"; 1093 1093 arch = "linux-i686"; 1094 - sha256 = "989aa6fdff893f79834fa10463c229377e3f3dac4d404a328e429522e6b4c1a9"; 1094 + sha256 = "95146d8cea65a491d42f9f90b3cdacc5796486318ba8cc1b035fdada15ad7883"; 1095 1095 } 1096 1096 { 1097 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/sco/firefox-141.0.3.tar.xz"; 1097 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/sco/firefox-142.0.tar.xz"; 1098 1098 locale = "sco"; 1099 1099 arch = "linux-i686"; 1100 - sha256 = "ac619d732a4b622a12331304ae0855b06451ff34d106bc1536e8509ab4456df0"; 1100 + sha256 = "7daf7c01e4a04a6ed500f1ca1316c4769b8fb39fdffaf97652167f68511fea32"; 1101 1101 } 1102 1102 { 1103 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/si/firefox-141.0.3.tar.xz"; 1103 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/si/firefox-142.0.tar.xz"; 1104 1104 locale = "si"; 1105 1105 arch = "linux-i686"; 1106 - sha256 = "04b19be537c54c12c0af20155f46ed0ede22942e8df9dbe438f16a8ecbdfd17b"; 1106 + sha256 = "5e15dead3ac799f3ddd83641efdcd2f1b4ee36ec73a5f47ec71d4c7804ff15c9"; 1107 1107 } 1108 1108 { 1109 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/sk/firefox-141.0.3.tar.xz"; 1109 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/sk/firefox-142.0.tar.xz"; 1110 1110 locale = "sk"; 1111 1111 arch = "linux-i686"; 1112 - sha256 = "2eda6c4e259c23cdbf17ea0c8ae713d4b3da101ee61c80ca9216d6f01bf28e69"; 1112 + sha256 = "713cf4bec037ea5bca1bbf297ff8c0b1fa245bcd7892253e15b76c52201daa62"; 1113 1113 } 1114 1114 { 1115 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/skr/firefox-141.0.3.tar.xz"; 1115 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/skr/firefox-142.0.tar.xz"; 1116 1116 locale = "skr"; 1117 1117 arch = "linux-i686"; 1118 - sha256 = "e592b838c7b836e0f1fd275838f654e4749afb1e8aa419b88fc1a4a1fc381672"; 1118 + sha256 = "1de8cda0a58961deee46dd8ff8f69f8f6b77138044a604060b5375e23065b69a"; 1119 1119 } 1120 1120 { 1121 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/sl/firefox-141.0.3.tar.xz"; 1121 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/sl/firefox-142.0.tar.xz"; 1122 1122 locale = "sl"; 1123 1123 arch = "linux-i686"; 1124 - sha256 = "5b80cb1645510697fd77b850728de50f40c36eec600107c3237cfd2f88f845c9"; 1124 + sha256 = "237b6139152330b08cc0bf283e9b64e787eab66e9bb2d387f4883c491800dca5"; 1125 1125 } 1126 1126 { 1127 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/son/firefox-141.0.3.tar.xz"; 1127 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/son/firefox-142.0.tar.xz"; 1128 1128 locale = "son"; 1129 1129 arch = "linux-i686"; 1130 - sha256 = "1f66b812c4119e7ac1bb76ce0efc1d944d3654908b623454472bcf4f271f35fe"; 1130 + sha256 = "b4fbac5fc56f13cfb6864153710cf302011b0cd9eb0ab5dded4d764d23c38727"; 1131 1131 } 1132 1132 { 1133 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/sq/firefox-141.0.3.tar.xz"; 1133 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/sq/firefox-142.0.tar.xz"; 1134 1134 locale = "sq"; 1135 1135 arch = "linux-i686"; 1136 - sha256 = "b1b2610364a96ccce01a52d4b07de1bdf5586f4694a8347a1d4fcb437083f1ac"; 1136 + sha256 = "1833142469a59677ac14d77e117c9f48a131e2426f8479d965bdff10026157e2"; 1137 1137 } 1138 1138 { 1139 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/sr/firefox-141.0.3.tar.xz"; 1139 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/sr/firefox-142.0.tar.xz"; 1140 1140 locale = "sr"; 1141 1141 arch = "linux-i686"; 1142 - sha256 = "c610dcabb04413eb39ba9f7d32651b5072c4ca587039046be6d454de8fbc65f9"; 1142 + sha256 = "d3c1ee2af2e53d01e2473d9f2fac53619548f6842ea10446cd1546164a5298f8"; 1143 1143 } 1144 1144 { 1145 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/sv-SE/firefox-141.0.3.tar.xz"; 1145 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/sv-SE/firefox-142.0.tar.xz"; 1146 1146 locale = "sv-SE"; 1147 1147 arch = "linux-i686"; 1148 - sha256 = "ab1e185e8960cc392c4827d43f8a3e1d2756d52c6613e16ff91c755eca047906"; 1148 + sha256 = "f1a351c693fd84e37ddf2b74d546651e19142e64bee7074b18533e9ea7657587"; 1149 1149 } 1150 1150 { 1151 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/szl/firefox-141.0.3.tar.xz"; 1151 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/szl/firefox-142.0.tar.xz"; 1152 1152 locale = "szl"; 1153 1153 arch = "linux-i686"; 1154 - sha256 = "88e42adc490a4a393c8ed32a9b7ba94702340ca17396126b8897dc05004f26b6"; 1154 + sha256 = "158e24ec6ae8ce8535dc9bf591fa546b72fab11406dc3de53f9b28354ff2ae3b"; 1155 1155 } 1156 1156 { 1157 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/ta/firefox-141.0.3.tar.xz"; 1157 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/ta/firefox-142.0.tar.xz"; 1158 1158 locale = "ta"; 1159 1159 arch = "linux-i686"; 1160 - sha256 = "77e8703de79f79a544820b7a6ed061e9d680a08f1e58d445d9e7c3d067c79a7e"; 1160 + sha256 = "7ba266b5008a6153a2657f48f70e8d7950fcc720c27663399528343fffaae902"; 1161 1161 } 1162 1162 { 1163 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/te/firefox-141.0.3.tar.xz"; 1163 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/te/firefox-142.0.tar.xz"; 1164 1164 locale = "te"; 1165 1165 arch = "linux-i686"; 1166 - sha256 = "5f7aa9b2a274666ff097c76b87c81525faea74547540ea6604b3645ae60f927c"; 1166 + sha256 = "9d3143b5456e8a1ba0efb76b231bdfe3354d642c7516aa5b95c83d5eca938b79"; 1167 1167 } 1168 1168 { 1169 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/tg/firefox-141.0.3.tar.xz"; 1169 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/tg/firefox-142.0.tar.xz"; 1170 1170 locale = "tg"; 1171 1171 arch = "linux-i686"; 1172 - sha256 = "92b73441177981f5de7a340fe90dd51a6d09e08acb8edc721f9d2eb510d7e37f"; 1172 + sha256 = "e4e6f5b139afdaecbe3bea9ab62409c1455ca6debb966aaf44161ef82ed1a1c5"; 1173 1173 } 1174 1174 { 1175 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/th/firefox-141.0.3.tar.xz"; 1175 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/th/firefox-142.0.tar.xz"; 1176 1176 locale = "th"; 1177 1177 arch = "linux-i686"; 1178 - sha256 = "63159b3d68581dd41cdb04842097f44b2098091f800dd57ac6a7b09f3df0ea7d"; 1178 + sha256 = "02cabee434e6b8ce7e7de8efcad6dd9afbd5ea2da3ded23917f94a4dd7402d8e"; 1179 1179 } 1180 1180 { 1181 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/tl/firefox-141.0.3.tar.xz"; 1181 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/tl/firefox-142.0.tar.xz"; 1182 1182 locale = "tl"; 1183 1183 arch = "linux-i686"; 1184 - sha256 = "d2df5ca58aeb5ed14acf6227aad446fedeb9cf0447c5470763c95d67dd56b4ce"; 1184 + sha256 = "7a6dd3c7cc30d757bd110b45a73b9b7fbc83a444fff1a57a40dc8e792351cd3b"; 1185 1185 } 1186 1186 { 1187 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/tr/firefox-141.0.3.tar.xz"; 1187 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/tr/firefox-142.0.tar.xz"; 1188 1188 locale = "tr"; 1189 1189 arch = "linux-i686"; 1190 - sha256 = "3817ce3d37ab5492dd26639e95654e4cd63ea6cfa6725a957055845eee51ed2b"; 1190 + sha256 = "8bb2a68d184bae484b81c930f551d409e1188d982b7b028c3555b6626b4be997"; 1191 1191 } 1192 1192 { 1193 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/trs/firefox-141.0.3.tar.xz"; 1193 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/trs/firefox-142.0.tar.xz"; 1194 1194 locale = "trs"; 1195 1195 arch = "linux-i686"; 1196 - sha256 = "c567b97771610f00f87ee9e4373e0867bb8f4d97dc42164348055c2f53a9014f"; 1196 + sha256 = "66d3bef4909ec3302a22a04fb5a2e18533e8333b1a9b4f852da1b6d4be0a6f3f"; 1197 1197 } 1198 1198 { 1199 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/uk/firefox-141.0.3.tar.xz"; 1199 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/uk/firefox-142.0.tar.xz"; 1200 1200 locale = "uk"; 1201 1201 arch = "linux-i686"; 1202 - sha256 = "03537230463511135605a16498ad43eb4b7f86691d42faf0ff1f343b4c8b0d54"; 1202 + sha256 = "d7c9caa3786fee3b030aa3d0863c4a6a249e2fbf1823939886d2e1ab805796bf"; 1203 1203 } 1204 1204 { 1205 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/ur/firefox-141.0.3.tar.xz"; 1205 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/ur/firefox-142.0.tar.xz"; 1206 1206 locale = "ur"; 1207 1207 arch = "linux-i686"; 1208 - sha256 = "7dd1b6d54c44c028bb708289c303220c872d2f3e35941b617d5faffb24140228"; 1208 + sha256 = "25eb662a592733b822e4ad36f8c92e30b49ade8b9eaba2565e37608b9a3a0768"; 1209 1209 } 1210 1210 { 1211 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/uz/firefox-141.0.3.tar.xz"; 1211 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/uz/firefox-142.0.tar.xz"; 1212 1212 locale = "uz"; 1213 1213 arch = "linux-i686"; 1214 - sha256 = "664627334c89fb2fc533c2b15a45b2d793880182108438bce66e842530b42c0d"; 1214 + sha256 = "718ae3e7d35d9b44423820598017fcda7cc47a5a8b41d97187d90543d078c5c8"; 1215 1215 } 1216 1216 { 1217 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/vi/firefox-141.0.3.tar.xz"; 1217 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/vi/firefox-142.0.tar.xz"; 1218 1218 locale = "vi"; 1219 1219 arch = "linux-i686"; 1220 - sha256 = "a5359392718e892fa2cc430614915efcf7ce35fd1d9644f0d9795f9362f0dc82"; 1220 + sha256 = "5416bfaa74c7922b0c70ccda9367f67a2b4ec073aa6957372decdb5ea7d8f1db"; 1221 1221 } 1222 1222 { 1223 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/xh/firefox-141.0.3.tar.xz"; 1223 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/xh/firefox-142.0.tar.xz"; 1224 1224 locale = "xh"; 1225 1225 arch = "linux-i686"; 1226 - sha256 = "f195c79de2f44b38342171546fab4b51a7e4dcc3d400e38621004a8605a80451"; 1226 + sha256 = "dacb6de464e9cea8bea906ac8fb5d0227521b10bd37810d7d095c6ffd6db6cae"; 1227 1227 } 1228 1228 { 1229 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/zh-CN/firefox-141.0.3.tar.xz"; 1229 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/zh-CN/firefox-142.0.tar.xz"; 1230 1230 locale = "zh-CN"; 1231 1231 arch = "linux-i686"; 1232 - sha256 = "978a688036228727b1362235de138e8c45d07bc6f5594ad1fccc23b5bbc03384"; 1232 + sha256 = "8b1e2b1d1f405a6793a8c63f986139165c9127a6f2c195b2fbc253221ba2ed9f"; 1233 1233 } 1234 1234 { 1235 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-i686/zh-TW/firefox-141.0.3.tar.xz"; 1235 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-i686/zh-TW/firefox-142.0.tar.xz"; 1236 1236 locale = "zh-TW"; 1237 1237 arch = "linux-i686"; 1238 - sha256 = "0b57d860ddae56e11691142f2831d8c157c1261fc8850d3c49da5cce69320b9c"; 1238 + sha256 = "d16edecfcaf3dd39c15e86d3acf065cbf279cb18dcefb235c7eec846580088c6"; 1239 1239 } 1240 1240 { 1241 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/ach/firefox-141.0.3.tar.xz"; 1241 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/ach/firefox-142.0.tar.xz"; 1242 1242 locale = "ach"; 1243 1243 arch = "linux-aarch64"; 1244 - sha256 = "e805a97c7c70eb7dda81009a67e198c9d9be31f6ccf7960ef5d589026a79c534"; 1244 + sha256 = "9c4503090dbee52438189b3817c6293d7faeebd820ee72ec85cbb80678c4a39d"; 1245 1245 } 1246 1246 { 1247 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/af/firefox-141.0.3.tar.xz"; 1247 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/af/firefox-142.0.tar.xz"; 1248 1248 locale = "af"; 1249 1249 arch = "linux-aarch64"; 1250 - sha256 = "9f12d3e8adb170fd683ac8a1afdc129671e5626d9c959fc59c9ec92d7f54828b"; 1250 + sha256 = "a0fbb4c547cdc1adcb62cf5dfb317abbd5a4b5a9bb2f2146a7ddb4806b64059a"; 1251 1251 } 1252 1252 { 1253 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/an/firefox-141.0.3.tar.xz"; 1253 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/an/firefox-142.0.tar.xz"; 1254 1254 locale = "an"; 1255 1255 arch = "linux-aarch64"; 1256 - sha256 = "738e71a2bd71b402030be00760835b4d715dc099b476450ffce48517823f7368"; 1256 + sha256 = "ce6c8725f4d98607e805d18fdb834d709fc92f773a778d501cf9f3372e08992d"; 1257 1257 } 1258 1258 { 1259 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/ar/firefox-141.0.3.tar.xz"; 1259 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/ar/firefox-142.0.tar.xz"; 1260 1260 locale = "ar"; 1261 1261 arch = "linux-aarch64"; 1262 - sha256 = "a081b992be71628058d74897787789b5bed97c60846a620eac8e27750f28fd4c"; 1262 + sha256 = "ad1fddef76360bb99cb3420b281fd039f4d530714725f96372ac4179446fe115"; 1263 1263 } 1264 1264 { 1265 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/ast/firefox-141.0.3.tar.xz"; 1265 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/ast/firefox-142.0.tar.xz"; 1266 1266 locale = "ast"; 1267 1267 arch = "linux-aarch64"; 1268 - sha256 = "4034795ba53c79badf32fc996ae2c82a31bf9bf1a8685a1a3c8cf867257fd659"; 1268 + sha256 = "8fbf7441098dbf7fb4a92a61cd1ac36fec6d6c87de27a3b2523ac1346cc94b33"; 1269 1269 } 1270 1270 { 1271 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/az/firefox-141.0.3.tar.xz"; 1271 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/az/firefox-142.0.tar.xz"; 1272 1272 locale = "az"; 1273 1273 arch = "linux-aarch64"; 1274 - sha256 = "f4f373697bcb3857efd0157c88bd86b6637785c111129dc1a4e7595d2410d768"; 1274 + sha256 = "dd4642ab0d5e9f9ca6899ec4aef78f2745a2ac3c74ec064ce6bd5d060f3eda16"; 1275 1275 } 1276 1276 { 1277 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/be/firefox-141.0.3.tar.xz"; 1277 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/be/firefox-142.0.tar.xz"; 1278 1278 locale = "be"; 1279 1279 arch = "linux-aarch64"; 1280 - sha256 = "f87377d1d9fbc9da5468747cf2292dec97df9c0c8d3faea4c829fc81c14a767f"; 1280 + sha256 = "f95841fae81b471e85c1b503b8807a71402c491a4e53718245244c5cd8be30f0"; 1281 1281 } 1282 1282 { 1283 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/bg/firefox-141.0.3.tar.xz"; 1283 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/bg/firefox-142.0.tar.xz"; 1284 1284 locale = "bg"; 1285 1285 arch = "linux-aarch64"; 1286 - sha256 = "d1210d16b7e43628a1b9721caa507e7897a463d2c6e2cae37f6c924905f7ce0c"; 1286 + sha256 = "e0fa0a3da4022eb228e5b6ded0324a59938cec400de5461d1be5d5f2844fac8c"; 1287 1287 } 1288 1288 { 1289 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/bn/firefox-141.0.3.tar.xz"; 1289 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/bn/firefox-142.0.tar.xz"; 1290 1290 locale = "bn"; 1291 1291 arch = "linux-aarch64"; 1292 - sha256 = "0f3592b56f68c06d8d6b4ebf45341a1c0945e55c81987524f165cd5bfeddc4a0"; 1292 + sha256 = "c0f470687739dd099296b664e97b582c9b54f9d83cd99fbb64dcf114cb98adab"; 1293 1293 } 1294 1294 { 1295 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/br/firefox-141.0.3.tar.xz"; 1295 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/br/firefox-142.0.tar.xz"; 1296 1296 locale = "br"; 1297 1297 arch = "linux-aarch64"; 1298 - sha256 = "93cac00cc172b45dd03151b9776f28e200c6e92bd08982a2f5eaa8e0a4cd8993"; 1298 + sha256 = "a5afacdca244c2044695da260d359a647f091d474d8704545182feacadd697f5"; 1299 1299 } 1300 1300 { 1301 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/bs/firefox-141.0.3.tar.xz"; 1301 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/bs/firefox-142.0.tar.xz"; 1302 1302 locale = "bs"; 1303 1303 arch = "linux-aarch64"; 1304 - sha256 = "d06332ab198ede6f464e2f7b99e6a7c8f65aa5e160e80b1e2e899f89b1bc717f"; 1304 + sha256 = "eac78aa0b1f88a66c336b043c04c6fcdb14e09cdacb0bace8d48de3942ed1f81"; 1305 1305 } 1306 1306 { 1307 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/ca-valencia/firefox-141.0.3.tar.xz"; 1307 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/ca-valencia/firefox-142.0.tar.xz"; 1308 1308 locale = "ca-valencia"; 1309 1309 arch = "linux-aarch64"; 1310 - sha256 = "5573bbe4cfd9ed779c6b05278ddc04ca33cdbb5078e4960cbb14d97ca8c94388"; 1310 + sha256 = "2c14efe0da3508e682c991f528807976adde36d3c56c9e9d814010303054bfba"; 1311 1311 } 1312 1312 { 1313 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/ca/firefox-141.0.3.tar.xz"; 1313 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/ca/firefox-142.0.tar.xz"; 1314 1314 locale = "ca"; 1315 1315 arch = "linux-aarch64"; 1316 - sha256 = "334140317e51df90cfa4240841976f8956d5297f7a0cc3e26c3ced83bba49e7b"; 1316 + sha256 = "4a49d515e6231d51903a00069e0106c6f3d4d78c8f3b1b43b2a94975d837b0d1"; 1317 1317 } 1318 1318 { 1319 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/cak/firefox-141.0.3.tar.xz"; 1319 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/cak/firefox-142.0.tar.xz"; 1320 1320 locale = "cak"; 1321 1321 arch = "linux-aarch64"; 1322 - sha256 = "82384a3d8bfa3ba7e6c8c0bad3161b0d877e6be46454347afe821d435d56105d"; 1322 + sha256 = "39415622252bfd8b1b4f795d6b74e521a97a887c6211c19c0dbf477544675f16"; 1323 1323 } 1324 1324 { 1325 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/cs/firefox-141.0.3.tar.xz"; 1325 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/cs/firefox-142.0.tar.xz"; 1326 1326 locale = "cs"; 1327 1327 arch = "linux-aarch64"; 1328 - sha256 = "b76019fc1806796e66a56733723eedd85a6f421e5c238d9ced49db26e961e72b"; 1328 + sha256 = "94eaf875ca330412ff223e6333b710f8c63950ef54d2140f67060d2f09363b95"; 1329 1329 } 1330 1330 { 1331 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/cy/firefox-141.0.3.tar.xz"; 1331 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/cy/firefox-142.0.tar.xz"; 1332 1332 locale = "cy"; 1333 1333 arch = "linux-aarch64"; 1334 - sha256 = "f0d42e136cde6e89af9e7115cbe47bef980db0125fd8287468d136aa4342b576"; 1334 + sha256 = "4583973505b11b311e9e42eed0a1c144e3e64def4151ae9be63b06231c8d7ddb"; 1335 1335 } 1336 1336 { 1337 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/da/firefox-141.0.3.tar.xz"; 1337 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/da/firefox-142.0.tar.xz"; 1338 1338 locale = "da"; 1339 1339 arch = "linux-aarch64"; 1340 - sha256 = "246b1504a4aff20e85f905563f04db4db698623eee3476e3c2463690bfc79fa5"; 1340 + sha256 = "772da9d37468600612cc931ec57e1b0a27ee0793964f9e2fd277524a02a5be6d"; 1341 1341 } 1342 1342 { 1343 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/de/firefox-141.0.3.tar.xz"; 1343 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/de/firefox-142.0.tar.xz"; 1344 1344 locale = "de"; 1345 1345 arch = "linux-aarch64"; 1346 - sha256 = "26954e7967e8250dc671d35cd763ed93071f953af82cb47fd147f616f98af9a9"; 1346 + sha256 = "c08668457c6067c54ef68b9965c427ea50121f28a5660ec17b2a037c4ee6ce4e"; 1347 1347 } 1348 1348 { 1349 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/dsb/firefox-141.0.3.tar.xz"; 1349 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/dsb/firefox-142.0.tar.xz"; 1350 1350 locale = "dsb"; 1351 1351 arch = "linux-aarch64"; 1352 - sha256 = "db91fe77c8bbbb1ffaee18019620f1ce1d95237d3b1a2bc97d18938b5ab0711c"; 1352 + sha256 = "10cddf31b30e0481098e550a8ac3ea22320d49b8b57c35e7fc8220c07e5e1432"; 1353 1353 } 1354 1354 { 1355 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/el/firefox-141.0.3.tar.xz"; 1355 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/el/firefox-142.0.tar.xz"; 1356 1356 locale = "el"; 1357 1357 arch = "linux-aarch64"; 1358 - sha256 = "8127b968f34d1e38d67d5e9287927a1d494b1879f3d24f89712f1b0df02f106f"; 1358 + sha256 = "d6cb9fefe36ee2631a33dd8a689fe071c582c2922aa18cb99b84179e7c17c906"; 1359 1359 } 1360 1360 { 1361 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/en-CA/firefox-141.0.3.tar.xz"; 1361 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/en-CA/firefox-142.0.tar.xz"; 1362 1362 locale = "en-CA"; 1363 1363 arch = "linux-aarch64"; 1364 - sha256 = "3605917655d75096a80dcb9db271bf268d3327fe2ebda0235aea2d22537949eb"; 1364 + sha256 = "c7215bb67c8fd0435de197343929feeb988b32dc5054961d427bed7cf18e7843"; 1365 1365 } 1366 1366 { 1367 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/en-GB/firefox-141.0.3.tar.xz"; 1367 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/en-GB/firefox-142.0.tar.xz"; 1368 1368 locale = "en-GB"; 1369 1369 arch = "linux-aarch64"; 1370 - sha256 = "cdcf3d691840efb370a96bed1f1bf7a32174e413d1e16ac2ed55460f0143902c"; 1370 + sha256 = "d8afd1cee7a075b2e3aba4130556b0ef745a101514772e4871a790126bef0fa3"; 1371 1371 } 1372 1372 { 1373 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/en-US/firefox-141.0.3.tar.xz"; 1373 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/en-US/firefox-142.0.tar.xz"; 1374 1374 locale = "en-US"; 1375 1375 arch = "linux-aarch64"; 1376 - sha256 = "03ab7f03538b642693f91bc935f55d9eb6df089eac520a65e1e34dc4fdd7049a"; 1376 + sha256 = "87e9fcaecaef101d7a0910ba8960d4b72b5b4ae91fd4e08069088d3c06f9a792"; 1377 1377 } 1378 1378 { 1379 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/eo/firefox-141.0.3.tar.xz"; 1379 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/eo/firefox-142.0.tar.xz"; 1380 1380 locale = "eo"; 1381 1381 arch = "linux-aarch64"; 1382 - sha256 = "f2316fc6e0a1a747ddaa6b7d88ab335d2058cb4ea223f40533744658240057b3"; 1382 + sha256 = "0f7eb84df2f80ebed50cfd35ca0b465533df91f4c009caabbb895ea45f0a5927"; 1383 1383 } 1384 1384 { 1385 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/es-AR/firefox-141.0.3.tar.xz"; 1385 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/es-AR/firefox-142.0.tar.xz"; 1386 1386 locale = "es-AR"; 1387 1387 arch = "linux-aarch64"; 1388 - sha256 = "82305a617d919fe05bb24530fab0a4e059f410664791c160883f9806453fa9b9"; 1388 + sha256 = "be2b1f74b1ec841c167ea62c732b2969bb2ceed7835485c66b70235e768ad38b"; 1389 1389 } 1390 1390 { 1391 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/es-CL/firefox-141.0.3.tar.xz"; 1391 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/es-CL/firefox-142.0.tar.xz"; 1392 1392 locale = "es-CL"; 1393 1393 arch = "linux-aarch64"; 1394 - sha256 = "7502b51099ae36c95cc0486b0f0722f4c4d2b02f4d54f13294ff59d05678324b"; 1394 + sha256 = "438b35e8dbe285acf0208a113c919de2bac2a5a1556f770becfbe5ab62db3ac3"; 1395 1395 } 1396 1396 { 1397 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/es-ES/firefox-141.0.3.tar.xz"; 1397 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/es-ES/firefox-142.0.tar.xz"; 1398 1398 locale = "es-ES"; 1399 1399 arch = "linux-aarch64"; 1400 - sha256 = "8af4cec2229bb371c29e402e5765412b18b5b971a49960a8d7634cbf01aaa9ad"; 1400 + sha256 = "8df9d6bf6834f9b0a1b168ccd4804f574c141845868a0f3d3ed93f244762236d"; 1401 1401 } 1402 1402 { 1403 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/es-MX/firefox-141.0.3.tar.xz"; 1403 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/es-MX/firefox-142.0.tar.xz"; 1404 1404 locale = "es-MX"; 1405 1405 arch = "linux-aarch64"; 1406 - sha256 = "65d1dc229e64e9fab6e1feedea5a6cf18a5322c6854d09ad4a5f7ae9ba751a59"; 1406 + sha256 = "bbc54fa49c4c017c3efdbbf71bef0f2bd60fcb16ea41cb1661c975e47f8af613"; 1407 1407 } 1408 1408 { 1409 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/et/firefox-141.0.3.tar.xz"; 1409 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/et/firefox-142.0.tar.xz"; 1410 1410 locale = "et"; 1411 1411 arch = "linux-aarch64"; 1412 - sha256 = "c1f9fb45a269025505713179578de8d099a6f2297f3f4a3de28928ec2c04ebb8"; 1412 + sha256 = "2a8f2f360892612346f8cd683578d304a181ca802806d4c93a90e74db2cf697a"; 1413 1413 } 1414 1414 { 1415 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/eu/firefox-141.0.3.tar.xz"; 1415 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/eu/firefox-142.0.tar.xz"; 1416 1416 locale = "eu"; 1417 1417 arch = "linux-aarch64"; 1418 - sha256 = "cbe476b6a6e28050e1b2a7fe6e0e5c804076ee23f298778541e75b748f715a2b"; 1418 + sha256 = "530b8f2f515bd836bd81029f5bfd3f6ecf5efcece3b403b7e2ea164d1bcfc7c2"; 1419 1419 } 1420 1420 { 1421 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/fa/firefox-141.0.3.tar.xz"; 1421 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/fa/firefox-142.0.tar.xz"; 1422 1422 locale = "fa"; 1423 1423 arch = "linux-aarch64"; 1424 - sha256 = "02a57b863cf369c783395e02453edef5d351c08d3f19a399eb1d056d769163c2"; 1424 + sha256 = "9c13f47698960fd988e33cf73aac95ab53d19a0280dac046212098aab0f5993d"; 1425 1425 } 1426 1426 { 1427 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/ff/firefox-141.0.3.tar.xz"; 1427 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/ff/firefox-142.0.tar.xz"; 1428 1428 locale = "ff"; 1429 1429 arch = "linux-aarch64"; 1430 - sha256 = "c729d78512a7bef8328791f36077d8b991e6424a5dfe778aeccd1e0790e8b20f"; 1430 + sha256 = "234c28101a09410237efec148403d98dbf8a7d50399884470d14d22fa72401ad"; 1431 1431 } 1432 1432 { 1433 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/fi/firefox-141.0.3.tar.xz"; 1433 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/fi/firefox-142.0.tar.xz"; 1434 1434 locale = "fi"; 1435 1435 arch = "linux-aarch64"; 1436 - sha256 = "2cce8db24a3308396d50eaf9663950f222747ae34e639445bbae64c1cb94d6ac"; 1436 + sha256 = "0574523f4c7881cb49ebcd5f3c403c49fc4fbe8babb89bac1385bf66fbea21d9"; 1437 1437 } 1438 1438 { 1439 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/fr/firefox-141.0.3.tar.xz"; 1439 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/fr/firefox-142.0.tar.xz"; 1440 1440 locale = "fr"; 1441 1441 arch = "linux-aarch64"; 1442 - sha256 = "cdf837780a11c3b0f2acb8382162ab10d67eece7962930497ae2cb30c2e7cd75"; 1442 + sha256 = "47faa421fc46ce686199ab409f1a91702d814a54afb796cf953d9f038e13d84a"; 1443 1443 } 1444 1444 { 1445 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/fur/firefox-141.0.3.tar.xz"; 1445 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/fur/firefox-142.0.tar.xz"; 1446 1446 locale = "fur"; 1447 1447 arch = "linux-aarch64"; 1448 - sha256 = "0e9cb8fa64b6ca14260c8a0e0ad2906414bba9721366d832e4bce995b36e387f"; 1448 + sha256 = "65ef962f924981c0c5b81d7cb61509a4c20743d326a6fdd3c2f714264982e9f7"; 1449 1449 } 1450 1450 { 1451 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/fy-NL/firefox-141.0.3.tar.xz"; 1451 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/fy-NL/firefox-142.0.tar.xz"; 1452 1452 locale = "fy-NL"; 1453 1453 arch = "linux-aarch64"; 1454 - sha256 = "29726f35cdb7bfbcf1777a5b56dcb61f0fe4f4afa958d096b9945119792bb9e0"; 1454 + sha256 = "355921a6a67974579e7d0fdc541da2c62fc6a44abaccc7678205b42c30461fd7"; 1455 1455 } 1456 1456 { 1457 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/ga-IE/firefox-141.0.3.tar.xz"; 1457 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/ga-IE/firefox-142.0.tar.xz"; 1458 1458 locale = "ga-IE"; 1459 1459 arch = "linux-aarch64"; 1460 - sha256 = "87c73b2c2cbbb0a4185b18e2bec8ef9ef762e1cdb6bd68a1c55e24c7993fcf65"; 1460 + sha256 = "08370294b653805b778305f5b4b2384dfd5aad8ee0d5043d986a310ef39e80cd"; 1461 1461 } 1462 1462 { 1463 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/gd/firefox-141.0.3.tar.xz"; 1463 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/gd/firefox-142.0.tar.xz"; 1464 1464 locale = "gd"; 1465 1465 arch = "linux-aarch64"; 1466 - sha256 = "94572640d1c89b3e8e266f4e5c26644d83fbdfd7380995988427cdc173e2bd1c"; 1466 + sha256 = "c7928d2efb173d6f46e05a1793293ab483e67a52cdadf781d7e64775b9cdf290"; 1467 1467 } 1468 1468 { 1469 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/gl/firefox-141.0.3.tar.xz"; 1469 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/gl/firefox-142.0.tar.xz"; 1470 1470 locale = "gl"; 1471 1471 arch = "linux-aarch64"; 1472 - sha256 = "dfd1b843908d7a17583e140883317609f9c86e9850388e6985b83b1515dc87c2"; 1472 + sha256 = "217b6b4a910d7d33ed011d3d4d0adac74e3db69f7c3088ac268a808be5576df8"; 1473 1473 } 1474 1474 { 1475 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/gn/firefox-141.0.3.tar.xz"; 1475 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/gn/firefox-142.0.tar.xz"; 1476 1476 locale = "gn"; 1477 1477 arch = "linux-aarch64"; 1478 - sha256 = "50efc231c9607aa0baa091df45143ae4bfc645695684efbfc82cc68f135c3dea"; 1478 + sha256 = "7144379cd5ebc4e19ab91a4e5a3b390e0cb7275e84aeb85522ba7644b5286d5f"; 1479 1479 } 1480 1480 { 1481 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/gu-IN/firefox-141.0.3.tar.xz"; 1481 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/gu-IN/firefox-142.0.tar.xz"; 1482 1482 locale = "gu-IN"; 1483 1483 arch = "linux-aarch64"; 1484 - sha256 = "709c3e0e38ae4261715cc7ca871342f5211fbcf71ab51d510b1aeaa953ffc01e"; 1484 + sha256 = "8171ad64962c12ac04cb587e034ca4aa4f7a6f149fde4a550089d11e86feb02c"; 1485 1485 } 1486 1486 { 1487 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/he/firefox-141.0.3.tar.xz"; 1487 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/he/firefox-142.0.tar.xz"; 1488 1488 locale = "he"; 1489 1489 arch = "linux-aarch64"; 1490 - sha256 = "b9dd29b4d4abb10005afc05a6700c8b333378ad7e6c68eb9d8a5d57d6b351404"; 1490 + sha256 = "520c8c5d73446acff1be53b3074b8eaff36ef4ac86a2d9f8eca8896fba9e1adb"; 1491 1491 } 1492 1492 { 1493 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/hi-IN/firefox-141.0.3.tar.xz"; 1493 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/hi-IN/firefox-142.0.tar.xz"; 1494 1494 locale = "hi-IN"; 1495 1495 arch = "linux-aarch64"; 1496 - sha256 = "44d8996aa7e92ca6e17ecc511a962d3572318c7e280386f4df464266e89bfe36"; 1496 + sha256 = "fbac4dc5986683415376b40533718939cc422a311e96e6f2527c373fece43b70"; 1497 1497 } 1498 1498 { 1499 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/hr/firefox-141.0.3.tar.xz"; 1499 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/hr/firefox-142.0.tar.xz"; 1500 1500 locale = "hr"; 1501 1501 arch = "linux-aarch64"; 1502 - sha256 = "2c90c13a0843950573365bbdaca112561faaa43f3061ff758df7dd36cbb111ef"; 1502 + sha256 = "aff866ae27f3af64a14012804284dab259907a7aeef823472a8cb00491abb8ab"; 1503 1503 } 1504 1504 { 1505 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/hsb/firefox-141.0.3.tar.xz"; 1505 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/hsb/firefox-142.0.tar.xz"; 1506 1506 locale = "hsb"; 1507 1507 arch = "linux-aarch64"; 1508 - sha256 = "dc2bd48cb76bf95781ad99a2c522afd6374ba38efdb6da33305e15bd303dd0d2"; 1508 + sha256 = "098951c958676a45c040f32b70c4fd74643590c71c64e91fb978e19c0969bbd9"; 1509 1509 } 1510 1510 { 1511 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/hu/firefox-141.0.3.tar.xz"; 1511 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/hu/firefox-142.0.tar.xz"; 1512 1512 locale = "hu"; 1513 1513 arch = "linux-aarch64"; 1514 - sha256 = "71ff53f966cc51dbd9a535e59a9581430da1b3e322b7fe21c2236860a3002123"; 1514 + sha256 = "a1208d82260716e1088038c049706de1a170bd38502192ce730a81dcd267a4af"; 1515 1515 } 1516 1516 { 1517 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/hy-AM/firefox-141.0.3.tar.xz"; 1517 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/hy-AM/firefox-142.0.tar.xz"; 1518 1518 locale = "hy-AM"; 1519 1519 arch = "linux-aarch64"; 1520 - sha256 = "9bd57c68c4c3fbace372b3c7dee336fbe8105a929a43dc1f3a932cef0d15ec5d"; 1520 + sha256 = "be24f9a17f4f40ac9138f370d73476d6e0d8415628ff97619ac8423439adc83b"; 1521 1521 } 1522 1522 { 1523 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/ia/firefox-141.0.3.tar.xz"; 1523 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/ia/firefox-142.0.tar.xz"; 1524 1524 locale = "ia"; 1525 1525 arch = "linux-aarch64"; 1526 - sha256 = "ef1528140dc1f5e9f4c4a3d094989d2d2bf1101410058c04a34b3342e67d7f89"; 1526 + sha256 = "3c63bf9838f496103111b7782141146a2fa9b547339237bb4c360a3dce72cc51"; 1527 1527 } 1528 1528 { 1529 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/id/firefox-141.0.3.tar.xz"; 1529 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/id/firefox-142.0.tar.xz"; 1530 1530 locale = "id"; 1531 1531 arch = "linux-aarch64"; 1532 - sha256 = "e9754510da65f230f9cc7271eb65a2e963e5fdabbd52551c0e45ddba2601ac21"; 1532 + sha256 = "71a2998d91311dce30d751c6ab4003b486cd2fb5a18afbeb5101bb331a80575c"; 1533 1533 } 1534 1534 { 1535 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/is/firefox-141.0.3.tar.xz"; 1535 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/is/firefox-142.0.tar.xz"; 1536 1536 locale = "is"; 1537 1537 arch = "linux-aarch64"; 1538 - sha256 = "8a2ac7612025066af5b510c45174908891f9564ba929ce7d610cca2853cca383"; 1538 + sha256 = "d628774dcb2a688c814b5392089dfe8fc64a571fd999ad20b16d7a85f074a824"; 1539 1539 } 1540 1540 { 1541 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/it/firefox-141.0.3.tar.xz"; 1541 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/it/firefox-142.0.tar.xz"; 1542 1542 locale = "it"; 1543 1543 arch = "linux-aarch64"; 1544 - sha256 = "85e6227dbc2fc677eb09f8342b2d7998e95eb7be31e0c1731b091470a9c95f1d"; 1544 + sha256 = "6d8c5f736cf3cb6f8f6a2639046fdb239375018723a6a969797c4efd274fb8ac"; 1545 1545 } 1546 1546 { 1547 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/ja/firefox-141.0.3.tar.xz"; 1547 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/ja/firefox-142.0.tar.xz"; 1548 1548 locale = "ja"; 1549 1549 arch = "linux-aarch64"; 1550 - sha256 = "1ef1caf9e57697552fa12bf34f55b0d16badc8f777bbecfb71595033f38f907d"; 1550 + sha256 = "2eec4ae4b50140c0840ac64f488b6d773286f8eacc5a0b5de67bd61bb3bdf45e"; 1551 1551 } 1552 1552 { 1553 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/ka/firefox-141.0.3.tar.xz"; 1553 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/ka/firefox-142.0.tar.xz"; 1554 1554 locale = "ka"; 1555 1555 arch = "linux-aarch64"; 1556 - sha256 = "a15891832d9a4b3292ddea9af8f00f3236f8d86e449d25ca6304d9443562701d"; 1556 + sha256 = "4234f52cea786501b4468866de61823d2a58c2e7b04044952162e355c37c2794"; 1557 1557 } 1558 1558 { 1559 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/kab/firefox-141.0.3.tar.xz"; 1559 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/kab/firefox-142.0.tar.xz"; 1560 1560 locale = "kab"; 1561 1561 arch = "linux-aarch64"; 1562 - sha256 = "5666b4d761937363129e65e562a4add2544a15d9cc1bcfca9187e7c925fa3055"; 1562 + sha256 = "a857604db9120c0c59197119412b56f22edab243e8f22149b68f8061c38c12f3"; 1563 1563 } 1564 1564 { 1565 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/kk/firefox-141.0.3.tar.xz"; 1565 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/kk/firefox-142.0.tar.xz"; 1566 1566 locale = "kk"; 1567 1567 arch = "linux-aarch64"; 1568 - sha256 = "44aa7cf2dd4234ea2906cb13ac699049d24024f4ea8861a436ca262ac18474b5"; 1568 + sha256 = "0bb4d7bf1ae1f19e9170bd1ab3ea8b2f1523cf18e321d09da732e4e810eaacd7"; 1569 1569 } 1570 1570 { 1571 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/km/firefox-141.0.3.tar.xz"; 1571 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/km/firefox-142.0.tar.xz"; 1572 1572 locale = "km"; 1573 1573 arch = "linux-aarch64"; 1574 - sha256 = "ae88cb2e0238b0202f70e69f67308ce8a690cd34fa9dd40d7f21b95060029a60"; 1574 + sha256 = "89d718b75e60bc77a59d2ad9bf54ef344840d839458685d35c4198b2930edd35"; 1575 1575 } 1576 1576 { 1577 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/kn/firefox-141.0.3.tar.xz"; 1577 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/kn/firefox-142.0.tar.xz"; 1578 1578 locale = "kn"; 1579 1579 arch = "linux-aarch64"; 1580 - sha256 = "9bcd17d43243bf9839ea796449191f964fe4c267d6567c86e478f366996922f6"; 1580 + sha256 = "45a202d8bf61e84b18dc4a3ae1cdf44223c1cd20db818f67eeb85e37502ba994"; 1581 1581 } 1582 1582 { 1583 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/ko/firefox-141.0.3.tar.xz"; 1583 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/ko/firefox-142.0.tar.xz"; 1584 1584 locale = "ko"; 1585 1585 arch = "linux-aarch64"; 1586 - sha256 = "ad75f49db29cbf6d0c6a1b0fcf5e7d4f477d5d82379d63d0dce1e76afabcc27b"; 1586 + sha256 = "4b92105ca489eefdd704c064c2c5523cae1aa26f184ffc0d19f2906cee524763"; 1587 1587 } 1588 1588 { 1589 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/lij/firefox-141.0.3.tar.xz"; 1589 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/lij/firefox-142.0.tar.xz"; 1590 1590 locale = "lij"; 1591 1591 arch = "linux-aarch64"; 1592 - sha256 = "a4ee74dd89f18f4758a5461526e56cfcf77e376d6b84ed98c9d275e803468226"; 1592 + sha256 = "ffd65e7718936007a810f6a4c1e9e74e8e0adfa5ce4a26e178f63f6014c91d34"; 1593 1593 } 1594 1594 { 1595 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/lt/firefox-141.0.3.tar.xz"; 1595 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/lt/firefox-142.0.tar.xz"; 1596 1596 locale = "lt"; 1597 1597 arch = "linux-aarch64"; 1598 - sha256 = "c7df8dff34ea79431f0495c22700b770153b78477dee659257220b5f6a6bfc0c"; 1598 + sha256 = "d4da8603b69d68f1038639e08c4a194bc5bfd76e8d0b32935756ff3ae0e00e0c"; 1599 1599 } 1600 1600 { 1601 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/lv/firefox-141.0.3.tar.xz"; 1601 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/lv/firefox-142.0.tar.xz"; 1602 1602 locale = "lv"; 1603 1603 arch = "linux-aarch64"; 1604 - sha256 = "97f1f668140b6d6b16d0553181d0563759c2fe9f3678e81ddf5a23291efaef47"; 1604 + sha256 = "d81de18d78a7248d12936677b1dfb5ed8a57747629473a970e770e9846857c41"; 1605 1605 } 1606 1606 { 1607 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/mk/firefox-141.0.3.tar.xz"; 1607 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/mk/firefox-142.0.tar.xz"; 1608 1608 locale = "mk"; 1609 1609 arch = "linux-aarch64"; 1610 - sha256 = "d1d56e22c94c19e5eee4641831a26662517b44ed73f67ad4cb19211fa6446fd5"; 1610 + sha256 = "982d6323bc2e209676730915927bfe55b7566a5cc257ab4728f1ffd68e683234"; 1611 1611 } 1612 1612 { 1613 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/mr/firefox-141.0.3.tar.xz"; 1613 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/mr/firefox-142.0.tar.xz"; 1614 1614 locale = "mr"; 1615 1615 arch = "linux-aarch64"; 1616 - sha256 = "a1536650e550302cb646cf45e712248e9204b2c4ace47d601f52fc42b0713b26"; 1616 + sha256 = "f4099bcc77d2b47a83ab8ab66877929c07d17bdf01b01c5d8a5b964999f57602"; 1617 1617 } 1618 1618 { 1619 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/ms/firefox-141.0.3.tar.xz"; 1619 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/ms/firefox-142.0.tar.xz"; 1620 1620 locale = "ms"; 1621 1621 arch = "linux-aarch64"; 1622 - sha256 = "26621924fd72fd7a4356aa84584fb0fec9b039e45afab7ef0c0aa58f80957b7c"; 1622 + sha256 = "80dd31200a7dd25c8605c7a277c8b6bba95b880e4cf8667cfae28db0676652c3"; 1623 1623 } 1624 1624 { 1625 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/my/firefox-141.0.3.tar.xz"; 1625 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/my/firefox-142.0.tar.xz"; 1626 1626 locale = "my"; 1627 1627 arch = "linux-aarch64"; 1628 - sha256 = "e9ea39c1adce409ce59e2d2d880713a0c1e1ddb0aaaaa19e65f7cf966b9f23f7"; 1628 + sha256 = "d7f5a009caf96bdd36bedf32aa303d370bc242b258d13670550104493ec631cd"; 1629 1629 } 1630 1630 { 1631 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/nb-NO/firefox-141.0.3.tar.xz"; 1631 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/nb-NO/firefox-142.0.tar.xz"; 1632 1632 locale = "nb-NO"; 1633 1633 arch = "linux-aarch64"; 1634 - sha256 = "a41b45543fd81390aa795d3e153a0618e95586ea1a799906aeb501d36223deb0"; 1634 + sha256 = "f36e746068f472c8d41201a85a32cb3cae088ba7c5a09b8b14d9b438a31d3f62"; 1635 1635 } 1636 1636 { 1637 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/ne-NP/firefox-141.0.3.tar.xz"; 1637 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/ne-NP/firefox-142.0.tar.xz"; 1638 1638 locale = "ne-NP"; 1639 1639 arch = "linux-aarch64"; 1640 - sha256 = "79c1e414427fd4234f5939a9966d417780ad2a82729c6393dc8207664df557d1"; 1640 + sha256 = "610a3b97b32376952838a9719b126e5e571d144865c2ad3b18cb51fd8c538418"; 1641 1641 } 1642 1642 { 1643 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/nl/firefox-141.0.3.tar.xz"; 1643 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/nl/firefox-142.0.tar.xz"; 1644 1644 locale = "nl"; 1645 1645 arch = "linux-aarch64"; 1646 - sha256 = "63d89fc08a4883f784b321f29753dd23de13f27d89825997ce3dabe28ea46b4e"; 1646 + sha256 = "f6fac748ec84f35a53942d5c99ad66708d55507028c5eaa36be615f002ccda1f"; 1647 1647 } 1648 1648 { 1649 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/nn-NO/firefox-141.0.3.tar.xz"; 1649 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/nn-NO/firefox-142.0.tar.xz"; 1650 1650 locale = "nn-NO"; 1651 1651 arch = "linux-aarch64"; 1652 - sha256 = "2dccd295049e9b54e8c2d53028d59a31931f8e3009c4ea0ef813d6eab1ddc426"; 1652 + sha256 = "a20a47b4e26e90944694e1d6eff683bd1d4b8ae784ad4ba091cd0c06f3bff4ed"; 1653 1653 } 1654 1654 { 1655 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/oc/firefox-141.0.3.tar.xz"; 1655 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/oc/firefox-142.0.tar.xz"; 1656 1656 locale = "oc"; 1657 1657 arch = "linux-aarch64"; 1658 - sha256 = "2031f69771f713a9ff58be155cf4b2042441ca601c1af219c9d756c398ebe029"; 1658 + sha256 = "732629aaca85c300d48c24f8a11226fcc7ab96274a7cca7d9c24dd6378517baa"; 1659 1659 } 1660 1660 { 1661 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/pa-IN/firefox-141.0.3.tar.xz"; 1661 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/pa-IN/firefox-142.0.tar.xz"; 1662 1662 locale = "pa-IN"; 1663 1663 arch = "linux-aarch64"; 1664 - sha256 = "c50a6727ed9238bb5e4aa26df891e0cbc74812b6d1e67d8b1998fcce241dc354"; 1664 + sha256 = "971fecbb0b58308b1c47d47ed6a56cfd919b77898dcf140aec69ce92ed94514b"; 1665 1665 } 1666 1666 { 1667 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/pl/firefox-141.0.3.tar.xz"; 1667 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/pl/firefox-142.0.tar.xz"; 1668 1668 locale = "pl"; 1669 1669 arch = "linux-aarch64"; 1670 - sha256 = "86cc54c5fbd4a4d1118710d175de9ba04bab9c7a7908c6d3b62fecebea8fe0fe"; 1670 + sha256 = "012bdb0d7185dacb9e56a3fa773cef0ee250e524b3c40d0c7f14b9e854848c00"; 1671 1671 } 1672 1672 { 1673 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/pt-BR/firefox-141.0.3.tar.xz"; 1673 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/pt-BR/firefox-142.0.tar.xz"; 1674 1674 locale = "pt-BR"; 1675 1675 arch = "linux-aarch64"; 1676 - sha256 = "b1a9417678c3adb378015d6e018077a0568d7a4fa57c76c5c6a9d1132fc3e033"; 1676 + sha256 = "58c4cf11db472c71710e913236f02c862aa00d68dcab9d0959c9a4c3c7374eb6"; 1677 1677 } 1678 1678 { 1679 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/pt-PT/firefox-141.0.3.tar.xz"; 1679 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/pt-PT/firefox-142.0.tar.xz"; 1680 1680 locale = "pt-PT"; 1681 1681 arch = "linux-aarch64"; 1682 - sha256 = "f60204eb0e58bba0ce39d8ef14f2b025c98a64e28053b47d20c5388e0e17d7c6"; 1682 + sha256 = "f36b64e965d71e8451ec5d053f3033ec019245c825457a28de68bc8dd9db0398"; 1683 1683 } 1684 1684 { 1685 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/rm/firefox-141.0.3.tar.xz"; 1685 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/rm/firefox-142.0.tar.xz"; 1686 1686 locale = "rm"; 1687 1687 arch = "linux-aarch64"; 1688 - sha256 = "4cc94554dcb45455c054537f6e353280480bb4d0b1db66e101f1035d4318a6fa"; 1688 + sha256 = "a12419dbbc76f3bd63f1a83f8107da7db45c7c02c33d8c146b3bef391f72b2a4"; 1689 1689 } 1690 1690 { 1691 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/ro/firefox-141.0.3.tar.xz"; 1691 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/ro/firefox-142.0.tar.xz"; 1692 1692 locale = "ro"; 1693 1693 arch = "linux-aarch64"; 1694 - sha256 = "67743218f892a0782afe133b6e3c38c119184017f586ae189326a61ff8e97ae7"; 1694 + sha256 = "cd27b440fd9d4038438f026b357dc8feb128b19ca8eb5d0f5aecd2ea3ad9526a"; 1695 1695 } 1696 1696 { 1697 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/ru/firefox-141.0.3.tar.xz"; 1697 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/ru/firefox-142.0.tar.xz"; 1698 1698 locale = "ru"; 1699 1699 arch = "linux-aarch64"; 1700 - sha256 = "e0efc5f04d2290fc22762da16264a77221dfbf27e69441bf6226145c12928412"; 1700 + sha256 = "2256ba507bac112347853da97d0467049be4ad76372ad299991b7be67c403c13"; 1701 1701 } 1702 1702 { 1703 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/sat/firefox-141.0.3.tar.xz"; 1703 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/sat/firefox-142.0.tar.xz"; 1704 1704 locale = "sat"; 1705 1705 arch = "linux-aarch64"; 1706 - sha256 = "6222d863899d104c1a2d101cb0159a7849bc67be693ed87e971bbcca1a93e95e"; 1706 + sha256 = "1f327a5a3769c275995935b7917840d75c3f641a256521852c2bf270af09d787"; 1707 1707 } 1708 1708 { 1709 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/sc/firefox-141.0.3.tar.xz"; 1709 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/sc/firefox-142.0.tar.xz"; 1710 1710 locale = "sc"; 1711 1711 arch = "linux-aarch64"; 1712 - sha256 = "aded2382485893405e06c7a6edce9c2f8253775207948daf00a9269f2e61f428"; 1712 + sha256 = "028fc1caff333f7dcf7cdc9b34a7dbc89f80dd51a34207eb55e2e017e4c0f2f3"; 1713 1713 } 1714 1714 { 1715 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/sco/firefox-141.0.3.tar.xz"; 1715 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/sco/firefox-142.0.tar.xz"; 1716 1716 locale = "sco"; 1717 1717 arch = "linux-aarch64"; 1718 - sha256 = "e6502b6d91e2cf83cc47bdf62c4ae78226156d606b333749d13e112aa1d3c92a"; 1718 + sha256 = "cdfaf057806f77abd4c21df7b74bb51c034df9be18bf96212613e58eeda029db"; 1719 1719 } 1720 1720 { 1721 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/si/firefox-141.0.3.tar.xz"; 1721 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/si/firefox-142.0.tar.xz"; 1722 1722 locale = "si"; 1723 1723 arch = "linux-aarch64"; 1724 - sha256 = "54c846cb3486bd58a0ff3bb8e671812590be7fad256dbb840e69ec785ce86f51"; 1724 + sha256 = "f857f9416dbf0e6b8b27eef8dce9f803c3f8ff3d5e7ce4c10740636782a57e33"; 1725 1725 } 1726 1726 { 1727 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/sk/firefox-141.0.3.tar.xz"; 1727 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/sk/firefox-142.0.tar.xz"; 1728 1728 locale = "sk"; 1729 1729 arch = "linux-aarch64"; 1730 - sha256 = "ff78517d82566c485f541fb15708e8e625257e02bc620619380b0b3b58d91617"; 1730 + sha256 = "0526baa8b197ab5511739369d1914beddc91fcd45b01e2c3bef0d41a073e74a6"; 1731 1731 } 1732 1732 { 1733 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/skr/firefox-141.0.3.tar.xz"; 1733 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/skr/firefox-142.0.tar.xz"; 1734 1734 locale = "skr"; 1735 1735 arch = "linux-aarch64"; 1736 - sha256 = "3e5f1a1c932d4dd15212fd9448fe55e54d5a8287d45f22237dbda4554ffb9f12"; 1736 + sha256 = "0b69b4c3fa1677f5d614dfe7eb9434bcfcf41f6bf6c04452121f5de4ffd9ea4f"; 1737 1737 } 1738 1738 { 1739 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/sl/firefox-141.0.3.tar.xz"; 1739 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/sl/firefox-142.0.tar.xz"; 1740 1740 locale = "sl"; 1741 1741 arch = "linux-aarch64"; 1742 - sha256 = "b6d43db8f84e212bcc84e742802c1d29840dcf0e4f5c78601a3ecf3d7e672a76"; 1742 + sha256 = "005514a0ecace67395aa497986d2896e10d029eac6665e80a353fe64760b5cfa"; 1743 1743 } 1744 1744 { 1745 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/son/firefox-141.0.3.tar.xz"; 1745 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/son/firefox-142.0.tar.xz"; 1746 1746 locale = "son"; 1747 1747 arch = "linux-aarch64"; 1748 - sha256 = "f8e335ff2d1a531401637a50a38d84da3dc8779f835268f52238c1668ad2e8db"; 1748 + sha256 = "0982c3c8286482ff4d58e74e34beb9c5507333102722d8d75b40ca1018b9d0c7"; 1749 1749 } 1750 1750 { 1751 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/sq/firefox-141.0.3.tar.xz"; 1751 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/sq/firefox-142.0.tar.xz"; 1752 1752 locale = "sq"; 1753 1753 arch = "linux-aarch64"; 1754 - sha256 = "f51c81be5da3838fb0b6e23b4d55dde52c5e7a63f617e5a7a7658fd590d13a8d"; 1754 + sha256 = "17d0a0fa71980b593f6fccf4e4685776aba7cc0fe12ebeabd4fb0ca8e8f34d8c"; 1755 1755 } 1756 1756 { 1757 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/sr/firefox-141.0.3.tar.xz"; 1757 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/sr/firefox-142.0.tar.xz"; 1758 1758 locale = "sr"; 1759 1759 arch = "linux-aarch64"; 1760 - sha256 = "7a9e6000f2e7bba8e2f6fb77b6935eade017bbf3ed6c57365811173540871384"; 1760 + sha256 = "86deb314cc5b2d4c74fa06a4fd04ad8a25a0d7a30ff17b064f3f621a7e9d13b6"; 1761 1761 } 1762 1762 { 1763 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/sv-SE/firefox-141.0.3.tar.xz"; 1763 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/sv-SE/firefox-142.0.tar.xz"; 1764 1764 locale = "sv-SE"; 1765 1765 arch = "linux-aarch64"; 1766 - sha256 = "99c71e04a99b098636d685d596110a68f51701692488679193c0f7fdd8b1c76c"; 1766 + sha256 = "facdac4938ba2f3f3995e1a65556ba4eba027cd75b26991001c51eaa8bae1c73"; 1767 1767 } 1768 1768 { 1769 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/szl/firefox-141.0.3.tar.xz"; 1769 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/szl/firefox-142.0.tar.xz"; 1770 1770 locale = "szl"; 1771 1771 arch = "linux-aarch64"; 1772 - sha256 = "0acfda6b3b7fe73a53c572ec423aba18b578d87149d883885ed799bfc8788193"; 1772 + sha256 = "19eadc0fb28e5439b031dfc66341ccf3af30cf0231f9fa97695acfcec99cef31"; 1773 1773 } 1774 1774 { 1775 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/ta/firefox-141.0.3.tar.xz"; 1775 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/ta/firefox-142.0.tar.xz"; 1776 1776 locale = "ta"; 1777 1777 arch = "linux-aarch64"; 1778 - sha256 = "0f229bd2c3b897494e498a1692b6b80f68577ed10d425f7d4e949fb7724a535e"; 1778 + sha256 = "b19438f28cad92c2fbdd7ba9000c04deac9ab5d66b85ab2d1172a4b2f4c23468"; 1779 1779 } 1780 1780 { 1781 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/te/firefox-141.0.3.tar.xz"; 1781 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/te/firefox-142.0.tar.xz"; 1782 1782 locale = "te"; 1783 1783 arch = "linux-aarch64"; 1784 - sha256 = "b7dd94b4ede4a57552a93957629c47bc02fe19ea149c7f86a0b0cafd403652a2"; 1784 + sha256 = "6cbc5f058c6c51daaa152374dbf0ef7a480b2a5b8379ee124ed54619ff659997"; 1785 1785 } 1786 1786 { 1787 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/tg/firefox-141.0.3.tar.xz"; 1787 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/tg/firefox-142.0.tar.xz"; 1788 1788 locale = "tg"; 1789 1789 arch = "linux-aarch64"; 1790 - sha256 = "7eadc936e325cf2918586979197d530a84df3d973a2d278563ce08dfd500c243"; 1790 + sha256 = "9e9552df9c45562e7a6d6ad8b3338268233d9d4876815426b7c83e15c89a15fd"; 1791 1791 } 1792 1792 { 1793 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/th/firefox-141.0.3.tar.xz"; 1793 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/th/firefox-142.0.tar.xz"; 1794 1794 locale = "th"; 1795 1795 arch = "linux-aarch64"; 1796 - sha256 = "20a0b7227ab6cb9084f8503062006d91a8fedfdaefa272dd3b6ce58028befb69"; 1796 + sha256 = "66d924b81ad6d7c721396ebec7d01e56f340267f2f2cf8537c04e0a4e81ba38a"; 1797 1797 } 1798 1798 { 1799 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/tl/firefox-141.0.3.tar.xz"; 1799 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/tl/firefox-142.0.tar.xz"; 1800 1800 locale = "tl"; 1801 1801 arch = "linux-aarch64"; 1802 - sha256 = "184eba362e2b6598d64d69a976ca71a16ac4d5d11415488b60e1dfb59546f1b1"; 1802 + sha256 = "f77af69387be92e855d261bdc0a312c411a537c9b084b4b99edcf92b78b9ea30"; 1803 1803 } 1804 1804 { 1805 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/tr/firefox-141.0.3.tar.xz"; 1805 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/tr/firefox-142.0.tar.xz"; 1806 1806 locale = "tr"; 1807 1807 arch = "linux-aarch64"; 1808 - sha256 = "994c183a385f3bbc526f0c7ddc769c554b3fcc58cfeea278349568a1355eada0"; 1808 + sha256 = "f439a1e898458d0552d166a73377f41226094fec512747e79b44928c95c0f749"; 1809 1809 } 1810 1810 { 1811 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/trs/firefox-141.0.3.tar.xz"; 1811 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/trs/firefox-142.0.tar.xz"; 1812 1812 locale = "trs"; 1813 1813 arch = "linux-aarch64"; 1814 - sha256 = "3f2242f30ebfbe16608b9c9b4ab30c2c0e761b8ea1ce3624af2b0fc19bd03afd"; 1814 + sha256 = "5634c589f31965f0ee274eabf98b98cff0432f7164894cf78cc83787805cb793"; 1815 1815 } 1816 1816 { 1817 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/uk/firefox-141.0.3.tar.xz"; 1817 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/uk/firefox-142.0.tar.xz"; 1818 1818 locale = "uk"; 1819 1819 arch = "linux-aarch64"; 1820 - sha256 = "a73a9944efcd02df6607d4591f5d48fedc0f49b1011402489c4100c8334f6ac1"; 1820 + sha256 = "00c78e103130e596bf1b6a7902ead661b6e95bb09a3020e99fd7988701a52d26"; 1821 1821 } 1822 1822 { 1823 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/ur/firefox-141.0.3.tar.xz"; 1823 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/ur/firefox-142.0.tar.xz"; 1824 1824 locale = "ur"; 1825 1825 arch = "linux-aarch64"; 1826 - sha256 = "bbee6b3acf149d51b806d715fba6fc3d7638255731358b09e1d7084413b3d273"; 1826 + sha256 = "c076d51edd7d0c5eafb82b84b3de8c7b6ec46f8949403b67bdf0873a7815c8f1"; 1827 1827 } 1828 1828 { 1829 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/uz/firefox-141.0.3.tar.xz"; 1829 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/uz/firefox-142.0.tar.xz"; 1830 1830 locale = "uz"; 1831 1831 arch = "linux-aarch64"; 1832 - sha256 = "eb7788a8ff0eb8bcf6ac63d8cd3e012296ed15db7fd29db853c65f7173e3784b"; 1832 + sha256 = "e060c94992b95b4b3489b042f26e5ab424cf853456db4d546cdbaee7783f4f27"; 1833 1833 } 1834 1834 { 1835 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/vi/firefox-141.0.3.tar.xz"; 1835 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/vi/firefox-142.0.tar.xz"; 1836 1836 locale = "vi"; 1837 1837 arch = "linux-aarch64"; 1838 - sha256 = "b9c3d08683826064b99befd1d9a36c450a0a8292454b233ab25fcae2ddda3e9a"; 1838 + sha256 = "94325fb4fc9bc3a37d3c7ce0e28c1caaf3cb053c9816eef204d27408642659ee"; 1839 1839 } 1840 1840 { 1841 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/xh/firefox-141.0.3.tar.xz"; 1841 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/xh/firefox-142.0.tar.xz"; 1842 1842 locale = "xh"; 1843 1843 arch = "linux-aarch64"; 1844 - sha256 = "06dad8694ae5a2b277d3ea2bc9a69a38712c903661cc431c3d84f89659b4e488"; 1844 + sha256 = "e95bd5ad4068b0cfed97dbb0a0cad69820424ba56e9343ac1a6afb9d8fe92b1e"; 1845 1845 } 1846 1846 { 1847 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/zh-CN/firefox-141.0.3.tar.xz"; 1847 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/zh-CN/firefox-142.0.tar.xz"; 1848 1848 locale = "zh-CN"; 1849 1849 arch = "linux-aarch64"; 1850 - sha256 = "df79ba8c1bdfcc3d73fc399bb39cc55ea22f90d37ea953a57b0396b19e75e30c"; 1850 + sha256 = "ae33b4d6307a424367c128754caecf8c6ccde2cd51583bb27b06fd5827984fde"; 1851 1851 } 1852 1852 { 1853 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/linux-aarch64/zh-TW/firefox-141.0.3.tar.xz"; 1853 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/linux-aarch64/zh-TW/firefox-142.0.tar.xz"; 1854 1854 locale = "zh-TW"; 1855 1855 arch = "linux-aarch64"; 1856 - sha256 = "0e51d372cb39355eeb6ca49990f9c6bc3957035b6b400ad7ac332b8222c7c9b0"; 1856 + sha256 = "f8d9d6147d361af3c691dbc8ea4bdc8776642dbcfb0eef52aa07faee918f2e2a"; 1857 1857 } 1858 1858 { 1859 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/ach/Firefox%20141.0.3.dmg"; 1859 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/ach/Firefox%20142.0.dmg"; 1860 1860 locale = "ach"; 1861 1861 arch = "mac"; 1862 - sha256 = "fe4ee5f513284a3445cee74c0c27ccc3de519a8cc9266f98028fc1024388ca3c"; 1862 + sha256 = "4341ce0002c88250bf7767280ef7e376467f44e59403bbcbd3d44d402b78fa5f"; 1863 1863 } 1864 1864 { 1865 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/af/Firefox%20141.0.3.dmg"; 1865 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/af/Firefox%20142.0.dmg"; 1866 1866 locale = "af"; 1867 1867 arch = "mac"; 1868 - sha256 = "1b262463cd00bc437415b59a8b99cdf389b84b3b58a9f44e9e09721a0d1e5a1a"; 1868 + sha256 = "f70282fefa70894de40b30011a20737473121496f66b3366a778e3bb6e28b14a"; 1869 1869 } 1870 1870 { 1871 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/an/Firefox%20141.0.3.dmg"; 1871 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/an/Firefox%20142.0.dmg"; 1872 1872 locale = "an"; 1873 1873 arch = "mac"; 1874 - sha256 = "e497f070cd27e017620246a476d40b375d78b58f96b9c598b4628e60308b0721"; 1874 + sha256 = "935e240f3145f413f55e9c236dd9bfbc43f6fa19b74a0920faee3a63023620a3"; 1875 1875 } 1876 1876 { 1877 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/ar/Firefox%20141.0.3.dmg"; 1877 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/ar/Firefox%20142.0.dmg"; 1878 1878 locale = "ar"; 1879 1879 arch = "mac"; 1880 - sha256 = "a0ec1696a4264fd5c02bc337987cc5c415dca3b0f1f73a0e6f0a5cad6eb3df7e"; 1880 + sha256 = "d7d4aa7fdf7e167de93d6cf40d4c3a00a9a5ab2a57b7235c2f9062724e5bade2"; 1881 1881 } 1882 1882 { 1883 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/ast/Firefox%20141.0.3.dmg"; 1883 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/ast/Firefox%20142.0.dmg"; 1884 1884 locale = "ast"; 1885 1885 arch = "mac"; 1886 - sha256 = "dd68b926e41ddac2badddafd1cc4609cb9b8107bde0f1cd844b359c025d87017"; 1886 + sha256 = "27c410ca47ac3512725d68200bd494e22bc4134803055dd4ac9b86847ae271a8"; 1887 1887 } 1888 1888 { 1889 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/az/Firefox%20141.0.3.dmg"; 1889 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/az/Firefox%20142.0.dmg"; 1890 1890 locale = "az"; 1891 1891 arch = "mac"; 1892 - sha256 = "23e82c76b02ebe131cd283ceda8301e8840e0c5e51948282803c303a3d0b84ea"; 1892 + sha256 = "4a50ed3cb6792253e20fce8555024c97af71660af9cdcb23d55765f2a9b9e537"; 1893 1893 } 1894 1894 { 1895 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/be/Firefox%20141.0.3.dmg"; 1895 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/be/Firefox%20142.0.dmg"; 1896 1896 locale = "be"; 1897 1897 arch = "mac"; 1898 - sha256 = "ae607bd09bb790432d4ba77d4914bffe7d8ccb39ffe23fa1dd60fcd70c05fd9d"; 1898 + sha256 = "3d07b34c4a12a36b195ca55dcbdb65345178786673bd3a44bfd3ace750fd7e00"; 1899 1899 } 1900 1900 { 1901 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/bg/Firefox%20141.0.3.dmg"; 1901 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/bg/Firefox%20142.0.dmg"; 1902 1902 locale = "bg"; 1903 1903 arch = "mac"; 1904 - sha256 = "614f9e3c2a0c30a600e94c96f85ae53c2e9071aed2250a6b10d23093a5ef1a9f"; 1904 + sha256 = "6fc20dde52b54f61bbfd6454982486fac5ee77565ab7a2edc35798d2edad9e72"; 1905 1905 } 1906 1906 { 1907 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/bn/Firefox%20141.0.3.dmg"; 1907 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/bn/Firefox%20142.0.dmg"; 1908 1908 locale = "bn"; 1909 1909 arch = "mac"; 1910 - sha256 = "5fe6b0b130f8e80ffa295fee98d38036a864bb465f3aee289fc2429e5a9358f2"; 1910 + sha256 = "c90f7ba197f3c600002e2aeeaa8bed08ec82fca72097be7d42fb5bd582e5bab7"; 1911 1911 } 1912 1912 { 1913 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/br/Firefox%20141.0.3.dmg"; 1913 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/br/Firefox%20142.0.dmg"; 1914 1914 locale = "br"; 1915 1915 arch = "mac"; 1916 - sha256 = "10bc04de7b31281c58738f05a8795a04ced567e8debd6fbd7847d53420dcd0fa"; 1916 + sha256 = "edd552f746924c087888ca5f35d043cbeeec1c4b2ef39d875f89d326176ce2b9"; 1917 1917 } 1918 1918 { 1919 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/bs/Firefox%20141.0.3.dmg"; 1919 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/bs/Firefox%20142.0.dmg"; 1920 1920 locale = "bs"; 1921 1921 arch = "mac"; 1922 - sha256 = "1045d566ea8ec40344febb89214fbab1bc46c6f28bd3a3e10293f37dfb4f5063"; 1922 + sha256 = "45e4510ab4bc953d299800b07089ea4773610a59b65637d15cd21bfbfabf10d9"; 1923 1923 } 1924 1924 { 1925 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/ca-valencia/Firefox%20141.0.3.dmg"; 1925 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/ca-valencia/Firefox%20142.0.dmg"; 1926 1926 locale = "ca-valencia"; 1927 1927 arch = "mac"; 1928 - sha256 = "33668ba6982b9e4152674ff617b90e878c3d487cc471a113b63bcd4a062f4e6c"; 1928 + sha256 = "c969ce8f59de04cbbb11efeb7265174f0a453ca751ba1407dc4239f9117df30e"; 1929 1929 } 1930 1930 { 1931 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/ca/Firefox%20141.0.3.dmg"; 1931 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/ca/Firefox%20142.0.dmg"; 1932 1932 locale = "ca"; 1933 1933 arch = "mac"; 1934 - sha256 = "17a9543de81d34ade407aad7d1fe6cb0533adbf24b70d514cad1007b2a894c0d"; 1934 + sha256 = "8b858ba62e2a3b911cb9cf367481971910a1ff3ed763e969e1ffbc978d8e74c9"; 1935 1935 } 1936 1936 { 1937 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/cak/Firefox%20141.0.3.dmg"; 1937 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/cak/Firefox%20142.0.dmg"; 1938 1938 locale = "cak"; 1939 1939 arch = "mac"; 1940 - sha256 = "1090cec0a21a4e1d9cf31910b3632d052cb6fb1811b18ab06ed27427e4b20940"; 1940 + sha256 = "0857daed19bda28a4c05d13e8ad5074890027200305e971a1c648ecd2364dc17"; 1941 1941 } 1942 1942 { 1943 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/cs/Firefox%20141.0.3.dmg"; 1943 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/cs/Firefox%20142.0.dmg"; 1944 1944 locale = "cs"; 1945 1945 arch = "mac"; 1946 - sha256 = "6ac4afd1edc5a7cc0bff143d16c04f4cc9cc016282f664a06a1c873ee1b5d7fb"; 1946 + sha256 = "8529af4a2972946a3c99249b561b34c9f3b83cc393c749ba01df33cc8bf50dac"; 1947 1947 } 1948 1948 { 1949 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/cy/Firefox%20141.0.3.dmg"; 1949 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/cy/Firefox%20142.0.dmg"; 1950 1950 locale = "cy"; 1951 1951 arch = "mac"; 1952 - sha256 = "277215999fd59088a7ceda9e8918df27989920c16e326351dda6c75468f1a7a0"; 1952 + sha256 = "bdb881bf47243839b73b55a2c12b8ee51541a129655eaea585155f02e93a5349"; 1953 1953 } 1954 1954 { 1955 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/da/Firefox%20141.0.3.dmg"; 1955 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/da/Firefox%20142.0.dmg"; 1956 1956 locale = "da"; 1957 1957 arch = "mac"; 1958 - sha256 = "ade16d20e8647b3c37c8ca9f04e214abb33262c83d8a64edec468c224857ee27"; 1958 + sha256 = "065d76480584713f94638ad5ce952c23d591711bd0b02b38951b3a366f894f9d"; 1959 1959 } 1960 1960 { 1961 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/de/Firefox%20141.0.3.dmg"; 1961 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/de/Firefox%20142.0.dmg"; 1962 1962 locale = "de"; 1963 1963 arch = "mac"; 1964 - sha256 = "7724319830781b585946bdf5b74577fb63339513d1d8fc92829b7b310e2a98e6"; 1964 + sha256 = "e8d658e2292fe88ac4bd623303bcc24bd87eadb43b6a5ea5d0e216c35c434737"; 1965 1965 } 1966 1966 { 1967 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/dsb/Firefox%20141.0.3.dmg"; 1967 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/dsb/Firefox%20142.0.dmg"; 1968 1968 locale = "dsb"; 1969 1969 arch = "mac"; 1970 - sha256 = "fdf0dee85f200db133600c4d461b3750cf3e6849821d83dd949935bf5843ca16"; 1970 + sha256 = "964525213b7c6bb4950b585598c2c5e0fde91919826378d2a41c6a1c9d0b323a"; 1971 1971 } 1972 1972 { 1973 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/el/Firefox%20141.0.3.dmg"; 1973 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/el/Firefox%20142.0.dmg"; 1974 1974 locale = "el"; 1975 1975 arch = "mac"; 1976 - sha256 = "2685246fdee90d48dbfe13c75e4f702d5e413ea1ab696639bf0e83e05b495a5e"; 1976 + sha256 = "cf11c802fdb71294c85cab2e95db5cf5965d1f1fcbfb6119a1a8d02e05549de6"; 1977 1977 } 1978 1978 { 1979 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/en-CA/Firefox%20141.0.3.dmg"; 1979 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/en-CA/Firefox%20142.0.dmg"; 1980 1980 locale = "en-CA"; 1981 1981 arch = "mac"; 1982 - sha256 = "c99d230960d93b3f6376b6e299593bcfaf80680b2333c2373a73ed9be6aaea54"; 1982 + sha256 = "3a97157b0a0c12820506e42bd18470fb5bc8b77f6f4198f5cfa36f677fb53fb4"; 1983 1983 } 1984 1984 { 1985 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/en-GB/Firefox%20141.0.3.dmg"; 1985 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/en-GB/Firefox%20142.0.dmg"; 1986 1986 locale = "en-GB"; 1987 1987 arch = "mac"; 1988 - sha256 = "46942a1dad7d20c46fdf3b7b2c3dda0bf7ec87eda34765600838f97a4f6ac1e7"; 1988 + sha256 = "a94c7636941c72be838546e304f98f94cacdf95124ebf33de7bece24fae6f1b0"; 1989 1989 } 1990 1990 { 1991 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/en-US/Firefox%20141.0.3.dmg"; 1991 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/en-US/Firefox%20142.0.dmg"; 1992 1992 locale = "en-US"; 1993 1993 arch = "mac"; 1994 - sha256 = "bb922cda690543bddaa1fbc3b3cba508c60774832643452bc266595331f42db1"; 1994 + sha256 = "cc0ce6b3ec64d064c16187f92ca4a8df5a21a1d7aa2f79a9e82b44602f2b1a0f"; 1995 1995 } 1996 1996 { 1997 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/eo/Firefox%20141.0.3.dmg"; 1997 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/eo/Firefox%20142.0.dmg"; 1998 1998 locale = "eo"; 1999 1999 arch = "mac"; 2000 - sha256 = "826ab0d511294ae77c0c8d7ee50a5449b29c87138aa3ad35ca4cf1fa5d412da4"; 2000 + sha256 = "0805049d7deec19cea01bf5947231442d37e486ee90d442deb647e2546481248"; 2001 2001 } 2002 2002 { 2003 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/es-AR/Firefox%20141.0.3.dmg"; 2003 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/es-AR/Firefox%20142.0.dmg"; 2004 2004 locale = "es-AR"; 2005 2005 arch = "mac"; 2006 - sha256 = "0a7e1ea2de529ffb1bc604638d5bf10797b7fa7b1c17e85f09d4ac9e3d0d3ad7"; 2006 + sha256 = "c393d3298fe486f801033b75f46c0e98258d79507df469681f096a18b86068ed"; 2007 2007 } 2008 2008 { 2009 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/es-CL/Firefox%20141.0.3.dmg"; 2009 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/es-CL/Firefox%20142.0.dmg"; 2010 2010 locale = "es-CL"; 2011 2011 arch = "mac"; 2012 - sha256 = "840f73937407c1fd64c6b87ab2c37aa0ecf29d52a12e64e9c93cbeb2cdc9a80b"; 2012 + sha256 = "c1a78c7d5914e96a1bf96399f208d3c53805bbff0994ea65c990656de6711332"; 2013 2013 } 2014 2014 { 2015 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/es-ES/Firefox%20141.0.3.dmg"; 2015 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/es-ES/Firefox%20142.0.dmg"; 2016 2016 locale = "es-ES"; 2017 2017 arch = "mac"; 2018 - sha256 = "f13dfb899c830e765bb4daf655c59932ce2a56de9a26b3472066324aa213698b"; 2018 + sha256 = "bec5cf38486390dfbb7e95fa71bb23226debca760e15aa19d67fe9b0f1df264c"; 2019 2019 } 2020 2020 { 2021 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/es-MX/Firefox%20141.0.3.dmg"; 2021 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/es-MX/Firefox%20142.0.dmg"; 2022 2022 locale = "es-MX"; 2023 2023 arch = "mac"; 2024 - sha256 = "09909157b6a3c443f699adca7d86d7426413b229235c60547668a1cf1d49a6f6"; 2024 + sha256 = "07dd5830487c194b078ed4f2aba101ae559b89e11a4f69d5608969664489ee33"; 2025 2025 } 2026 2026 { 2027 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/et/Firefox%20141.0.3.dmg"; 2027 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/et/Firefox%20142.0.dmg"; 2028 2028 locale = "et"; 2029 2029 arch = "mac"; 2030 - sha256 = "ef7bede85a21ef30007a04e7952f4865ee78b593cadeb05b72a2e271a0549cc8"; 2030 + sha256 = "adf3e037eeda72569dee39b3ad4aa3ee180f9e733f327ead0a03293c28c7efed"; 2031 2031 } 2032 2032 { 2033 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/eu/Firefox%20141.0.3.dmg"; 2033 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/eu/Firefox%20142.0.dmg"; 2034 2034 locale = "eu"; 2035 2035 arch = "mac"; 2036 - sha256 = "1eb1c38d05bd0275002a3badd4a4e1b1140bd6630ac76634dde34dae17e1169e"; 2036 + sha256 = "363fb6c488ee0d21ce2662c0b588d37721bfead9582521e938a3dd5eedb43382"; 2037 2037 } 2038 2038 { 2039 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/fa/Firefox%20141.0.3.dmg"; 2039 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/fa/Firefox%20142.0.dmg"; 2040 2040 locale = "fa"; 2041 2041 arch = "mac"; 2042 - sha256 = "0bd4b3819f8f6e463da0eb12dc41ca12d1dc6b65e597ff811c79065872229cf4"; 2042 + sha256 = "92e12ec109ead629f1ee6fafd6dd1f45e6c98c272d2b333d97a9f0d823385c82"; 2043 2043 } 2044 2044 { 2045 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/ff/Firefox%20141.0.3.dmg"; 2045 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/ff/Firefox%20142.0.dmg"; 2046 2046 locale = "ff"; 2047 2047 arch = "mac"; 2048 - sha256 = "97934e1c6396fe20fb8a02f07cd20eabee96d08c9de137dda3a81db2931bdfbc"; 2048 + sha256 = "f8f8076cd197d8b33d615a6a72ef46fac6839c4d1c4380b7fe44fa6a962969bf"; 2049 2049 } 2050 2050 { 2051 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/fi/Firefox%20141.0.3.dmg"; 2051 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/fi/Firefox%20142.0.dmg"; 2052 2052 locale = "fi"; 2053 2053 arch = "mac"; 2054 - sha256 = "cdd665861133f2544faa94a0f35efa0c0ce70c3a53df9575b66fc5d34e32cd1e"; 2054 + sha256 = "12a12df58ba57ae364a5cdc348d25091bf547f4079b3a2dee892cbd0212f641e"; 2055 2055 } 2056 2056 { 2057 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/fr/Firefox%20141.0.3.dmg"; 2057 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/fr/Firefox%20142.0.dmg"; 2058 2058 locale = "fr"; 2059 2059 arch = "mac"; 2060 - sha256 = "de491c95711aa2fad263eb882d3df85d814999d77785321b3285b6da0322c955"; 2060 + sha256 = "2c8ad051b60f24fe3002627e170231c155a8f009104f0324f69a81fb84e328a1"; 2061 2061 } 2062 2062 { 2063 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/fur/Firefox%20141.0.3.dmg"; 2063 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/fur/Firefox%20142.0.dmg"; 2064 2064 locale = "fur"; 2065 2065 arch = "mac"; 2066 - sha256 = "12c4fbc2222b77e4a7864f01989b13d2388025550fb31a8daa3670015753df87"; 2066 + sha256 = "75f269d7b3ff0cec1c0756f68ff5f93734caec4af9292805501c85fe8a2edf8b"; 2067 2067 } 2068 2068 { 2069 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/fy-NL/Firefox%20141.0.3.dmg"; 2069 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/fy-NL/Firefox%20142.0.dmg"; 2070 2070 locale = "fy-NL"; 2071 2071 arch = "mac"; 2072 - sha256 = "5e9b832f8d9dc946fa30a1dc92aeb0096ff81c13c14e990a2a2b5f9740a18d68"; 2072 + sha256 = "bf962c183c63d8c31245b76d3aa969448055ed776f7eabb7f84d62dfe9435efd"; 2073 2073 } 2074 2074 { 2075 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/ga-IE/Firefox%20141.0.3.dmg"; 2075 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/ga-IE/Firefox%20142.0.dmg"; 2076 2076 locale = "ga-IE"; 2077 2077 arch = "mac"; 2078 - sha256 = "f40457fb8375a1d708aba9bb59e95fdae5fa375c77bca3a1ed2309627b979cb0"; 2078 + sha256 = "89fb9c8845b97ba0e035ad6d5de77cfea15a90a7dfc8b3b4a1188f5d639950e4"; 2079 2079 } 2080 2080 { 2081 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/gd/Firefox%20141.0.3.dmg"; 2081 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/gd/Firefox%20142.0.dmg"; 2082 2082 locale = "gd"; 2083 2083 arch = "mac"; 2084 - sha256 = "a361ba1570456cc1973d7ac41ea70315a68dea38f2acc524aaa716d3e07401d8"; 2084 + sha256 = "d0bc4c08e1b5adebaf0ff5f882468a5c6e2a91e44b9ed3ef3bff74874bf6adb6"; 2085 2085 } 2086 2086 { 2087 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/gl/Firefox%20141.0.3.dmg"; 2087 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/gl/Firefox%20142.0.dmg"; 2088 2088 locale = "gl"; 2089 2089 arch = "mac"; 2090 - sha256 = "7bfd06d194a071ea73c7104b252d8c485577f96d1248b7e45f885fcc16282bfc"; 2090 + sha256 = "417de4bc466800813de91a0f9511fccfb7e2b3c487b3953a8bfb9474bf244372"; 2091 2091 } 2092 2092 { 2093 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/gn/Firefox%20141.0.3.dmg"; 2093 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/gn/Firefox%20142.0.dmg"; 2094 2094 locale = "gn"; 2095 2095 arch = "mac"; 2096 - sha256 = "10581e91db1520aae3dfe2f022d4a63a72bf35d3ed370fc9c7d2139ad18efc31"; 2096 + sha256 = "2238c8517dfb6a19fcf74e2aaf9d3fb6b32c1500df39df09a807051c91628f4f"; 2097 2097 } 2098 2098 { 2099 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/gu-IN/Firefox%20141.0.3.dmg"; 2099 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/gu-IN/Firefox%20142.0.dmg"; 2100 2100 locale = "gu-IN"; 2101 2101 arch = "mac"; 2102 - sha256 = "46a8bcb2fdf8beba7b6d1d2dd865a5d946eb9831cf2de829a9fa95ad52278a6c"; 2102 + sha256 = "0a6b50c997b8b6dda0abb2f79d7e0b55f9b5fefc4c3d3fc54f485309c7a42f28"; 2103 2103 } 2104 2104 { 2105 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/he/Firefox%20141.0.3.dmg"; 2105 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/he/Firefox%20142.0.dmg"; 2106 2106 locale = "he"; 2107 2107 arch = "mac"; 2108 - sha256 = "c6d9b59bfb3130b793b69adf7a82994d2cb37dcc48f12d0a26db85692e596f71"; 2108 + sha256 = "0403bdf80e538c0e6393154dfa6395bf67ba846e22fb2e3d2226e77056767735"; 2109 2109 } 2110 2110 { 2111 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/hi-IN/Firefox%20141.0.3.dmg"; 2111 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/hi-IN/Firefox%20142.0.dmg"; 2112 2112 locale = "hi-IN"; 2113 2113 arch = "mac"; 2114 - sha256 = "e13e83521bac0656a2fcf16d315d2cfb7b0012e9751e8d9bb60ff41b983f6ef5"; 2114 + sha256 = "fa29a5c228b0a388105b0435ee8391ade40a64d989c7061538b08f3b8bdf033a"; 2115 2115 } 2116 2116 { 2117 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/hr/Firefox%20141.0.3.dmg"; 2117 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/hr/Firefox%20142.0.dmg"; 2118 2118 locale = "hr"; 2119 2119 arch = "mac"; 2120 - sha256 = "d4f2a6217677d69961202c43789b0642abc11e6051480d621dd915d71afd0343"; 2120 + sha256 = "a68ec11b400270e0c92b7909830a138d22c62e6d1c5a1c3e48ede46064c132a2"; 2121 2121 } 2122 2122 { 2123 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/hsb/Firefox%20141.0.3.dmg"; 2123 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/hsb/Firefox%20142.0.dmg"; 2124 2124 locale = "hsb"; 2125 2125 arch = "mac"; 2126 - sha256 = "3a477450a0a4bb97a5cc6fc5dbe27c691c78476368fbeef1a1081301eb6e78b7"; 2126 + sha256 = "975338659f06e26bc0ad861d4e3812f450d322213d3eae6adf1813dbdcd228b9"; 2127 2127 } 2128 2128 { 2129 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/hu/Firefox%20141.0.3.dmg"; 2129 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/hu/Firefox%20142.0.dmg"; 2130 2130 locale = "hu"; 2131 2131 arch = "mac"; 2132 - sha256 = "6cb7b635a32f588656016610b4df95cfb2287285c16cce9688600ce63b49b7f4"; 2132 + sha256 = "2e23dcdeca7d097e7391f128fb1318b513f2a336b726982f26cdace967228bd2"; 2133 2133 } 2134 2134 { 2135 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/hy-AM/Firefox%20141.0.3.dmg"; 2135 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/hy-AM/Firefox%20142.0.dmg"; 2136 2136 locale = "hy-AM"; 2137 2137 arch = "mac"; 2138 - sha256 = "6095d30504f6796e620b62301cd9313d6edab557beacd466ce72dc25279b7ab6"; 2138 + sha256 = "0fd453412aa479f31ea0a66fbaeeb384627cef88c84b9e2607703264fd1dafd8"; 2139 2139 } 2140 2140 { 2141 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/ia/Firefox%20141.0.3.dmg"; 2141 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/ia/Firefox%20142.0.dmg"; 2142 2142 locale = "ia"; 2143 2143 arch = "mac"; 2144 - sha256 = "e8b2dcffbb552ff2cb43e8cc1a525c5648cefb917f39b212828213e4b10470e5"; 2144 + sha256 = "3d750e9c0885502b57d97ff2bea8eaf00f1d205dba1cb5e64ded6fbed04ba53a"; 2145 2145 } 2146 2146 { 2147 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/id/Firefox%20141.0.3.dmg"; 2147 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/id/Firefox%20142.0.dmg"; 2148 2148 locale = "id"; 2149 2149 arch = "mac"; 2150 - sha256 = "3b2ae0efe9bbcd37c64c2965170975caf9ead3e4cc33f4be298cebf55a23b3fa"; 2150 + sha256 = "52a7958c8202c6657c09560a51398fea3288dc363f0e76cb5c617ae9ae4b1d79"; 2151 2151 } 2152 2152 { 2153 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/is/Firefox%20141.0.3.dmg"; 2153 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/is/Firefox%20142.0.dmg"; 2154 2154 locale = "is"; 2155 2155 arch = "mac"; 2156 - sha256 = "7b1b115b29d476b69ba1e88cc9db5007e4c4b208969e221d3e80216b875d8503"; 2156 + sha256 = "d6b1a5594f7c676add3eda5496112934620d28d3ba91bd998370b216391366b0"; 2157 2157 } 2158 2158 { 2159 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/it/Firefox%20141.0.3.dmg"; 2159 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/it/Firefox%20142.0.dmg"; 2160 2160 locale = "it"; 2161 2161 arch = "mac"; 2162 - sha256 = "c93acbf4407d58b4573f6caa9b277cd12a08811e6057bc4629d726db8f6ed3b3"; 2162 + sha256 = "2f101a09cffe3f9753b0013e2d2f75ec3b424fb2573461d70e3f8090ed33ac64"; 2163 2163 } 2164 2164 { 2165 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/ja-JP-mac/Firefox%20141.0.3.dmg"; 2165 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/ja-JP-mac/Firefox%20142.0.dmg"; 2166 2166 locale = "ja-JP-mac"; 2167 2167 arch = "mac"; 2168 - sha256 = "0a479b7510dd46e753b087ffddd177b3bdc6109189d3a4380fc02bbb22520d30"; 2168 + sha256 = "57fe48a002ecf9ae4eb8dc61172b415b6d475c9a4056481fd0c7a00d6653726c"; 2169 2169 } 2170 2170 { 2171 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/ka/Firefox%20141.0.3.dmg"; 2171 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/ka/Firefox%20142.0.dmg"; 2172 2172 locale = "ka"; 2173 2173 arch = "mac"; 2174 - sha256 = "8ab9148451d9872881d055dc415dbea8e86bf37a98e7823dacd7253dd3552c30"; 2174 + sha256 = "ab7539e3c812221333fe0d91ea44e79007af509761c805770fe6151805f29ee5"; 2175 2175 } 2176 2176 { 2177 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/kab/Firefox%20141.0.3.dmg"; 2177 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/kab/Firefox%20142.0.dmg"; 2178 2178 locale = "kab"; 2179 2179 arch = "mac"; 2180 - sha256 = "acef8bc598d82334be458ce69ef6f51e02ca19626c6410a87fb3a4bbe2e03d5d"; 2180 + sha256 = "75c4be686995728b16b62c15b5b8f95de65424c53b70530c692e51024661a170"; 2181 2181 } 2182 2182 { 2183 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/kk/Firefox%20141.0.3.dmg"; 2183 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/kk/Firefox%20142.0.dmg"; 2184 2184 locale = "kk"; 2185 2185 arch = "mac"; 2186 - sha256 = "9c67da1022095444d85d12030bd188d6bb7c783543af9656ae572ef2ac23d1f5"; 2186 + sha256 = "9b1f67591976b72203346391172c6e8e431e454a3dba14fe190eb74a8acfe8db"; 2187 2187 } 2188 2188 { 2189 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/km/Firefox%20141.0.3.dmg"; 2189 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/km/Firefox%20142.0.dmg"; 2190 2190 locale = "km"; 2191 2191 arch = "mac"; 2192 - sha256 = "bf20a6b3d30e8f102f699ec38c4d110f8d679b0a37cc4a8ba42cecdd668ea8e3"; 2192 + sha256 = "4344634a43f5699763c4f1cdc46420fc7247882470a3365fd76baa5f12a76963"; 2193 2193 } 2194 2194 { 2195 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/kn/Firefox%20141.0.3.dmg"; 2195 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/kn/Firefox%20142.0.dmg"; 2196 2196 locale = "kn"; 2197 2197 arch = "mac"; 2198 - sha256 = "403c94d88679552b2eec61f947ed4321c7bb7ecdcd1af3447d3a62a80e8208b7"; 2198 + sha256 = "1b30a75ef85f2b0ed5603d5f847874cf96ba450245453d5dc1431f1a00601970"; 2199 2199 } 2200 2200 { 2201 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/ko/Firefox%20141.0.3.dmg"; 2201 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/ko/Firefox%20142.0.dmg"; 2202 2202 locale = "ko"; 2203 2203 arch = "mac"; 2204 - sha256 = "b2524ae1e6e51231ef18bd401984d6d6849eeb0fec026673b982a7fccb811610"; 2204 + sha256 = "5973c8b666a61845335bb2fb3299c78588f1a81a0edd9cfb668ca75e7a4288d4"; 2205 2205 } 2206 2206 { 2207 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/lij/Firefox%20141.0.3.dmg"; 2207 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/lij/Firefox%20142.0.dmg"; 2208 2208 locale = "lij"; 2209 2209 arch = "mac"; 2210 - sha256 = "67082cf180f09dff8d7abb6d134715c57e6bb5e69f4333d9cbf934d64b57ed21"; 2210 + sha256 = "53a3c2965120ad8a27d15578eea9687747b05b2a908e5566cdf0fae34a39e98f"; 2211 2211 } 2212 2212 { 2213 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/lt/Firefox%20141.0.3.dmg"; 2213 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/lt/Firefox%20142.0.dmg"; 2214 2214 locale = "lt"; 2215 2215 arch = "mac"; 2216 - sha256 = "73e78a66b83e8fc1d322d62da0e5a9867107aae4402e3e66300b094429cb6c08"; 2216 + sha256 = "de50b2f81543a471c381041dfdbe8b41b5547c3dab0ba212939796e1b881adf9"; 2217 2217 } 2218 2218 { 2219 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/lv/Firefox%20141.0.3.dmg"; 2219 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/lv/Firefox%20142.0.dmg"; 2220 2220 locale = "lv"; 2221 2221 arch = "mac"; 2222 - sha256 = "8118afb0a22a20b3f169c304eeb41a3440fc7b166840337bdf38bc622d47b1e2"; 2222 + sha256 = "3fcdbbf864fd2d246e0ee3229b3ab0f1094af9cc64121fb5d1520f60bc0d44ab"; 2223 2223 } 2224 2224 { 2225 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/mk/Firefox%20141.0.3.dmg"; 2225 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/mk/Firefox%20142.0.dmg"; 2226 2226 locale = "mk"; 2227 2227 arch = "mac"; 2228 - sha256 = "fa955e41454ec3cb3a848b8aaf3b6f0aa2e415c4e357c4d561f103f65433fecb"; 2228 + sha256 = "21f06d3daaee1bd5d6474ee87c64585b5c249e7e5ad342dbd59bf4447097d22d"; 2229 2229 } 2230 2230 { 2231 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/mr/Firefox%20141.0.3.dmg"; 2231 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/mr/Firefox%20142.0.dmg"; 2232 2232 locale = "mr"; 2233 2233 arch = "mac"; 2234 - sha256 = "e7d3301568b49163d2887644e4fcbc0d24c6fae19086352d3fe36cfd4eb07e13"; 2234 + sha256 = "ca6cea513caa1a5ec6658a27397f763fef29bc6875f9596ee0012e1a627c3a16"; 2235 2235 } 2236 2236 { 2237 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/ms/Firefox%20141.0.3.dmg"; 2237 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/ms/Firefox%20142.0.dmg"; 2238 2238 locale = "ms"; 2239 2239 arch = "mac"; 2240 - sha256 = "ea87596de497e8c34fdd8066c20da7011963f89e364b99aba63ce6252e4e1c29"; 2240 + sha256 = "2d55ca7bad3e5a3627c41fc7b38c13827dcc308615fe50dff6a84cda37034a14"; 2241 2241 } 2242 2242 { 2243 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/my/Firefox%20141.0.3.dmg"; 2243 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/my/Firefox%20142.0.dmg"; 2244 2244 locale = "my"; 2245 2245 arch = "mac"; 2246 - sha256 = "1f88103e6bf4539bb28b8b99fa9e176c85c416e55d0cf92dc8429eec0435c0ff"; 2246 + sha256 = "696c5292317d76d6931b24d62bc9d187ef0df57f2d546ffc08e829b15f5f9338"; 2247 2247 } 2248 2248 { 2249 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/nb-NO/Firefox%20141.0.3.dmg"; 2249 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/nb-NO/Firefox%20142.0.dmg"; 2250 2250 locale = "nb-NO"; 2251 2251 arch = "mac"; 2252 - sha256 = "4ac0e10d8cf5e01e521097a795a71b1099f4d2a29291432f2071df4154a8b8eb"; 2252 + sha256 = "af9c6ddda9f9ec3536a30fdfc72405e6b6d03abd33c82d33a4f47898d11bbd6e"; 2253 2253 } 2254 2254 { 2255 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/ne-NP/Firefox%20141.0.3.dmg"; 2255 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/ne-NP/Firefox%20142.0.dmg"; 2256 2256 locale = "ne-NP"; 2257 2257 arch = "mac"; 2258 - sha256 = "8b9374a47e77243acb1fa49a693ccf3fde19f070b413bf8ebd9056dee5f88a3a"; 2258 + sha256 = "53ec6ef1f602f495ed2a037e78f46a5bb2d28dff8c647bfb49a61180062502a4"; 2259 2259 } 2260 2260 { 2261 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/nl/Firefox%20141.0.3.dmg"; 2261 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/nl/Firefox%20142.0.dmg"; 2262 2262 locale = "nl"; 2263 2263 arch = "mac"; 2264 - sha256 = "a9ec1c87d44478fdd1e16fc8d4d5df0f08394a6d99b6234083548a097dc9f714"; 2264 + sha256 = "391683d047b3524f244a40633d74e9e295a959847b793a6f8ea5c83074441ae5"; 2265 2265 } 2266 2266 { 2267 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/nn-NO/Firefox%20141.0.3.dmg"; 2267 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/nn-NO/Firefox%20142.0.dmg"; 2268 2268 locale = "nn-NO"; 2269 2269 arch = "mac"; 2270 - sha256 = "44bbf70a73c514f16a284435a05b8437329200566ee17b4ac280b6b3bcc44bc7"; 2270 + sha256 = "5b7d9599108975720d4d8ebd05db95d29da33749d1d6ca35d9794e6800f993dc"; 2271 2271 } 2272 2272 { 2273 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/oc/Firefox%20141.0.3.dmg"; 2273 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/oc/Firefox%20142.0.dmg"; 2274 2274 locale = "oc"; 2275 2275 arch = "mac"; 2276 - sha256 = "982ddc81f4800ecb3bede88e2f17eccc4288a8b8e93523677227ee5b830c8b47"; 2276 + sha256 = "83de1844115941bd211f76fc064f36c359a418b9f07dc50afea7944731b15a0c"; 2277 2277 } 2278 2278 { 2279 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/pa-IN/Firefox%20141.0.3.dmg"; 2279 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/pa-IN/Firefox%20142.0.dmg"; 2280 2280 locale = "pa-IN"; 2281 2281 arch = "mac"; 2282 - sha256 = "e570a2b996c3e7ffb01bfd0875f183c87a992f5c2cb246e9f68db4e864082653"; 2282 + sha256 = "c5925a3595907e4f31cf4731f4778a0e3747a6e0aa24d8cef7ce2c8cbd95945a"; 2283 2283 } 2284 2284 { 2285 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/pl/Firefox%20141.0.3.dmg"; 2285 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/pl/Firefox%20142.0.dmg"; 2286 2286 locale = "pl"; 2287 2287 arch = "mac"; 2288 - sha256 = "044fb31a83a627fb1d475c8683fb66bc4098d14ac47729cfe1a0bff1609bcda8"; 2288 + sha256 = "44b373d5aff7a9b1b450a9d14a7f1a4ca2bb4a222a37aae421ad6a955efebe96"; 2289 2289 } 2290 2290 { 2291 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/pt-BR/Firefox%20141.0.3.dmg"; 2291 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/pt-BR/Firefox%20142.0.dmg"; 2292 2292 locale = "pt-BR"; 2293 2293 arch = "mac"; 2294 - sha256 = "1d4ac61aff3f7c14ba5867b7dfa5e098842bf0f25a24611abe303c1fb5536ba0"; 2294 + sha256 = "252d327c4512a7fc3d0e685231f1d0b002af460427ffa095138da0ac2986349e"; 2295 2295 } 2296 2296 { 2297 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/pt-PT/Firefox%20141.0.3.dmg"; 2297 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/pt-PT/Firefox%20142.0.dmg"; 2298 2298 locale = "pt-PT"; 2299 2299 arch = "mac"; 2300 - sha256 = "ad848efcaf811e3ac8915baccce23e4520546f8923f27c1fe4b07cec4203546e"; 2300 + sha256 = "6228dc5de24d9daaf2360767625f7f994d522defe8db57feba7a982034624b34"; 2301 2301 } 2302 2302 { 2303 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/rm/Firefox%20141.0.3.dmg"; 2303 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/rm/Firefox%20142.0.dmg"; 2304 2304 locale = "rm"; 2305 2305 arch = "mac"; 2306 - sha256 = "019f188b80dfcb513af4e623cc4b7c4c983c0bf65ed888ee9f46f4d92b1c7048"; 2306 + sha256 = "f9ed3ad0f8c332e7404e8b337c6ba70036bfa3ff2412d51dc608154d5c7112c3"; 2307 2307 } 2308 2308 { 2309 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/ro/Firefox%20141.0.3.dmg"; 2309 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/ro/Firefox%20142.0.dmg"; 2310 2310 locale = "ro"; 2311 2311 arch = "mac"; 2312 - sha256 = "6bc2b001cd606ec3eedc88cc5736f67d2aada18ebbd46bcc8761cf4918b99e6e"; 2312 + sha256 = "ff8f09628ae4f221a8cf76092786623dfa478eb6be851ee5fae2f5683aa8f19d"; 2313 2313 } 2314 2314 { 2315 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/ru/Firefox%20141.0.3.dmg"; 2315 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/ru/Firefox%20142.0.dmg"; 2316 2316 locale = "ru"; 2317 2317 arch = "mac"; 2318 - sha256 = "b82cf9e1960b92cddf95fbd3a8174c1a2bdc387be780893780433f2e518d84f9"; 2318 + sha256 = "2ff2dcbfad1dbe88be2cf790fc16aeb69f4a92515b9f9daa628b672a8420e377"; 2319 2319 } 2320 2320 { 2321 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/sat/Firefox%20141.0.3.dmg"; 2321 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/sat/Firefox%20142.0.dmg"; 2322 2322 locale = "sat"; 2323 2323 arch = "mac"; 2324 - sha256 = "18f71579ad0078afaf5783a54b70463bc3b2e3e72f87e4ab9f01d22e60fee14c"; 2324 + sha256 = "bb90cdeca2802e9e19ecf88d4744844aed39a2d20655749c43574bab536fee4c"; 2325 2325 } 2326 2326 { 2327 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/sc/Firefox%20141.0.3.dmg"; 2327 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/sc/Firefox%20142.0.dmg"; 2328 2328 locale = "sc"; 2329 2329 arch = "mac"; 2330 - sha256 = "c586dcb0f8fa6734fd8a822c4a54b94b4a559ac6220d884bc69d9b50f7a32d3e"; 2330 + sha256 = "35311be30a210d5fbfe3430db8617abb9c9d85214b1ade05318397d2b4fb133c"; 2331 2331 } 2332 2332 { 2333 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/sco/Firefox%20141.0.3.dmg"; 2333 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/sco/Firefox%20142.0.dmg"; 2334 2334 locale = "sco"; 2335 2335 arch = "mac"; 2336 - sha256 = "aa5b9501fd5c553b5c9ac1110b91d11de0f262b16c4068c3459d22c35639c4b4"; 2336 + sha256 = "af1b6f912dc48e11bb4f6afbda3c6a2412e784669e60f605d044584348b7d43a"; 2337 2337 } 2338 2338 { 2339 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/si/Firefox%20141.0.3.dmg"; 2339 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/si/Firefox%20142.0.dmg"; 2340 2340 locale = "si"; 2341 2341 arch = "mac"; 2342 - sha256 = "b6bd43406ad0175d45cd4990ea80b83e320459627038cc018ee01aaccb49ae7e"; 2342 + sha256 = "5ed11670f2b077f99d38453c6e0c61efd2545ef93948e753c7562487a1122177"; 2343 2343 } 2344 2344 { 2345 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/sk/Firefox%20141.0.3.dmg"; 2345 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/sk/Firefox%20142.0.dmg"; 2346 2346 locale = "sk"; 2347 2347 arch = "mac"; 2348 - sha256 = "62649f448961ccdd37f322422eba89edc607ec48d64fa93a851ba1aff3b991a9"; 2348 + sha256 = "2edcc356df44e3b9223177c6b6a89bf63b5a24e3785341ac209d3ec834768eec"; 2349 2349 } 2350 2350 { 2351 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/skr/Firefox%20141.0.3.dmg"; 2351 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/skr/Firefox%20142.0.dmg"; 2352 2352 locale = "skr"; 2353 2353 arch = "mac"; 2354 - sha256 = "2c23f1cd8d302488406e96b06870aae37a7ee8cd8840733451832859953345ab"; 2354 + sha256 = "b6fe08ab8dd99794106f5dfeff0f294926d6f54690e4b616505eb70195a0c048"; 2355 2355 } 2356 2356 { 2357 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/sl/Firefox%20141.0.3.dmg"; 2357 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/sl/Firefox%20142.0.dmg"; 2358 2358 locale = "sl"; 2359 2359 arch = "mac"; 2360 - sha256 = "da380f30342abb3904c2d43a7e3250454cfb4a9c79f72f10de57d342c7e86988"; 2360 + sha256 = "ab3f930c019bf88b296b3861a8eed095ec80684ca51ad96ce805b4f26a4c452e"; 2361 2361 } 2362 2362 { 2363 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/son/Firefox%20141.0.3.dmg"; 2363 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/son/Firefox%20142.0.dmg"; 2364 2364 locale = "son"; 2365 2365 arch = "mac"; 2366 - sha256 = "c5e732b1d87149a64dad91de0f6ee90509bf13023c6be74706ada3a33399b5ac"; 2366 + sha256 = "2911806bd0e20bc2bffe220b36c207e2df4376d101f730f0a74b8856b0ef62fe"; 2367 2367 } 2368 2368 { 2369 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/sq/Firefox%20141.0.3.dmg"; 2369 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/sq/Firefox%20142.0.dmg"; 2370 2370 locale = "sq"; 2371 2371 arch = "mac"; 2372 - sha256 = "c44df5f08f47882dd9bf57b7bf62141517e6d8384e6c1425e3bbd1cd629f9ccb"; 2372 + sha256 = "7bf8d73482bf7999d1eb8079213771867415fd65ff03c96b82f22251c961dd84"; 2373 2373 } 2374 2374 { 2375 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/sr/Firefox%20141.0.3.dmg"; 2375 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/sr/Firefox%20142.0.dmg"; 2376 2376 locale = "sr"; 2377 2377 arch = "mac"; 2378 - sha256 = "a865e597136910a69ce4441227b702b4ca8f676614847d712419551c38fd906a"; 2378 + sha256 = "b9f9c929f696ed684a5faf6260547ce0bddeb3f5e5c5f11780fc1b69bc9e625a"; 2379 2379 } 2380 2380 { 2381 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/sv-SE/Firefox%20141.0.3.dmg"; 2381 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/sv-SE/Firefox%20142.0.dmg"; 2382 2382 locale = "sv-SE"; 2383 2383 arch = "mac"; 2384 - sha256 = "e1004e6ca315fda078df6da410f3fe004ab45931d48bec57d1d3d1b4e102035e"; 2384 + sha256 = "a169a7415c5ba091b8c979cce851a534ac4dcbf21e90c370964831ac3861d76f"; 2385 2385 } 2386 2386 { 2387 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/szl/Firefox%20141.0.3.dmg"; 2387 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/szl/Firefox%20142.0.dmg"; 2388 2388 locale = "szl"; 2389 2389 arch = "mac"; 2390 - sha256 = "6cadbb50355600d65f04f2f228ba9fc48d163386068e3025f3fa2e3d0d53c123"; 2390 + sha256 = "6ad62161db21437be1df26f645757ffe548472dd18bf5168337c616044eb626f"; 2391 2391 } 2392 2392 { 2393 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/ta/Firefox%20141.0.3.dmg"; 2393 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/ta/Firefox%20142.0.dmg"; 2394 2394 locale = "ta"; 2395 2395 arch = "mac"; 2396 - sha256 = "a22961ab58be3ea50b22db31931620b483433963fc4a76b708f080a83bf225ac"; 2396 + sha256 = "5c3c85f12f5e323d4ef10d0ede3c54b6cf9fe59f22e3c6ebb8d2ce589fe41e74"; 2397 2397 } 2398 2398 { 2399 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/te/Firefox%20141.0.3.dmg"; 2399 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/te/Firefox%20142.0.dmg"; 2400 2400 locale = "te"; 2401 2401 arch = "mac"; 2402 - sha256 = "685cc2e6c4bcd4af2badad0bfc9949138eee2b689ab33e77e0a7e49d8d71045a"; 2402 + sha256 = "acc361fa1893a1470f0d6b688f0e3c1ec36384b7ee9e9b4c515a4f8fd01e3281"; 2403 2403 } 2404 2404 { 2405 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/tg/Firefox%20141.0.3.dmg"; 2405 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/tg/Firefox%20142.0.dmg"; 2406 2406 locale = "tg"; 2407 2407 arch = "mac"; 2408 - sha256 = "993516c8efb25aea0d0cf3754f27efb4b4ff18b1ddfba1c46c751f61f88839c3"; 2408 + sha256 = "90f09a050429b35aac98e79999ff158b47c56fbb47f589a8dd6196d91621a543"; 2409 2409 } 2410 2410 { 2411 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/th/Firefox%20141.0.3.dmg"; 2411 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/th/Firefox%20142.0.dmg"; 2412 2412 locale = "th"; 2413 2413 arch = "mac"; 2414 - sha256 = "78a3906a4830e8577c62fcbb45388a029f9883218fe4f6162e6b28f0408cdb50"; 2414 + sha256 = "c1bfc1626cec042f55fb838a6f47cccaadd45a9410221938555a13fa4b946d35"; 2415 2415 } 2416 2416 { 2417 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/tl/Firefox%20141.0.3.dmg"; 2417 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/tl/Firefox%20142.0.dmg"; 2418 2418 locale = "tl"; 2419 2419 arch = "mac"; 2420 - sha256 = "248d25ff29d28a87092352fa49cd9c30db2908fd0675befda189deaa13d4b533"; 2420 + sha256 = "d26e2244a1994023530f97e63678c79eb233a66b1d8f97f115e34aecf19566e2"; 2421 2421 } 2422 2422 { 2423 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/tr/Firefox%20141.0.3.dmg"; 2423 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/tr/Firefox%20142.0.dmg"; 2424 2424 locale = "tr"; 2425 2425 arch = "mac"; 2426 - sha256 = "70cd725698307aca4d4dbb7a6e02100166dfacd7669c5a300d35cecfcfa239c0"; 2426 + sha256 = "9f08fcc8807bcaf68248cfd7c5eb1dfc91c8e94eedf159f80d063d08a6ed8cba"; 2427 2427 } 2428 2428 { 2429 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/trs/Firefox%20141.0.3.dmg"; 2429 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/trs/Firefox%20142.0.dmg"; 2430 2430 locale = "trs"; 2431 2431 arch = "mac"; 2432 - sha256 = "ae8ba73465b2abc8d18d3c2e2daf68e2668cab1c1144d8d6a559014721afb9f4"; 2432 + sha256 = "f1802cb5b7e61cfe68050b555cc01302c0821bda21398a6bd3862904030d5434"; 2433 2433 } 2434 2434 { 2435 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/uk/Firefox%20141.0.3.dmg"; 2435 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/uk/Firefox%20142.0.dmg"; 2436 2436 locale = "uk"; 2437 2437 arch = "mac"; 2438 - sha256 = "8781407f677a997e0a43a0dbcef48a21eb1e78b106e071426a68df4c9a74c2d2"; 2438 + sha256 = "9fdbb3fd93d059ffde5e5306a1fc0b0f4e80e7b8b216d627cf69ad026cd8f3d3"; 2439 2439 } 2440 2440 { 2441 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/ur/Firefox%20141.0.3.dmg"; 2441 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/ur/Firefox%20142.0.dmg"; 2442 2442 locale = "ur"; 2443 2443 arch = "mac"; 2444 - sha256 = "18012bb20b9fa76394ffa9a7fd5bd9a4b26f8e977a254cde30d9c84d30ac5f74"; 2444 + sha256 = "87c960a50f4faa5a2cc014ee0a606d81db02940e27e8bd5fbcc350c8307e95ff"; 2445 2445 } 2446 2446 { 2447 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/uz/Firefox%20141.0.3.dmg"; 2447 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/uz/Firefox%20142.0.dmg"; 2448 2448 locale = "uz"; 2449 2449 arch = "mac"; 2450 - sha256 = "5dedce611ba384512b289070794e92fa75be17766c5e313a0349144e67444cca"; 2450 + sha256 = "eff4db1e7df4f9b01965d6426c4eaef00fce0590e9eddd2b2db051eb87070f3c"; 2451 2451 } 2452 2452 { 2453 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/vi/Firefox%20141.0.3.dmg"; 2453 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/vi/Firefox%20142.0.dmg"; 2454 2454 locale = "vi"; 2455 2455 arch = "mac"; 2456 - sha256 = "61770a27c25d3bef80c01f673341de713544b89fb182a0e7a7c7132bd6fbf44e"; 2456 + sha256 = "0d6b49681350c606082d6e4048465052a19adb32820d3597639ef359a4179ccb"; 2457 2457 } 2458 2458 { 2459 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/xh/Firefox%20141.0.3.dmg"; 2459 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/xh/Firefox%20142.0.dmg"; 2460 2460 locale = "xh"; 2461 2461 arch = "mac"; 2462 - sha256 = "75f0e9cc3a722680e91e254802204d5580683cb1b59c68f5b5afd7feb9bfef84"; 2462 + sha256 = "246678a63fb7db4966f4d1102612b395b9e90a7d710e66258b82f2bff9217efe"; 2463 2463 } 2464 2464 { 2465 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/zh-CN/Firefox%20141.0.3.dmg"; 2465 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/zh-CN/Firefox%20142.0.dmg"; 2466 2466 locale = "zh-CN"; 2467 2467 arch = "mac"; 2468 - sha256 = "4ccfbb23b602a67f17a58d77dee5591549a5df95a6368b39fc5f6b087524f74f"; 2468 + sha256 = "eb1d70e7a0bd4051de0ab075d9d92adaf5075e61a8643f76fb475eed3dab6cc1"; 2469 2469 } 2470 2470 { 2471 - url = "https://archive.mozilla.org/pub/firefox/releases/141.0.3/mac/zh-TW/Firefox%20141.0.3.dmg"; 2471 + url = "https://archive.mozilla.org/pub/firefox/releases/142.0/mac/zh-TW/Firefox%20142.0.dmg"; 2472 2472 locale = "zh-TW"; 2473 2473 arch = "mac"; 2474 - sha256 = "71918ddaec0bd8fa651b8a6a8e5eb17e4b487c9d3e9ff1a5dbcbe9edb8186e1a"; 2474 + sha256 = "667eab6bfd0de0bf2b77fa455547152b2fe21b4bb2b7c9ae91a98673b97b21f8"; 2475 2475 } 2476 2476 ]; 2477 2477 }
+2 -2
pkgs/applications/networking/browsers/firefox/packages/firefox-esr-140.nix
··· 9 9 10 10 buildMozillaMach rec { 11 11 pname = "firefox"; 12 - version = "140.1.0esr"; 12 + version = "140.2.0esr"; 13 13 applicationName = "Firefox ESR"; 14 14 src = fetchurl { 15 15 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 16 - sha512 = "1b5caff9b381cd449c40d148542501f7a31a7151a3f2f888e789c9743af8ee1d1eddbd970f8c0054902d1e1d739221db0cfcf1dc6ab704bb83bbb7b7b6a20055"; 16 + sha512 = "e4597c4d83ae1a84fce9248fe6ca652af6c3615607fc8973bd917bfdbd2abbceca937fe4c629c0cdc89fa0a5c846b5e2d8a4b44dabf7feb201deb382de0ccc5b"; 17 17 }; 18 18 19 19 meta = {
+2 -2
pkgs/applications/networking/browsers/firefox/packages/firefox.nix
··· 9 9 10 10 buildMozillaMach rec { 11 11 pname = "firefox"; 12 - version = "141.0.3"; 12 + version = "142.0"; 13 13 src = fetchurl { 14 14 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 15 - sha512 = "b660b018840c41a254734b4847a791f1a9fd2f72dbea825ea5971fd0b3269a43f1f4be1ccf4a53f7809b6b98398f4e04a142e57f8882d6590bab636ef75002f6"; 15 + sha512 = "b0c1c766083a30a92b77dcf16a584d9fb341cd811d21c3a34da4cd0d714fd6adc73b608092d66058697bc4562faacc44859153e49ffdeb6e14e059e59f2ea246"; 16 16 }; 17 17 18 18 meta = {
+3 -3
pkgs/applications/networking/browsers/floorp/default.nix
··· 9 9 ( 10 10 (buildMozillaMach rec { 11 11 pname = "floorp"; 12 - packageVersion = "11.29.0"; 12 + packageVersion = "11.30.0"; 13 13 applicationName = "Floorp"; 14 14 binaryName = "floorp"; 15 15 branding = "browser/branding/official"; ··· 17 17 allowAddonSideload = true; 18 18 19 19 # Must match the contents of `browser/config/version.txt` in the source tree 20 - version = "128.13.0"; 20 + version = "128.14.0"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "Floorp-Projects"; 24 24 repo = "Floorp"; 25 25 fetchSubmodules = true; 26 26 rev = "v${packageVersion}"; 27 - hash = "sha256-uTTI9n99P4hHDf849lR7oiNGLbCa03ivjE1xF0gyT4Y="; 27 + hash = "sha256-4IAN0S9JWjaGXtnRUJz3HqUm+ZWL7KmryLu8ojSXiqg="; 28 28 }; 29 29 30 30 extraConfigureFlags = [
+5 -5
pkgs/applications/networking/browsers/librewolf/src.json
··· 1 1 { 2 - "packageVersion": "141.0.3-1", 2 + "packageVersion": "142.0-1", 3 3 "source": { 4 - "rev": "141.0.3-1", 5 - "hash": "sha256-0SosHE51IkDyg37fHnlJKn7IbMwr1iSXHr5Wuv2WkPg=" 4 + "rev": "142.0-1", 5 + "hash": "sha256-/bn9xeDxnJCQol/E8rhS8RVhpUj7UN+QScSIzLFnZ/o=" 6 6 }, 7 7 "firefox": { 8 - "version": "141.0.3", 9 - "hash": "sha512-tmCwGIQMQaJUc0tIR6eR8an9L3Lb6oJepZcf0LMmmkPx9L4cz0pT94Cba5g5j04EoULlf4iC1lkLq2Nu91AC9g==" 8 + "version": "142.0", 9 + "hash": "sha512-sMHHZgg6MKkrd9zxalhNn7NBzYEdIcOjTaTNDXFP1q3HO2CAktZgWGl7xFYvqsxEhZFT5J/9624U4Fnlny6iRg==" 10 10 } 11 11 }
+1 -1
pkgs/applications/networking/instant-messengers/discord/default.nix
··· 73 73 mainProgram = "discord"; 74 74 maintainers = with lib.maintainers; [ 75 75 artturin 76 - donteatoreo 76 + FlameFlag 77 77 infinidoge 78 78 jopejoe1 79 79 Scrumplex
+3 -3
pkgs/applications/virtualization/singularity/packages.nix
··· 46 46 callPackage 47 47 (import ./generic.nix rec { 48 48 pname = "singularity-ce"; 49 - version = "4.3.2"; 49 + version = "4.3.3"; 50 50 projectName = "singularity"; 51 51 52 52 src = fetchFromGitHub { 53 53 owner = "sylabs"; 54 54 repo = "singularity"; 55 55 tag = "v${version}"; 56 - hash = "sha256-lYYY449agINk1cwRl06gstGhkwQKaeZdLnwT6bW6HY4="; 56 + hash = "sha256-gQuakfQgB5gLVYLmmThy06CyGBhlBOCJI9jaEm7ucf0="; 57 57 }; 58 58 59 59 # Override vendorHash with overrideAttrs. 60 60 # See https://nixos.org/manual/nixpkgs/unstable/#buildGoModule-vendorHash 61 - vendorHash = "sha256-3CEkaG8k6W1/8v8tsVLXdSV68QHUgn5/BEd8qjkW7ik="; 61 + vendorHash = "sha256-z8bLbudm1b5xFCAUpL/m90vxwLJlBqpQCjAEjSYOQH8="; 62 62 63 63 extraConfigureFlags = [ 64 64 # Do not build squashfuse from the Git submodule sources, use Nixpkgs provided version
-13
pkgs/build-support/build-mozilla-mach/139-relax-apple-sdk.patch
··· 1 - diff --git a/build/moz.configure/toolchain.configure b/build/moz.configure/toolchain.configure 2 - index 769ac0379045..160734dd386d 100644 3 - --- a/build/moz.configure/toolchain.configure 4 - +++ b/build/moz.configure/toolchain.configure 5 - @@ -233,7 +233,7 @@ with only_when(host_is_osx | target_is_osx): 6 - ) 7 - 8 - def mac_sdk_min_version(): 9 - - return "15.4" 10 - + return "15.2" 11 - 12 - @depends( 13 - "--with-macos-sdk",
+9 -6
pkgs/build-support/build-mozilla-mach/default.nix
··· 316 316 # https://hg-edge.mozilla.org/mozilla-central/rev/aa8a29bd1fb9 317 317 ./139-wayland-drag-animation.patch 318 318 ] 319 - ++ lib.optionals (lib.versionAtLeast version "139" && lib.versionOlder version "141.0.2") [ 320 - ./139-relax-apple-sdk.patch 321 - ] 322 - ++ lib.optionals (lib.versionAtLeast version "141.0.2") [ 323 - ./142-relax-apple-sdk.patch 324 - ] 319 + ++ 320 + lib.optionals 321 + ( 322 + lib.versionAtLeast version "141.0.2" 323 + || (lib.versionAtLeast version "140.2.0" && lib.versionOlder version "141.0") 324 + ) 325 + [ 326 + ./142-relax-apple-sdk.patch 327 + ] 325 328 ++ lib.optionals (lib.versionOlder version "139") [ 326 329 # Fix for missing vector header on macOS 327 330 # https://bugzilla.mozilla.org/show_bug.cgi?id=1959377
+29 -5
pkgs/build-support/dotnet/build-dotnet-module/hook/dotnet-hook.sh
··· 1 1 # shellcheck shell=bash 2 2 3 + _dotnetIsSolution() { 4 + dotnet sln ${1:+"$1"} list 2>/dev/null 5 + } 6 + 3 7 dotnetConfigurePhase() { 4 8 echo "Executing dotnetConfigureHook" 5 9 ··· 108 112 dotnetBuild() { 109 113 local -r projectFile="${1-}" 110 114 115 + local useRuntime= 116 + _dotnetIsSolution "$projectFile" || useRuntime=1 117 + 111 118 for runtimeId in "${runtimeIds[@]}"; do 112 119 local runtimeIdFlags=() 113 - if [[ $projectFile == *.csproj || -n ${dotnetSelfContainedBuild-} ]]; then 120 + if [[ -n $useRuntime ]]; then 114 121 runtimeIdFlags+=("--runtime" "$runtimeId") 115 122 fi 116 123 ··· 188 195 189 196 local projectFile runtimeId 190 197 for projectFile in "${testProjectFiles[@]-${projectFiles[@]}}"; do 198 + local useRuntime= 199 + _dotnetIsSolution "$projectFile" || useRuntime=1 200 + 191 201 for runtimeId in "${runtimeIds[@]}"; do 192 202 local runtimeIdFlags=() 193 - if [[ $projectFile == *.csproj ]]; then 203 + if [[ -n $useRuntime ]]; then 194 204 runtimeIdFlags=("--runtime" "$runtimeId") 195 205 fi 196 206 ··· 355 365 356 366 dotnetPublish() { 357 367 local -r projectFile="${1-}" 368 + 369 + local useRuntime= 370 + _dotnetIsSolution "$projectFile" || useRuntime=1 358 371 359 372 for runtimeId in "${runtimeIds[@]}"; do 360 - runtimeIdFlags=() 361 - if [[ $projectFile == *.csproj || -n ${dotnetSelfContainedBuild-} ]]; then 373 + local runtimeIdFlags=() 374 + if [[ -n $useRuntime ]]; then 362 375 runtimeIdFlags+=("--runtime" "$runtimeId") 363 376 fi 364 377 ··· 380 393 dotnetPack() { 381 394 local -r projectFile="${1-}" 382 395 396 + local useRuntime= 397 + _dotnetIsSolution "$projectFile" || useRuntime=1 398 + 383 399 for runtimeId in "${runtimeIds[@]}"; do 400 + local runtimeIdFlags=() 401 + if [[ -n $useRuntime ]]; then 402 + runtimeIdFlags+=("--runtime" "$runtimeId") 403 + # set RuntimeIdentifier because --runtime is broken: 404 + # https://github.com/dotnet/sdk/issues/13983 405 + runtimeIdFlags+=(-p:RuntimeIdentifier="$runtimeId") 406 + fi 407 + 384 408 dotnet pack ${1+"$projectFile"} \ 385 409 -maxcpucount:"$maxCpuFlag" \ 386 410 -p:ContinuousIntegrationBuild=true \ ··· 390 414 --configuration "$dotnetBuildType" \ 391 415 --no-restore \ 392 416 --no-build \ 393 - --runtime "$runtimeId" \ 417 + "${runtimeIdFlags[@]}" \ 394 418 "${flags[@]}" \ 395 419 "${packFlags[@]}" 396 420 done
+4 -1
pkgs/build-support/fetchmavenartifact/default.nix
··· 31 31 # and `urls` can be specified, not both. 32 32 url ? "", 33 33 urls ? [ ], 34 + # Metadata 35 + meta ? { }, 34 36 # The rest of the arguments are just forwarded to `fetchurl`. 35 37 ... 36 38 }: ··· 71 73 "classifier" 72 74 "repos" 73 75 "url" 76 + "meta" 74 77 ] 75 78 // { 76 79 urls = urls_; ··· 79 82 ); 80 83 in 81 84 stdenv.mkDerivation { 82 - inherit pname version; 85 + inherit pname version meta; 83 86 dontUnpack = true; 84 87 # By moving the jar to $out/share/java we make it discoverable by java 85 88 # packages packages that mention this derivation in their buildInputs.
+215
pkgs/build-support/teleport/default.nix
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 5 + fetchpatch, 6 + makeWrapper, 7 + binaryen, 8 + cargo, 9 + libfido2, 10 + nodejs, 11 + openssl, 12 + pkg-config, 13 + pnpm_10, 14 + rustc, 15 + stdenv, 16 + xdg-utils, 17 + wasm-pack, 18 + nixosTests, 19 + }: 20 + 21 + { 22 + version, 23 + hash, 24 + cargoHash, 25 + pnpmHash, 26 + vendorHash, 27 + wasm-bindgen-cli, 28 + buildGoModule, 29 + 30 + withRdpClient ? true, 31 + extPatches ? [ ], 32 + }: 33 + let 34 + 35 + # This repo has a private submodule "e" which fetchgit cannot handle without failing. 36 + src = fetchFromGitHub { 37 + owner = "gravitational"; 38 + repo = "teleport"; 39 + tag = "v${version}"; 40 + inherit hash; 41 + }; 42 + pname = "teleport"; 43 + inherit version; 44 + 45 + rdpClient = rustPlatform.buildRustPackage (finalAttrs: { 46 + pname = "teleport-rdpclient"; 47 + inherit cargoHash; 48 + inherit version src; 49 + 50 + buildAndTestSubdir = "lib/srv/desktop/rdp/rdpclient"; 51 + 52 + buildInputs = [ openssl ]; 53 + nativeBuildInputs = [ pkg-config ]; 54 + 55 + # https://github.com/NixOS/nixpkgs/issues/161570 , 56 + # buildRustPackage sets strictDeps = true; 57 + nativeCheckInputs = finalAttrs.buildInputs; 58 + 59 + OPENSSL_NO_VENDOR = "1"; 60 + 61 + postInstall = '' 62 + mkdir -p $out/include 63 + cp ${finalAttrs.buildAndTestSubdir}/librdprs.h $out/include/ 64 + ''; 65 + }); 66 + 67 + webassets = stdenv.mkDerivation { 68 + pname = "teleport-webassets"; 69 + inherit src version; 70 + 71 + cargoDeps = rustPlatform.fetchCargoVendor { 72 + inherit src; 73 + hash = cargoHash; 74 + }; 75 + 76 + pnpmDeps = pnpm_10.fetchDeps { 77 + inherit src pname version; 78 + fetcherVersion = 1; 79 + hash = pnpmHash; 80 + }; 81 + 82 + nativeBuildInputs = [ 83 + binaryen 84 + cargo 85 + nodejs 86 + pnpm_10.configHook 87 + rustc 88 + rustc.llvmPackages.lld 89 + rustPlatform.cargoSetupHook 90 + wasm-bindgen-cli 91 + wasm-pack 92 + ]; 93 + 94 + patches = [ 95 + ./disable-wasm-opt-for-ironrdp.patch 96 + ]; 97 + 98 + configurePhase = '' 99 + runHook preConfigure 100 + 101 + export HOME=$(mktemp -d) 102 + 103 + runHook postConfigure 104 + ''; 105 + 106 + buildPhase = '' 107 + PATH=$PATH:$PWD/node_modules/.bin 108 + 109 + pushd web/packages 110 + pushd shared 111 + # https://github.com/gravitational/teleport/blob/6b91fe5bbb9e87db4c63d19f94ed4f7d0f9eba43/web/packages/teleport/README.md?plain=1#L18-L20 112 + RUST_MIN_STACK=16777216 wasm-pack build ./libs/ironrdp --target web --mode no-install 113 + popd 114 + pushd teleport 115 + vite build 116 + popd 117 + popd 118 + ''; 119 + 120 + installPhase = '' 121 + mkdir -p $out 122 + cp -R webassets/. $out 123 + ''; 124 + }; 125 + in 126 + buildGoModule (finalAttrs: { 127 + inherit pname src version; 128 + inherit vendorHash; 129 + proxyVendor = true; 130 + 131 + subPackages = [ 132 + "tool/tbot" 133 + "tool/tctl" 134 + "tool/teleport" 135 + "tool/tsh" 136 + ]; 137 + tags = [ 138 + "libfido2" 139 + "webassets_embed" 140 + ] 141 + ++ lib.optional withRdpClient "desktop_access_rdp"; 142 + 143 + buildInputs = [ 144 + openssl 145 + libfido2 146 + ]; 147 + nativeBuildInputs = [ 148 + makeWrapper 149 + pkg-config 150 + ]; 151 + 152 + patches = extPatches ++ [ 153 + ./0001-fix-add-nix-path-to-exec-env.patch 154 + ./rdpclient.patch 155 + ./tsh.patch 156 + ]; 157 + 158 + # Reduce closure size for client machines 159 + outputs = [ 160 + "out" 161 + "client" 162 + ]; 163 + 164 + preBuild = '' 165 + cp -r ${webassets} webassets 166 + '' 167 + + lib.optionalString withRdpClient '' 168 + ln -s ${rdpClient}/lib/* lib/ 169 + ln -s ${rdpClient}/include/* lib/srv/desktop/rdp/rdpclient/ 170 + ''; 171 + 172 + # Multiple tests fail in the build sandbox 173 + # due to trying to spawn nixbld's shell (/noshell), etc. 174 + doCheck = false; 175 + 176 + postInstall = '' 177 + mkdir -p $client/bin 178 + mv {$out,$client}/bin/tsh 179 + # make xdg-open overrideable at runtime 180 + wrapProgram $client/bin/tsh --suffix PATH : ${lib.makeBinPath [ xdg-utils ]} 181 + ln -s {$client,$out}/bin/tsh 182 + ''; 183 + 184 + doInstallCheck = true; 185 + 186 + installCheckPhase = '' 187 + export HOME=$(mktemp -d) 188 + $out/bin/tsh version | grep ${version} > /dev/null 189 + $client/bin/tsh version | grep ${version} > /dev/null 190 + $out/bin/tbot version | grep ${version} > /dev/null 191 + $out/bin/tctl version | grep ${version} > /dev/null 192 + $out/bin/teleport version | grep ${version} > /dev/null 193 + ''; 194 + 195 + passthru.tests = nixosTests.teleport; 196 + 197 + meta = { 198 + description = "Certificate authority and access plane for SSH, Kubernetes, web applications, and databases"; 199 + homepage = "https://goteleport.com/"; 200 + license = lib.licenses.agpl3Plus; 201 + maintainers = with lib.maintainers; [ 202 + arianvp 203 + justinas 204 + sigma 205 + tomberek 206 + freezeboy 207 + techknowlogick 208 + juliusfreudenberger 209 + ]; 210 + platforms = lib.platforms.unix; 211 + # go-libfido2 is broken on platforms with less than 64-bit because it defines an array 212 + # which occupies more than 31 bits of address space. 213 + broken = stdenv.hostPlatform.parsed.cpu.bits < 64; 214 + }; 215 + })
+1 -1
pkgs/by-name/al/alt-tab-macos/package.nix
··· 35 35 homepage = "https://alt-tab-macos.netlify.app"; 36 36 license = lib.licenses.gpl3Plus; 37 37 maintainers = with lib.maintainers; [ 38 - donteatoreo 38 + FlameFlag 39 39 emilytrau 40 40 ]; 41 41 platforms = lib.platforms.darwin;
+9 -9
pkgs/by-name/bu/buck2/hashes.json
··· 1 1 { "_comment": "@generated by pkgs/by-name/bu/buck2/update.sh" 2 - , "_prelude": "sha256-eU4EZ9OqJVUH/YPFctJZM+KZK70IEslr2qLUUvz3ctM=" 3 - , "buck2-x86_64-linux": "sha256-r/5txsY7/i0fQaQsH40YdAhSD/bXtr5aGlAuxaOs8jg=" 4 - , "rust-project-x86_64-linux": "sha256-XJFhaxJvOklMMO3emtdJS4zNu989HLCIU9qBP31XpCo=" 5 - , "buck2-x86_64-darwin": "sha256-9SW0xn7w2dH81oHwze/ysnQyrIAgu8+1WJuXMmxslFo=" 6 - , "rust-project-x86_64-darwin": "sha256-MvYv96OtOU7NEZKXf3gDvCjEcbegLI+1HFN7XBdPAXA=" 7 - , "buck2-aarch64-linux": "sha256-wlmkgWdotvqxmflzoJG266weCsjxtM0mVO0xf7vKVr0=" 8 - , "rust-project-aarch64-linux": "sha256-7zhO+s8LOuDj5ysyADkfqRIZiOG9ewBtfcB43sPfVc4=" 9 - , "buck2-aarch64-darwin": "sha256-0bNtPX8TLTCxf7rEeiUYtJUbzRmgRdgHrv98mmmM/Rg=" 10 - , "rust-project-aarch64-darwin": "sha256-a4OLLLYJjTBskXfB7OWqULPkV5amgDEHudJKRLGwuAU=" 2 + , "_prelude": "sha256-cyuOMi8x8q9gd6p1obnYYDVPxyONZ+y41AFXvSbUjC0=" 3 + , "buck2-x86_64-linux": "sha256-l/W6Bza01IyOFvHb2rlBY72Tl+JNgwmkO8EhUPWrxBY=" 4 + , "rust-project-x86_64-linux": "sha256-3UGgvQKSm6Qohk/NDRU1fM+eFEpqM9XMLxL2AkXXrW0=" 5 + , "buck2-x86_64-darwin": "sha256-wHk/tJJbupMsrcmXXNVXurfLY2TOSssMnuTZ7LNjASY=" 6 + , "rust-project-x86_64-darwin": "sha256-ePawMIfltPRK3mJJxI1BvGs6b2vIcgWzW2XTJykUsdI=" 7 + , "buck2-aarch64-linux": "sha256-dhqBYFQ6e5nWSrbUMUFoato1sb4bl95JcdqcgeC5mcs=" 8 + , "rust-project-aarch64-linux": "sha256-Zduna35ieycN80K2wh5OkcSaOWiqhxLJkduBk7f2XqU=" 9 + , "buck2-aarch64-darwin": "sha256-XtGs7g64s76AYhpFDbqSuSlblRauxJM0PaAk1MNNgxA=" 10 + , "rust-project-aarch64-darwin": "sha256-CkyLLv41iJTKHVB0e355ZO2MV7NzQeiF1gtWEGF5oAY=" 11 11 }
+2 -2
pkgs/by-name/bu/buck2/package.nix
··· 44 44 buildHashes = builtins.fromJSON (builtins.readFile ./hashes.json); 45 45 46 46 # our version of buck2; this should be a git tag 47 - version = "2025-05-06"; 47 + version = "2025-08-15"; 48 48 49 49 # map our platform name to the rust toolchain suffix 50 50 # NOTE (aseipp): must be synchronized with update.sh! ··· 82 82 # tooling 83 83 prelude-src = 84 84 let 85 - prelude-hash = "48c249f8c7b99ff501d6e857754760315072b306"; 85 + prelude-hash = "892cb85f5fc3258c7e4f89a836821ec4b8c7ee44"; 86 86 name = "buck2-prelude-${version}.tar.gz"; 87 87 hash = buildHashes."_prelude"; 88 88 url = "https://github.com/facebook/buck2-prelude/archive/${prelude-hash}.tar.gz";
+1 -1
pkgs/by-name/cs/csharprepl/package.nix
··· 21 21 changelog = "https://github.com/waf/CSharpRepl/blob/main/CHANGELOG.md"; 22 22 license = lib.licenses.mpl20; 23 23 platforms = lib.platforms.unix; 24 - maintainers = with lib.maintainers; [ donteatoreo ]; 24 + maintainers = with lib.maintainers; [ FlameFlag ]; 25 25 mainProgram = "csharprepl"; 26 26 }; 27 27 }
+3 -3
pkgs/by-name/cz/czkawka/package.nix
··· 21 21 let 22 22 self = rustPlatform.buildRustPackage { 23 23 pname = "czkawka"; 24 - version = "9.0.0"; 24 + version = "10.0.0"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "qarmin"; 28 28 repo = "czkawka"; 29 29 tag = self.version; 30 - hash = "sha256-ePiHDfQ1QC3nff8uWE0ggiTuulBomuoZ3ta0redUYXY="; 30 + hash = "sha256-r6EdTv95R8+XhaoA9OeqnGGl09kz8kMJaDPDRV6wQe8="; 31 31 }; 32 32 33 - cargoHash = "sha256-Djvb5Hen6XPm6aJuwa6cGPojz9+kXXidysr3URDwDFM="; 33 + cargoHash = "sha256-o4XjHJ7eCckTXqjz1tS4OSCP8DZzjxfWoMMy5Gab2rI="; 34 34 35 35 nativeBuildInputs = [ 36 36 gobject-introspection
+2 -2
pkgs/by-name/do/dooit/package.nix
··· 9 9 }: 10 10 python3.pkgs.buildPythonApplication rec { 11 11 pname = "dooit"; 12 - version = "3.2.3"; 12 + version = "3.3.3"; 13 13 pyproject = true; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "dooit-org"; 17 17 repo = "dooit"; 18 18 tag = "v${version}"; 19 - hash = "sha256-bI9X+2tTLnQwxfsnBmy2vBI3lJ4UX418zOy3oniVKWc="; 19 + hash = "sha256-MWdih+j7spUVEWXCBzF2J/FVXK0TQ8VhrJNDhNfxpQE="; 20 20 }; 21 21 22 22 build-system = with python3.pkgs; [ poetry-core ];
+2 -2
pkgs/by-name/e1/e1s/package.nix
··· 5 5 }: 6 6 let 7 7 pname = "e1s"; 8 - version = "1.0.49"; 8 + version = "1.0.50"; 9 9 in 10 10 buildGoModule { 11 11 inherit pname version; ··· 14 14 owner = "keidarcy"; 15 15 repo = "e1s"; 16 16 tag = "v${version}"; 17 - hash = "sha256-7GHNhX0hiRHQ0OH1DuHG9SPcTmm8W5CLU1Idx1pJnwE="; 17 + hash = "sha256-ntuFMxuCrA0meE8tOnA9oPLLvYfXyhQgebBuKELeDgQ="; 18 18 }; 19 19 20 20 vendorHash = "sha256-1lise/u40Q8W9STsuyrWIbhf2HY+SFCytUL1PTSWvfY=";
+3 -3
pkgs/by-name/fl/flyctl/package.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "flyctl"; 12 - version = "0.3.169"; 12 + version = "0.3.171"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "superfly"; 16 16 repo = "flyctl"; 17 17 rev = "v${version}"; 18 - hash = "sha256-F2QMQ24+wSKH8zmTFSWsSl9O9+Hc4e7Rmn2K9YXJi4k="; 18 + hash = "sha256-9FJ/n2LoTrQmcO+J3eXxexggFhvP22yYFbrryd0rGtM="; 19 19 }; 20 20 21 - vendorHash = "sha256-boaz0fR97NtU/wzIE2uPbDmP89ovkzNy8bpe0nrItMw="; 21 + vendorHash = "sha256-uXCy/8HkwqGnQEoNtyOErLw9byG8SWc5YdzYZXwjhW4="; 22 22 23 23 subPackages = [ "." ]; 24 24
+1 -1
pkgs/by-name/ga/gallery-dl/package.nix
··· 57 57 mainProgram = "gallery-dl"; 58 58 maintainers = with lib.maintainers; [ 59 59 dawidsowa 60 - donteatoreo 60 + FlameFlag 61 61 lucasew 62 62 ]; 63 63 };
+1 -1
pkgs/by-name/ge/gemini-cli/package.nix
··· 56 56 homepage = "https://github.com/google-gemini/gemini-cli"; 57 57 license = lib.licenses.asl20; 58 58 maintainers = with lib.maintainers; [ 59 - donteatoreo 59 + FlameFlag 60 60 taranarmo 61 61 ]; 62 62 platforms = lib.platforms.all;
+5 -4
pkgs/by-name/gr/grype/package.nix
··· 9 9 10 10 buildGoModule (finalAttrs: { 11 11 pname = "grype"; 12 - version = "0.92.2"; 12 + version = "0.98.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "anchore"; 16 16 repo = "grype"; 17 17 tag = "v${finalAttrs.version}"; 18 - hash = "sha256-OySQO/ZJvaD4mrIRqymBJDXdPC8ZWCz+ELrMXvmQPvk="; 18 + hash = "sha256-EJEQHi3N1O5rl0TWxRR/yUkZpbZv4++W7NbUbVEN8e8="; 19 19 # populate values that require us to use git. By doing this in postFetch we 20 20 # can delete .git afterwards and maintain better reproducibility of the src. 21 21 leaveDotGit = true; ··· 30 30 31 31 proxyVendor = true; 32 32 33 - vendorHash = "sha256-Dp+BVwlBqMbAZivOHQWALMrLVtAncGT/rvbbIk1BFFQ="; 33 + vendorHash = "sha256-dSIArK9m7oFu497/wpiiwLDLNk8IxNfYC3RHCQcMviM="; 34 34 35 35 nativeBuildInputs = [ installShellFiles ]; 36 36 ··· 75 75 substituteInPlace test/cli/db_providers_test.go \ 76 76 --replace-fail "TestDBProviders" "SkipDBProviders" 77 77 substituteInPlace grype/presenter/cyclonedx/presenter_test.go \ 78 - --replace-fail "TestCycloneDxPresenterDir" "SkipCycloneDxPresenterDir" 78 + --replace-fail "TestCycloneDxPresenterDir" "SkipCycloneDxPresenterDir" \ 79 + --replace-fail "Test_CycloneDX_Valid" "Skip_CycloneDX_Valid" 79 80 80 81 # remove tests that depend on docker 81 82 substituteInPlace test/cli/cmd_test.go \
+1 -1
pkgs/by-name/hi/hidden-bar/package.nix
··· 31 31 description = "Ultra-light MacOS utility that helps hide menu bar icons"; 32 32 homepage = "https://github.com/dwarvesf/hidden"; 33 33 license = lib.licenses.mit; 34 - maintainers = with lib.maintainers; [ donteatoreo ]; 34 + maintainers = with lib.maintainers; [ FlameFlag ]; 35 35 platforms = lib.platforms.darwin; 36 36 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 37 37 };
+10 -6
pkgs/by-name/hi/hiera-eyaml/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - hiera-eyaml (3.0.0) 5 - highline (~> 1.6.19) 6 - optimist 7 - highline (1.6.21) 8 - optimist (3.0.0) 4 + hiera-eyaml (4.3.0) 5 + highline (>= 2.1, < 4) 6 + optimist (~> 3.1) 7 + highline (3.1.2) 8 + reline 9 + io-console (0.8.1) 10 + optimist (3.2.1) 11 + reline (0.6.2) 12 + io-console (~> 0.5) 9 13 10 14 PLATFORMS 11 15 ruby ··· 14 18 hiera-eyaml 15 19 16 20 BUNDLED WITH 17 - 2.1.4 21 + 2.6.9
+30 -6
pkgs/by-name/hi/hiera-eyaml/gemset.nix
··· 8 8 platforms = [ ]; 9 9 source = { 10 10 remotes = [ "https://rubygems.org" ]; 11 - sha256 = "049rxnwyivqgyjl0sjg7cb2q44ic0wsml288caspd1ps8v31gl18"; 11 + sha256 = "02mb113yjzwb6jkckybzsiq803c688r9xpv4w1nxbckhkpma5sqr"; 12 12 type = "gem"; 13 13 }; 14 - version = "3.0.0"; 14 + version = "4.3.0"; 15 15 }; 16 16 highline = { 17 + dependencies = [ "reline" ]; 18 + groups = [ "default" ]; 19 + platforms = [ ]; 17 20 source = { 18 21 remotes = [ "https://rubygems.org" ]; 19 - sha256 = "06bml1fjsnrhd956wqq5k3w8cyd09rv1vixdpa3zzkl6xs72jdn1"; 22 + sha256 = "0jmvyhjp2v3iq47la7w6psrxbprnbnmzz0hxxski3vzn356x7jv7"; 20 23 type = "gem"; 21 24 }; 22 - version = "1.6.21"; 25 + version = "3.1.2"; 26 + }; 27 + io-console = { 28 + groups = [ "default" ]; 29 + platforms = [ ]; 30 + source = { 31 + remotes = [ "https://rubygems.org" ]; 32 + sha256 = "1jszj95hazqqpnrjjzr326nn1j32xmsc9xvd97mbcrrgdc54858y"; 33 + type = "gem"; 34 + }; 35 + version = "0.8.1"; 23 36 }; 24 37 optimist = { 25 38 groups = [ "default" ]; 26 39 platforms = [ ]; 27 40 source = { 28 41 remotes = [ "https://rubygems.org" ]; 29 - sha256 = "05jxrp3nbn5iilc1k7ir90mfnwc5abc9h78s5rpm3qafwqxvcj4j"; 42 + sha256 = "0kp3f8g7g7cbw5vfkmpdv71pphhpcxk3lpc892mj9apkd7ys1y4c"; 30 43 type = "gem"; 31 44 }; 32 - version = "3.0.0"; 45 + version = "3.2.1"; 46 + }; 47 + reline = { 48 + dependencies = [ "io-console" ]; 49 + groups = [ "default" ]; 50 + platforms = [ ]; 51 + source = { 52 + remotes = [ "https://rubygems.org" ]; 53 + sha256 = "0ii8l0q5zkang3lxqlsamzfz5ja7jc8ln905isfdawl802k2db8x"; 54 + type = "gem"; 55 + }; 56 + version = "0.6.2"; 33 57 }; 34 58 }
+1 -1
pkgs/by-name/hi/hiera-eyaml/package.nix
··· 14 14 15 15 meta = with lib; { 16 16 description = "Per-value asymmetric encryption of sensitive data for Hiera"; 17 - homepage = "https://github.com/TomPoulton/hiera-eyaml"; 17 + homepage = "https://github.com/voxpupuli/hiera-eyaml"; 18 18 license = licenses.mit; 19 19 maintainers = with maintainers; [ 20 20 benley
+2 -2
pkgs/by-name/hi/hifile/package.nix
··· 2 2 lib, 3 3 appimageTools, 4 4 fetchurl, 5 - version ? "0.9.12.0", 6 - hash ? "sha256-nWt/DOzoQ05F+uk9sDSumb19vQib1Vh/8ywB/d87epc=", 5 + version ? "0.9.12.1", 6 + hash ? "sha256-6Lun0HyfAi7anivgGsGdUPPX9kZrWwh8fq+qvVL/CdU=", 7 7 }: 8 8 9 9 let
+3 -2
pkgs/by-name/hi/high-tide/package.nix
··· 19 19 20 20 python313Packages.buildPythonApplication rec { 21 21 pname = "high-tide"; 22 - version = "0.1.8"; 22 + version = "1.0.0"; 23 23 pyproject = false; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "Nokse22"; 27 27 repo = "high-tide"; 28 28 tag = "v${version}"; 29 - hash = "sha256-QcTK5E8rz/JcC40CCCK8G7PUZ6UAg53UPmxyLBXNHxY="; 29 + hash = "sha256-lvfEqXXlDuW+30iTQ0FddcnAMZRM0BYeuxLN4++xs/0="; 30 30 }; 31 31 32 32 nativeBuildInputs = [ ··· 71 71 license = with lib.licenses; [ gpl3Plus ]; 72 72 mainProgram = "high-tide"; 73 73 maintainers = with lib.maintainers; [ 74 + drafolin 74 75 nilathedragon 75 76 nyabinary 76 77 griffi-gh
+1 -1
pkgs/by-name/ic/ice-bar/package.nix
··· 34 34 description = "Powerful menu bar manager for macOS"; 35 35 homepage = "https://icemenubar.app/"; 36 36 license = lib.licenses.mit; 37 - maintainers = with lib.maintainers; [ donteatoreo ]; 37 + maintainers = with lib.maintainers; [ FlameFlag ]; 38 38 platforms = lib.platforms.darwin; 39 39 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 40 40 };
+1 -1
pkgs/by-name/ii/iina/package.nix
··· 34 34 license = lib.licenses.gpl3; 35 35 maintainers = with lib.maintainers; [ 36 36 arkivm 37 - donteatoreo 37 + FlameFlag 38 38 stepbrobd 39 39 ]; 40 40 mainProgram = "iina";
+12 -12
pkgs/by-name/im/immich/sources.json
··· 1 1 { 2 - "version": "1.138.0", 3 - "hash": "sha256-yOGqQMy2PdGlHAtfuLB74UokGIwzi3yCiaBOZ/Orsf0=", 2 + "version": "1.138.1", 3 + "hash": "sha256-oaZN0kF82mS25bDSTXRjYnWG9RAMSbCUhXn9t0am96U=", 4 4 "components": { 5 5 "cli": { 6 - "npmDepsHash": "sha256-NFEAsy1SabGvQMX+k7jIuBLdfjhb3v9x1O2T9EbTPEM=", 7 - "version": "2.2.78" 6 + "npmDepsHash": "sha256-6k83QOdKh+FlVnYvA9j60115oohUMDc2YvGaj/GMukE=", 7 + "version": "2.2.79" 8 8 }, 9 9 "server": { 10 - "npmDepsHash": "sha256-B/j4b0ETfM+K9v757egm1DUTynfnFHb8PVRFhxq1H5Y=", 11 - "version": "1.138.0" 10 + "npmDepsHash": "sha256-4sqWIIGQ8ZW7TvJoNjNNliriuV6Su0askAN6pAq9VFc=", 11 + "version": "1.138.1" 12 12 }, 13 13 "web": { 14 - "npmDepsHash": "sha256-LkGeZPyfJ6wo1O5I13OL9Iz6mjRNXjTNOi5BVoQWQs4=", 15 - "version": "1.138.0" 14 + "npmDepsHash": "sha256-+W8cDgy3qe6RDen8SEdHPNADkKb4zZH8C/Am/bdU42c=", 15 + "version": "1.138.1" 16 16 }, 17 17 "open-api/typescript-sdk": { 18 - "npmDepsHash": "sha256-n1OTaqwfVy3RB6hi2rRGGjSNXsrFRwZMSyKfEuYy57U=", 19 - "version": "1.138.0" 18 + "npmDepsHash": "sha256-GfmFPsnFu7l4EsnPDv4nj5KLkOz8nEJvMT1BE7zIQ3k=", 19 + "version": "1.138.1" 20 20 }, 21 21 "geonames": { 22 - "timestamp": "20250815003647", 23 - "hash": "sha256-GYO+fbdXC2z0scne9kh+JLpp7h9k2w0tkIcyYDbNusA=" 22 + "timestamp": "20250818205425", 23 + "hash": "sha256-zZHAomW1C4qReFbhme5dkVnTiLw+jmhZhzuYvoBVBCY=" 24 24 } 25 25 } 26 26 }
+651
pkgs/by-name/in/invoiceplane/fix-yarn-lock.patch
··· 1 + diff --git a/yarn.lock b/yarn.lock 2 + index 691942c1..6d3bd8ce 100644 3 + --- a/yarn.lock 4 + +++ b/yarn.lock 5 + @@ -2,11 +2,71 @@ 6 + # yarn lockfile v1 7 + 8 + 9 + +"@parcel/watcher-android-arm64@2.5.1": 10 + + version "2.5.1" 11 + + resolved "https://registry.yarnpkg.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz#507f836d7e2042f798c7d07ad19c3546f9848ac1" 12 + + integrity sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA== 13 + + 14 + +"@parcel/watcher-darwin-arm64@2.5.1": 15 + + version "2.5.1" 16 + + resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz#3d26dce38de6590ef79c47ec2c55793c06ad4f67" 17 + + integrity sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw== 18 + + 19 + +"@parcel/watcher-darwin-x64@2.5.1": 20 + + version "2.5.1" 21 + + resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz#99f3af3869069ccf774e4ddfccf7e64fd2311ef8" 22 + + integrity sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg== 23 + + 24 + +"@parcel/watcher-freebsd-x64@2.5.1": 25 + + version "2.5.1" 26 + + resolved "https://registry.yarnpkg.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz#14d6857741a9f51dfe51d5b08b7c8afdbc73ad9b" 27 + + integrity sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ== 28 + + 29 + +"@parcel/watcher-linux-arm-glibc@2.5.1": 30 + + version "2.5.1" 31 + + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz#43c3246d6892381db473bb4f663229ad20b609a1" 32 + + integrity sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA== 33 + + 34 + +"@parcel/watcher-linux-arm-musl@2.5.1": 35 + + version "2.5.1" 36 + + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz#663750f7090bb6278d2210de643eb8a3f780d08e" 37 + + integrity sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q== 38 + + 39 + +"@parcel/watcher-linux-arm64-glibc@2.5.1": 40 + + version "2.5.1" 41 + + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz#ba60e1f56977f7e47cd7e31ad65d15fdcbd07e30" 42 + + integrity sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w== 43 + + 44 + +"@parcel/watcher-linux-arm64-musl@2.5.1": 45 + + version "2.5.1" 46 + + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz#f7fbcdff2f04c526f96eac01f97419a6a99855d2" 47 + + integrity sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg== 48 + + 49 + "@parcel/watcher-linux-x64-glibc@2.5.1": 50 + version "2.5.1" 51 + resolved "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz" 52 + integrity sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A== 53 + 54 + +"@parcel/watcher-linux-x64-musl@2.5.1": 55 + + version "2.5.1" 56 + + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz#277b346b05db54f55657301dd77bdf99d63606ee" 57 + + integrity sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg== 58 + + 59 + +"@parcel/watcher-win32-arm64@2.5.1": 60 + + version "2.5.1" 61 + + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz#7e9e02a26784d47503de1d10e8eab6cceb524243" 62 + + integrity sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw== 63 + + 64 + +"@parcel/watcher-win32-ia32@2.5.1": 65 + + version "2.5.1" 66 + + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz#2d0f94fa59a873cdc584bf7f6b1dc628ddf976e6" 67 + + integrity sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ== 68 + + 69 + +"@parcel/watcher-win32-x64@2.5.1": 70 + + version "2.5.1" 71 + + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz#ae52693259664ba6f2228fa61d7ee44b64ea0947" 72 + + integrity sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA== 73 + + 74 + "@parcel/watcher@^2.4.1": 75 + version "2.5.1" 76 + resolved "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz" 77 + @@ -105,7 +165,9 @@ async@^2.6.0: 78 + lodash "^4.17.14" 79 + 80 + async@^3.2.3, async@~3.2.0: 81 + - version "3.2.5" 82 + + version "3.2.6" 83 + + resolved "https://registry.yarnpkg.com/async/-/async-3.2.6.tgz#1b0728e14929d51b85b449b7f06e27c1145e38ce" 84 + + integrity sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA== 85 + 86 + autoprefixer@9.8: 87 + version "9.8.8" 88 + @@ -155,33 +217,48 @@ brace-expansion@^1.1.7: 89 + balanced-match "^1.0.0" 90 + concat-map "0.0.1" 91 + 92 + -braces@^3.0.2: 93 + - version "3.0.2" 94 + +braces@^3.0.3: 95 + + version "3.0.3" 96 + + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" 97 + + integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== 98 + dependencies: 99 + - fill-range "^7.0.1" 100 + + fill-range "^7.1.1" 101 + 102 + -browserslist@^4.12.0, "browserslist@>= 4.21.0": 103 + - version "4.22.1" 104 + +browserslist@^4.12.0: 105 + + version "4.25.1" 106 + + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.25.1.tgz#ba9e8e6f298a1d86f829c9b975e07948967bb111" 107 + + integrity sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw== 108 + dependencies: 109 + - caniuse-lite "^1.0.30001541" 110 + - electron-to-chromium "^1.4.535" 111 + - node-releases "^2.0.13" 112 + - update-browserslist-db "^1.0.13" 113 + + caniuse-lite "^1.0.30001726" 114 + + electron-to-chromium "^1.5.173" 115 + + node-releases "^2.0.19" 116 + + update-browserslist-db "^1.1.3" 117 + 118 + bytes@1: 119 + version "1.0.0" 120 + resolved "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz" 121 + integrity sha512-/x68VkHLeTl3/Ll8IvxdwzhrT+IyKc52e/oyHhA2RwqPqswSnjVbSddfPRwAsJtbilMAPSRWwAlpxdYsSWOTKQ== 122 + 123 + -call-bind@^1.0.0: 124 + - version "1.0.5" 125 + +call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: 126 + + version "1.0.2" 127 + + resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz#4b5428c222be985d79c3d82657479dbe0b59b2d6" 128 + + integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ== 129 + dependencies: 130 + + es-errors "^1.3.0" 131 + function-bind "^1.1.2" 132 + - get-intrinsic "^1.2.1" 133 + - set-function-length "^1.1.1" 134 + 135 + -caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001541: 136 + - version "1.0.30001561" 137 + +call-bound@^1.0.2: 138 + + version "1.0.4" 139 + + resolved "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz#238de935d2a2a692928c538c7ccfa91067fd062a" 140 + + integrity sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg== 141 + + dependencies: 142 + + call-bind-apply-helpers "^1.0.2" 143 + + get-intrinsic "^1.3.0" 144 + + 145 + +caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001726: 146 + + version "1.0.30001731" 147 + + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001731.tgz#277c07416ea4613ec564e5b0ffb47e7b60f32e2f" 148 + + integrity sha512-lDdp2/wrOmTRWuoB5DpfNkC0rJDU8DqRa6nYL6HK6sytw70QMopt/NIc/9SM7ylItlBWfACXk0tEn37UWM/+mg== 149 + 150 + chalk@^1.1.1: 151 + version "1.1.3" 152 + @@ -241,16 +318,16 @@ color-convert@^2.0.1: 153 + dependencies: 154 + color-name "~1.1.4" 155 + 156 + -color-name@~1.1.4: 157 + - version "1.1.4" 158 + - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" 159 + - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 160 + - 161 + color-name@1.1.3: 162 + version "1.1.3" 163 + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" 164 + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== 165 + 166 + +color-name@~1.1.4: 167 + + version "1.1.4" 168 + + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" 169 + + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 170 + + 171 + colors@~1.1.2: 172 + version "1.1.2" 173 + resolved "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz" 174 + @@ -278,13 +355,6 @@ debug@^3.1.0: 175 + dependencies: 176 + ms "^2.1.1" 177 + 178 + -define-data-property@^1.1.1: 179 + - version "1.1.1" 180 + - dependencies: 181 + - get-intrinsic "^1.2.1" 182 + - gopd "^1.0.1" 183 + - has-property-descriptors "^1.0.0" 184 + - 185 + delegate@^3.1.2: 186 + version "3.2.0" 187 + resolved "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz" 188 + @@ -310,13 +380,24 @@ dropzone@5.9: 189 + resolved "https://registry.npmjs.org/dropzone/-/dropzone-5.9.3.tgz" 190 + integrity sha512-Azk8kD/2/nJIuVPK+zQ9sjKMRIpRvNyqn9XwbBHNq+iNuSccbJS6hwm1Woy0pMST0erSo0u4j+KJaodndDk4vA== 191 + 192 + +dunder-proto@^1.0.1: 193 + + version "1.0.1" 194 + + resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz#d7ae667e1dc83482f8b70fd0f6eefc50da30f58a" 195 + + integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A== 196 + + dependencies: 197 + + call-bind-apply-helpers "^1.0.1" 198 + + es-errors "^1.3.0" 199 + + gopd "^1.2.0" 200 + + 201 + duplexer@^0.1.1: 202 + version "0.1.2" 203 + resolved "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz" 204 + integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== 205 + 206 + -electron-to-chromium@^1.4.535: 207 + - version "1.4.576" 208 + +electron-to-chromium@^1.5.173: 209 + + version "1.5.198" 210 + + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.198.tgz#ac12b539ac1bb3dece1a4cd2d8882d0349c71c55" 211 + + integrity sha512-G5COfnp3w+ydVu80yprgWSfmfQaYRh9DOxfhAxstLyetKaLyl55QrNjx8C38Pc/C+RaDmb1M0Lk8wPEMQ+bGgQ== 212 + 213 + error@^7.0.0: 214 + version "7.2.1" 215 + @@ -325,8 +406,27 @@ error@^7.0.0: 216 + dependencies: 217 + string-template "~0.2.1" 218 + 219 + -escalade@^3.1.1: 220 + - version "3.1.1" 221 + +es-define-property@^1.0.1: 222 + + version "1.0.1" 223 + + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa" 224 + + integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== 225 + + 226 + +es-errors@^1.3.0: 227 + + version "1.3.0" 228 + + resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" 229 + + integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== 230 + + 231 + +es-object-atoms@^1.0.0, es-object-atoms@^1.1.1: 232 + + version "1.1.1" 233 + + resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz#1c4f2c4837327597ce69d2ca190a7fdd172338c1" 234 + + integrity sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA== 235 + + dependencies: 236 + + es-errors "^1.3.0" 237 + + 238 + +escalade@^3.2.0: 239 + + version "3.2.0" 240 + + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" 241 + + integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== 242 + 243 + escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 244 + version "1.0.5" 245 + @@ -379,8 +479,10 @@ file-sync-cmp@^0.1.0: 246 + resolved "https://registry.npmjs.org/file-sync-cmp/-/file-sync-cmp-0.1.1.tgz" 247 + integrity sha512-0k45oWBokCqh2MOexeYKpyqmGKG+8mQ2Wd8iawx+uWd/weWJQAZ6SoPybagdCI4xFisag8iAR77WPm4h3pTfxA== 248 + 249 + -fill-range@^7.0.1: 250 + - version "7.0.1" 251 + +fill-range@^7.1.1: 252 + + version "7.1.1" 253 + + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" 254 + + integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== 255 + dependencies: 256 + to-regex-range "^5.0.1" 257 + 258 + @@ -461,13 +563,29 @@ gaze@^1.1.0: 259 + dependencies: 260 + globule "^1.0.0" 261 + 262 + -get-intrinsic@^1.0.2, get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2: 263 + - version "1.2.2" 264 + +get-intrinsic@^1.2.5, get-intrinsic@^1.3.0: 265 + + version "1.3.0" 266 + + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz#743f0e3b6964a93a5491ed1bffaae054d7f98d01" 267 + + integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ== 268 + dependencies: 269 + + call-bind-apply-helpers "^1.0.2" 270 + + es-define-property "^1.0.1" 271 + + es-errors "^1.3.0" 272 + + es-object-atoms "^1.1.1" 273 + function-bind "^1.1.2" 274 + - has-proto "^1.0.1" 275 + - has-symbols "^1.0.3" 276 + - hasown "^2.0.0" 277 + + get-proto "^1.0.1" 278 + + gopd "^1.2.0" 279 + + has-symbols "^1.1.0" 280 + + hasown "^2.0.2" 281 + + math-intrinsics "^1.1.0" 282 + + 283 + +get-proto@^1.0.1: 284 + + version "1.0.1" 285 + + resolved "https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz#150b3f2743869ef3e851ec0c49d15b1d14d00ee1" 286 + + integrity sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g== 287 + + dependencies: 288 + + dunder-proto "^1.0.1" 289 + + es-object-atoms "^1.0.0" 290 + 291 + getobject@~1.0.0: 292 + version "1.0.2" 293 + @@ -486,19 +604,7 @@ glob@^7.1.3: 294 + once "^1.3.0" 295 + path-is-absolute "^1.0.0" 296 + 297 + -glob@~7.1.1: 298 + - version "7.1.7" 299 + - resolved "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz" 300 + - integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== 301 + - dependencies: 302 + - fs.realpath "^1.0.0" 303 + - inflight "^1.0.4" 304 + - inherits "2" 305 + - minimatch "^3.0.4" 306 + - once "^1.3.0" 307 + - path-is-absolute "^1.0.0" 308 + - 309 + -glob@~7.1.6: 310 + +glob@~7.1.1, glob@~7.1.6: 311 + version "7.1.7" 312 + resolved "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz" 313 + integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== 314 + @@ -546,10 +652,10 @@ good-listener@^1.2.2: 315 + dependencies: 316 + delegate "^3.1.2" 317 + 318 + -gopd@^1.0.1: 319 + - version "1.0.1" 320 + - dependencies: 321 + - get-intrinsic "^1.1.3" 322 + +gopd@^1.2.0: 323 + + version "1.2.0" 324 + + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1" 325 + + integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== 326 + 327 + grunt-cli@~1.4.3: 328 + version "1.4.3" 329 + @@ -656,7 +762,7 @@ grunt-sass@3.1: 330 + resolved "https://registry.npmjs.org/grunt-sass/-/grunt-sass-3.1.0.tgz" 331 + integrity sha512-90s27H7FoCDcA8C8+R0GwC+ntYD3lG6S/jqcavWm3bn9RiJTmSfOvfbFa1PXx4NbBWuiGQMLfQTj/JvvqT5w6A== 332 + 333 + -grunt@>=0.4.5, grunt@>=1, grunt@>=1.4.1, grunt@1.6: 334 + +grunt@1.6: 335 + version "1.6.1" 336 + resolved "https://registry.npmjs.org/grunt/-/grunt-1.6.1.tgz" 337 + integrity sha512-/ABUy3gYWu5iBmrUSRBP97JLpQUm0GgVveDCp6t3yRNIoltIYw7rEj3g5y1o2PGPR2vfTRGa7WC/LZHLTXnEzA== 338 + @@ -700,21 +806,15 @@ has-flag@^4.0.0: 339 + resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" 340 + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 341 + 342 + -has-property-descriptors@^1.0.0: 343 + - version "1.0.1" 344 + - dependencies: 345 + - get-intrinsic "^1.2.2" 346 + - 347 + -has-proto@^1.0.1: 348 + - version "1.0.1" 349 + - 350 + -has-symbols@^1.0.3: 351 + - version "1.0.3" 352 + - resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz" 353 + - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 354 + +has-symbols@^1.1.0: 355 + + version "1.1.0" 356 + + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338" 357 + + integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== 358 + 359 + -hasown@^2.0.0: 360 + - version "2.0.0" 361 + +hasown@^2.0.2: 362 + + version "2.0.2" 363 + + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" 364 + + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== 365 + dependencies: 366 + function-bind "^1.1.2" 367 + 368 + @@ -784,9 +884,11 @@ is-absolute@^1.0.0: 369 + is-windows "^1.0.1" 370 + 371 + is-core-module@^2.13.0: 372 + - version "2.13.1" 373 + + version "2.16.1" 374 + + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.1.tgz#2a98801a849f43e2add644fbb6bc6229b19a4ef4" 375 + + integrity sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w== 376 + dependencies: 377 + - hasown "^2.0.0" 378 + + hasown "^2.0.2" 379 + 380 + is-extglob@^2.1.1: 381 + version "2.1.1" 382 + @@ -848,7 +950,7 @@ jquery-ui@1.14: 383 + dependencies: 384 + jquery ">=1.12.0 <5.0.0" 385 + 386 + -"jquery@>=1.12.0 <5.0.0", "jquery@>=3.4.0 <4.0.0", jquery@3.7: 387 + +jquery@3.7, "jquery@>=1.12.0 <5.0.0", "jquery@>=3.4.0 <4.0.0": 388 + version "3.7.1" 389 + resolved "https://registry.npmjs.org/jquery/-/jquery-3.7.1.tgz" 390 + integrity sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg== 391 + @@ -925,6 +1027,11 @@ map-cache@^0.2.0: 392 + resolved "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz" 393 + integrity sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg== 394 + 395 + +math-intrinsics@^1.1.0: 396 + + version "1.1.0" 397 + + resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz#a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9" 398 + + integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== 399 + + 400 + maxmin@^3.0.0: 401 + version "3.0.0" 402 + resolved "https://registry.npmjs.org/maxmin/-/maxmin-3.0.0.tgz" 403 + @@ -936,9 +1043,11 @@ maxmin@^3.0.0: 404 + pretty-bytes "^5.3.0" 405 + 406 + micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5: 407 + - version "4.0.5" 408 + + version "4.0.8" 409 + + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" 410 + + integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== 411 + dependencies: 412 + - braces "^3.0.2" 413 + + braces "^3.0.3" 414 + picomatch "^2.3.1" 415 + 416 + minimatch@^3.0.4, minimatch@^3.1.1: 417 + @@ -948,14 +1057,7 @@ minimatch@^3.0.4, minimatch@^3.1.1: 418 + dependencies: 419 + brace-expansion "^1.1.7" 420 + 421 + -minimatch@~3.0.2: 422 + - version "3.0.8" 423 + - resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz" 424 + - integrity sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q== 425 + - dependencies: 426 + - brace-expansion "^1.1.7" 427 + - 428 + -minimatch@~3.0.4: 429 + +minimatch@~3.0.2, minimatch@~3.0.4: 430 + version "3.0.8" 431 + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz" 432 + integrity sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q== 433 + @@ -979,15 +1081,19 @@ multimatch@^4.0.0: 434 + minimatch "^3.0.4" 435 + 436 + nanoid@^3.3.7: 437 + - version "3.3.7" 438 + + version "3.3.11" 439 + + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.11.tgz#4f4f112cefbe303202f2199838128936266d185b" 440 + + integrity sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w== 441 + 442 + node-addon-api@^7.0.0: 443 + version "7.1.1" 444 + resolved "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz" 445 + integrity sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ== 446 + 447 + -node-releases@^2.0.13: 448 + - version "2.0.13" 449 + +node-releases@^2.0.19: 450 + + version "2.0.19" 451 + + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.19.tgz#9e445a52950951ec4d177d843af370b411caf314" 452 + + integrity sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw== 453 + 454 + nopt@~3.0.6: 455 + version "3.0.6" 456 + @@ -1019,8 +1125,10 @@ object-assign@^4.1.0: 457 + resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" 458 + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== 459 + 460 + -object-inspect@^1.9.0: 461 + - version "1.13.1" 462 + +object-inspect@^1.13.3: 463 + + version "1.13.4" 464 + + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.4.tgz#8375265e21bc20d0fa582c22e1b13485d6e00213" 465 + + integrity sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew== 466 + 467 + object.defaults@^1.1.0: 468 + version "1.1.0" 469 + @@ -1137,12 +1245,9 @@ picocolors@^0.2.1: 470 + resolved "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz" 471 + integrity sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA== 472 + 473 + -picocolors@^1.0.0: 474 + - version "1.0.0" 475 + - 476 + -picocolors@^1.1.0: 477 + +picocolors@^1.1.1: 478 + version "1.1.1" 479 + - resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz" 480 + + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" 481 + integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== 482 + 483 + picomatch@^2.3.1: 484 + @@ -1167,6 +1272,15 @@ postcss-value-parser@^4.1.0: 485 + resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" 486 + integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== 487 + 488 + +postcss@8.4: 489 + + version "8.4.49" 490 + + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.49.tgz#4ea479048ab059ab3ae61d082190fabfd994fe19" 491 + + integrity sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA== 492 + + dependencies: 493 + + nanoid "^3.3.7" 494 + + picocolors "^1.1.1" 495 + + source-map-js "^1.2.1" 496 + + 497 + postcss@^6.0.11: 498 + version "6.0.23" 499 + resolved "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz" 500 + @@ -1184,22 +1298,17 @@ postcss@^7.0.32: 501 + picocolors "^0.2.1" 502 + source-map "^0.6.1" 503 + 504 + -postcss@8.4: 505 + - version "8.4.47" 506 + - dependencies: 507 + - nanoid "^3.3.7" 508 + - picocolors "^1.1.0" 509 + - source-map-js "^1.2.1" 510 + - 511 + pretty-bytes@^5.3.0: 512 + version "5.6.0" 513 + resolved "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz" 514 + integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== 515 + 516 + qs@^6.4.0: 517 + - version "6.11.2" 518 + + version "6.14.0" 519 + + resolved "https://registry.yarnpkg.com/qs/-/qs-6.14.0.tgz#c63fa40680d2c5c941412a0e899c89af60c0a930" 520 + + integrity sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w== 521 + dependencies: 522 + - side-channel "^1.0.4" 523 + + side-channel "^1.1.0" 524 + 525 + raw-body@~1.1.0: 526 + version "1.1.7" 527 + @@ -1283,32 +1392,57 @@ sass@^1.89.2: 528 + optionalDependencies: 529 + "@parcel/watcher" "^2.4.1" 530 + 531 + +select2@4.1.0-rc.0: 532 + + version "4.1.0-rc.0" 533 + + resolved "https://registry.npmjs.org/select2/-/select2-4.1.0-rc.0.tgz" 534 + + integrity sha512-Hr9TdhyHCZUtwznEH2CBf7967mEM0idtJ5nMtjvk3Up5tPukOLXbHUNmh10oRfeNIhj+3GD3niu+g6sVK+gK0A== 535 + + 536 + select@^1.1.2: 537 + version "1.1.2" 538 + resolved "https://registry.npmjs.org/select/-/select-1.1.2.tgz" 539 + integrity sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA== 540 + 541 + -select2@4.1.0-rc.0: 542 + - version "4.1.0-rc.0" 543 + - resolved "https://registry.npmjs.org/select2/-/select2-4.1.0-rc.0.tgz" 544 + - integrity sha512-Hr9TdhyHCZUtwznEH2CBf7967mEM0idtJ5nMtjvk3Up5tPukOLXbHUNmh10oRfeNIhj+3GD3niu+g6sVK+gK0A== 545 + +side-channel-list@^1.0.0: 546 + + version "1.0.0" 547 + + resolved "https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz#10cb5984263115d3b7a0e336591e290a830af8ad" 548 + + integrity sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA== 549 + + dependencies: 550 + + es-errors "^1.3.0" 551 + + object-inspect "^1.13.3" 552 + 553 + -set-function-length@^1.1.1: 554 + - version "1.1.1" 555 + +side-channel-map@^1.0.1: 556 + + version "1.0.1" 557 + + resolved "https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz#d6bb6b37902c6fef5174e5f533fab4c732a26f42" 558 + + integrity sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA== 559 + dependencies: 560 + - define-data-property "^1.1.1" 561 + - get-intrinsic "^1.2.1" 562 + - gopd "^1.0.1" 563 + - has-property-descriptors "^1.0.0" 564 + + call-bound "^1.0.2" 565 + + es-errors "^1.3.0" 566 + + get-intrinsic "^1.2.5" 567 + + object-inspect "^1.13.3" 568 + 569 + -side-channel@^1.0.4: 570 + - version "1.0.4" 571 + +side-channel-weakmap@^1.0.2: 572 + + version "1.0.2" 573 + + resolved "https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz#11dda19d5368e40ce9ec2bdc1fb0ecbc0790ecea" 574 + + integrity sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A== 575 + + dependencies: 576 + + call-bound "^1.0.2" 577 + + es-errors "^1.3.0" 578 + + get-intrinsic "^1.2.5" 579 + + object-inspect "^1.13.3" 580 + + side-channel-map "^1.0.1" 581 + + 582 + +side-channel@^1.1.0: 583 + + version "1.1.0" 584 + + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.0.tgz#c3fcff9c4da932784873335ec9765fa94ff66bc9" 585 + + integrity sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw== 586 + dependencies: 587 + - call-bind "^1.0.0" 588 + - get-intrinsic "^1.0.2" 589 + - object-inspect "^1.9.0" 590 + + es-errors "^1.3.0" 591 + + object-inspect "^1.13.3" 592 + + side-channel-list "^1.0.0" 593 + + side-channel-map "^1.0.1" 594 + + side-channel-weakmap "^1.0.2" 595 + 596 + -source-map-js@^1.2.1, "source-map-js@>=0.6.2 <2.0.0": 597 + +"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.2.1: 598 + version "1.2.1" 599 + resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz" 600 + integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== 601 + @@ -1333,16 +1467,16 @@ sprintf-js@~1.0.2: 602 + resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" 603 + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== 604 + 605 + -string_decoder@0.10: 606 + - version "0.10.31" 607 + - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" 608 + - integrity sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ== 609 + - 610 + string-template@~0.2.1: 611 + version "0.2.1" 612 + resolved "https://registry.npmjs.org/string-template/-/string-template-0.2.1.tgz" 613 + integrity sha512-Yptehjogou2xm4UJbxJ4CxgZx12HBfeystp0y3x7s4Dj32ltVVG1Gg8YhKjHZkHicuKpZX/ffilA8505VbUbpw== 614 + 615 + +string_decoder@0.10: 616 + + version "0.10.31" 617 + + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" 618 + + integrity sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ== 619 + + 620 + strip-ansi@^3.0.0: 621 + version "3.0.1" 622 + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz" 623 + @@ -1399,7 +1533,9 @@ to-regex-range@^5.0.1: 624 + is-number "^7.0.0" 625 + 626 + uglify-js@^3.16.1: 627 + - version "3.17.4" 628 + + version "3.19.3" 629 + + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.19.3.tgz#82315e9bbc6f2b25888858acd1fff8441035b77f" 630 + + integrity sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ== 631 + 632 + unc-path-regex@^0.1.2: 633 + version "0.1.2" 634 + @@ -1414,11 +1550,13 @@ underscore.string@~3.3.5: 635 + sprintf-js "^1.1.1" 636 + util-deprecate "^1.0.2" 637 + 638 + -update-browserslist-db@^1.0.13: 639 + - version "1.0.13" 640 + +update-browserslist-db@^1.1.3: 641 + + version "1.1.3" 642 + + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz#348377dd245216f9e7060ff50b15a1b740b75420" 643 + + integrity sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw== 644 + dependencies: 645 + - escalade "^3.1.1" 646 + - picocolors "^1.0.0" 647 + + escalade "^3.2.0" 648 + + picocolors "^1.1.1" 649 + 650 + uri-path@^1.0.0: 651 + version "1.0.0"
+34
pkgs/by-name/in/invoiceplane/fix_composer_validation.patch
··· 1 + From e404c835ae6681287f0d0ba005e43732becf8e9e Mon Sep 17 00:00:00 2001 2 + From: Jonas Heinrich <onny@project-insanity.org> 3 + Date: Sun, 17 Aug 2025 09:54:41 +0200 4 + Subject: [PATCH] composer.json omit version string 5 + 6 + --- 7 + composer.json | 1 - 8 + composer.lock | 2 +- 9 + 2 files changed, 1 insertion(+), 2 deletions(-) 10 + 11 + diff --git a/composer.json b/composer.json 12 + index 4ae0b32b7..241d59be9 100644 13 + --- a/composer.json 14 + +++ b/composer.json 15 + @@ -1,6 +1,5 @@ 16 + { 17 + "name": "invoiceplane/invoiceplane", 18 + - "version": "1.6.3-rc1", 19 + "description": "InvoicePlane is a self-hosted open source application for managing your invoices, clients and payments", 20 + "homepage": "https://invoiceplane.com", 21 + "license": "MIT", 22 + diff --git a/composer.lock b/composer.lock 23 + index 46fae450e..cf4aa24c1 100644 24 + --- a/composer.lock 25 + +++ b/composer.lock 26 + @@ -4,7 +4,7 @@ 27 + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", 28 + "This file is @generated automatically" 29 + ], 30 + - "content-hash": "6920f42f5773c5e01f9f107ebcedb891", 31 + + "content-hash": "16ec29d674456761958ca1c78513c3c5", 32 + "packages": [ 33 + { 34 + "name": "bacon/bacon-qr-code",
-3022
pkgs/by-name/in/invoiceplane/node_switch_to_sass.patch
··· 1 - diff --git a/Gruntfile.js b/Gruntfile.js 2 - index a201bafe..f11bf5bf 100644 3 - --- a/Gruntfile.js 4 - +++ b/Gruntfile.js 5 - @@ -1,6 +1,6 @@ 6 - "use strict"; 7 - module.exports = function(grunt) { 8 - - const sass = require("node-sass"); 9 - + const sass = require("sass"); 10 - 11 - // Load grunt tasks automatically 12 - require("load-grunt-tasks")(grunt); 13 - diff --git a/package.json b/package.json 14 - index 878e4233..1a16507b 100644 15 - --- a/package.json 16 - +++ b/package.json 17 - @@ -31,8 +31,8 @@ 18 - "jquery-ui": "1.14.1", 19 - "js-cookie": "2.2", 20 - "load-grunt-tasks": "5.1", 21 - - "node-sass": "9.0", 22 - "postcss": "8.4", 23 - + "sass": "^1.89.2", 24 - "select2": "4.1.0-rc.0", 25 - "zxcvbn": "4.4" 26 - }, 27 - diff --git a/yarn.lock b/yarn.lock 28 - index ee7067d7..d2585e0d 100644 29 - --- a/yarn.lock 30 - +++ b/yarn.lock 31 - @@ -2,196 +2,164 @@ 32 - # yarn lockfile v1 33 - 34 - 35 - -"@babel/code-frame@^7.0.0": 36 - - version "7.26.2" 37 - - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85" 38 - - integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ== 39 - - dependencies: 40 - - "@babel/helper-validator-identifier" "^7.25.9" 41 - - js-tokens "^4.0.0" 42 - - picocolors "^1.0.0" 43 - - 44 - -"@babel/helper-validator-identifier@^7.25.9": 45 - - version "7.25.9" 46 - - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz#24b64e2c3ec7cd3b3c547729b8d16871f22cbdc7" 47 - - integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ== 48 - - 49 - -"@gar/promisify@^1.0.1", "@gar/promisify@^1.1.3": 50 - - version "1.1.3" 51 - - resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6" 52 - - integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw== 53 - - 54 - -"@npmcli/fs@^1.0.0": 55 - - version "1.1.1" 56 - - resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-1.1.1.tgz#72f719fe935e687c56a4faecf3c03d06ba593257" 57 - - integrity sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ== 58 - - dependencies: 59 - - "@gar/promisify" "^1.0.1" 60 - - semver "^7.3.5" 61 - - 62 - -"@npmcli/fs@^2.1.0": 63 - - version "2.1.2" 64 - - resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-2.1.2.tgz#a9e2541a4a2fec2e69c29b35e6060973da79b865" 65 - - integrity sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ== 66 - - dependencies: 67 - - "@gar/promisify" "^1.1.3" 68 - - semver "^7.3.5" 69 - - 70 - -"@npmcli/move-file@^1.0.1": 71 - - version "1.1.2" 72 - - resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.2.tgz#1a82c3e372f7cae9253eb66d72543d6b8685c674" 73 - - integrity sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg== 74 - - dependencies: 75 - - mkdirp "^1.0.4" 76 - - rimraf "^3.0.2" 77 - - 78 - -"@npmcli/move-file@^2.0.0": 79 - - version "2.0.1" 80 - - resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-2.0.1.tgz#26f6bdc379d87f75e55739bab89db525b06100e4" 81 - - integrity sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ== 82 - - dependencies: 83 - - mkdirp "^1.0.4" 84 - - rimraf "^3.0.2" 85 - - 86 - -"@tootallnate/once@1": 87 - - version "1.1.2" 88 - - resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" 89 - - integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== 90 - - 91 - -"@tootallnate/once@2": 92 - - version "2.0.0" 93 - - resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" 94 - - integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== 95 - +"@parcel/watcher-android-arm64@2.5.1": 96 - + version "2.5.1" 97 - + resolved "https://registry.yarnpkg.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz#507f836d7e2042f798c7d07ad19c3546f9848ac1" 98 - + integrity sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA== 99 - + 100 - +"@parcel/watcher-darwin-arm64@2.5.1": 101 - + version "2.5.1" 102 - + resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz#3d26dce38de6590ef79c47ec2c55793c06ad4f67" 103 - + integrity sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw== 104 - + 105 - +"@parcel/watcher-darwin-x64@2.5.1": 106 - + version "2.5.1" 107 - + resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz#99f3af3869069ccf774e4ddfccf7e64fd2311ef8" 108 - + integrity sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg== 109 - + 110 - +"@parcel/watcher-freebsd-x64@2.5.1": 111 - + version "2.5.1" 112 - + resolved "https://registry.yarnpkg.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz#14d6857741a9f51dfe51d5b08b7c8afdbc73ad9b" 113 - + integrity sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ== 114 - + 115 - +"@parcel/watcher-linux-arm-glibc@2.5.1": 116 - + version "2.5.1" 117 - + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz#43c3246d6892381db473bb4f663229ad20b609a1" 118 - + integrity sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA== 119 - + 120 - +"@parcel/watcher-linux-arm-musl@2.5.1": 121 - + version "2.5.1" 122 - + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz#663750f7090bb6278d2210de643eb8a3f780d08e" 123 - + integrity sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q== 124 - + 125 - +"@parcel/watcher-linux-arm64-glibc@2.5.1": 126 - + version "2.5.1" 127 - + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz#ba60e1f56977f7e47cd7e31ad65d15fdcbd07e30" 128 - + integrity sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w== 129 - + 130 - +"@parcel/watcher-linux-arm64-musl@2.5.1": 131 - + version "2.5.1" 132 - + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz#f7fbcdff2f04c526f96eac01f97419a6a99855d2" 133 - + integrity sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg== 134 - + 135 - +"@parcel/watcher-linux-x64-glibc@2.5.1": 136 - + version "2.5.1" 137 - + resolved "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz" 138 - + integrity sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A== 139 - + 140 - +"@parcel/watcher-linux-x64-musl@2.5.1": 141 - + version "2.5.1" 142 - + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz#277b346b05db54f55657301dd77bdf99d63606ee" 143 - + integrity sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg== 144 - + 145 - +"@parcel/watcher-win32-arm64@2.5.1": 146 - + version "2.5.1" 147 - + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz#7e9e02a26784d47503de1d10e8eab6cceb524243" 148 - + integrity sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw== 149 - + 150 - +"@parcel/watcher-win32-ia32@2.5.1": 151 - + version "2.5.1" 152 - + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz#2d0f94fa59a873cdc584bf7f6b1dc628ddf976e6" 153 - + integrity sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ== 154 - + 155 - +"@parcel/watcher-win32-x64@2.5.1": 156 - + version "2.5.1" 157 - + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz#ae52693259664ba6f2228fa61d7ee44b64ea0947" 158 - + integrity sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA== 159 - + 160 - +"@parcel/watcher@^2.4.1": 161 - + version "2.5.1" 162 - + resolved "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz" 163 - + integrity sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg== 164 - + dependencies: 165 - + detect-libc "^1.0.3" 166 - + is-glob "^4.0.3" 167 - + micromatch "^4.0.5" 168 - + node-addon-api "^7.0.0" 169 - + optionalDependencies: 170 - + "@parcel/watcher-android-arm64" "2.5.1" 171 - + "@parcel/watcher-darwin-arm64" "2.5.1" 172 - + "@parcel/watcher-darwin-x64" "2.5.1" 173 - + "@parcel/watcher-freebsd-x64" "2.5.1" 174 - + "@parcel/watcher-linux-arm-glibc" "2.5.1" 175 - + "@parcel/watcher-linux-arm-musl" "2.5.1" 176 - + "@parcel/watcher-linux-arm64-glibc" "2.5.1" 177 - + "@parcel/watcher-linux-arm64-musl" "2.5.1" 178 - + "@parcel/watcher-linux-x64-glibc" "2.5.1" 179 - + "@parcel/watcher-linux-x64-musl" "2.5.1" 180 - + "@parcel/watcher-win32-arm64" "2.5.1" 181 - + "@parcel/watcher-win32-ia32" "2.5.1" 182 - + "@parcel/watcher-win32-x64" "2.5.1" 183 - 184 - "@types/minimatch@^3.0.3": 185 - version "3.0.5" 186 - - resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40" 187 - + resolved "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz" 188 - integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== 189 - 190 - -"@types/minimist@^1.2.0": 191 - - version "1.2.5" 192 - - resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.5.tgz#ec10755e871497bcd83efe927e43ec46e8c0747e" 193 - - integrity sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag== 194 - - 195 - -"@types/normalize-package-data@^2.4.0": 196 - - version "2.4.4" 197 - - resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz#56e2cc26c397c038fab0e3a917a12d5c5909e901" 198 - - integrity sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA== 199 - - 200 - abbrev@1: 201 - version "1.1.1" 202 - - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 203 - + resolved "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz" 204 - integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== 205 - 206 - -agent-base@6, agent-base@^6.0.2: 207 - - version "6.0.2" 208 - - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" 209 - - integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== 210 - - dependencies: 211 - - debug "4" 212 - - 213 - -agentkeepalive@^4.1.3, agentkeepalive@^4.2.1: 214 - - version "4.5.0" 215 - - resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.5.0.tgz#2673ad1389b3c418c5a20c5d7364f93ca04be923" 216 - - integrity sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew== 217 - - dependencies: 218 - - humanize-ms "^1.2.1" 219 - - 220 - -aggregate-error@^3.0.0: 221 - - version "3.1.0" 222 - - resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" 223 - - integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== 224 - - dependencies: 225 - - clean-stack "^2.0.0" 226 - - indent-string "^4.0.0" 227 - - 228 - ansi-regex@^2.0.0: 229 - version "2.1.1" 230 - - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 231 - + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz" 232 - integrity sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA== 233 - 234 - -ansi-regex@^5.0.1: 235 - - version "5.0.1" 236 - - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 237 - - integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 238 - - 239 - ansi-styles@^2.2.1: 240 - version "2.2.1" 241 - - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 242 - + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz" 243 - integrity sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA== 244 - 245 - ansi-styles@^3.2.1: 246 - version "3.2.1" 247 - - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 248 - + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" 249 - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 250 - dependencies: 251 - color-convert "^1.9.0" 252 - 253 - -ansi-styles@^4.0.0, ansi-styles@^4.1.0: 254 - +ansi-styles@^4.1.0: 255 - version "4.3.0" 256 - - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 257 - + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" 258 - integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 259 - dependencies: 260 - color-convert "^2.0.1" 261 - 262 - -"aproba@^1.0.3 || ^2.0.0": 263 - - version "2.0.0" 264 - - resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" 265 - - integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== 266 - - 267 - -are-we-there-yet@^3.0.0: 268 - - version "3.0.1" 269 - - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz#679df222b278c64f2cdba1175cdc00b0d96164bd" 270 - - integrity sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg== 271 - - dependencies: 272 - - delegates "^1.0.0" 273 - - readable-stream "^3.6.0" 274 - - 275 - argparse@^1.0.7: 276 - version "1.0.10" 277 - - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 278 - + resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" 279 - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 280 - dependencies: 281 - sprintf-js "~1.0.2" 282 - 283 - array-differ@^3.0.0: 284 - version "3.0.0" 285 - - resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-3.0.0.tgz#3cbb3d0f316810eafcc47624734237d6aee4ae6b" 286 - + resolved "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz" 287 - integrity sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg== 288 - 289 - array-each@^1.0.1: 290 - version "1.0.1" 291 - - resolved "https://registry.yarnpkg.com/array-each/-/array-each-1.0.1.tgz#a794af0c05ab1752846ee753a1f211a05ba0c44f" 292 - + resolved "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz" 293 - integrity sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA== 294 - 295 - array-slice@^1.0.0: 296 - version "1.1.0" 297 - - resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-1.1.0.tgz#e368ea15f89bc7069f7ffb89aec3a6c7d4ac22d4" 298 - + resolved "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz" 299 - integrity sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w== 300 - 301 - array-union@^2.1.0: 302 - version "2.1.0" 303 - - resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 304 - + resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" 305 - integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 306 - 307 - -arrify@^1.0.1: 308 - - version "1.0.1" 309 - - resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 310 - - integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== 311 - - 312 - arrify@^2.0.1: 313 - version "2.0.1" 314 - - resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" 315 - + resolved "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz" 316 - integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== 317 - 318 - -async-foreach@^0.1.3: 319 - - version "0.1.3" 320 - - resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" 321 - - integrity sha512-VUeSMD8nEGBWaZK4lizI1sf3yEC7pnAQ/mrI7pC2fBz2s/tq5jWWEngTwaf0Gruu/OoXRGLGg1XFqpYBiGTYJA== 322 - - 323 - async@^2.6.0: 324 - version "2.6.4" 325 - - resolved "https://registry.yarnpkg.com/async/-/async-2.6.4.tgz#706b7ff6084664cd7eae713f6f965433b5504221" 326 - + resolved "https://registry.npmjs.org/async/-/async-2.6.4.tgz" 327 - integrity sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA== 328 - dependencies: 329 - lodash "^4.17.14" 330 - @@ -203,7 +171,7 @@ async@^3.2.3, async@~3.2.0: 331 - 332 - autoprefixer@9.8.8: 333 - version "9.8.8" 334 - - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.8.tgz#fd4bd4595385fa6f06599de749a4d5f7a474957a" 335 - + resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz" 336 - integrity sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA== 337 - dependencies: 338 - browserslist "^4.12.0" 339 - @@ -216,12 +184,12 @@ autoprefixer@9.8.8: 340 - 341 - balanced-match@^1.0.0: 342 - version "1.0.2" 343 - - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 344 - + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" 345 - integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 346 - 347 - body@^5.1.0: 348 - version "5.1.0" 349 - - resolved "https://registry.yarnpkg.com/body/-/body-5.1.0.tgz#e4ba0ce410a46936323367609ecb4e6553125069" 350 - + resolved "https://registry.npmjs.org/body/-/body-5.1.0.tgz" 351 - integrity sha512-chUsBxGRtuElD6fmw1gHLpvnKdVLK302peeFa9ZqAEk8TyzZ3fygLyUEDDPTJvL9+Bor0dIwn6ePOsRM2y0zQQ== 352 - dependencies: 353 - continuable-cache "^0.3.1" 354 - @@ -231,31 +199,24 @@ body@^5.1.0: 355 - 356 - bootstrap-datepicker@1.10: 357 - version "1.10.0" 358 - - resolved "https://registry.yarnpkg.com/bootstrap-datepicker/-/bootstrap-datepicker-1.10.0.tgz#61612bbe8bf0a69a5bce32bbcdda93ebb6ccf24a" 359 - + resolved "https://registry.npmjs.org/bootstrap-datepicker/-/bootstrap-datepicker-1.10.0.tgz" 360 - integrity sha512-lWxtSYddAQOpbAO8UhYhHLcK6425eWoSjb5JDvZU3ePHEPF6A3eUr51WKaFy4PccU19JRxUG6wEU3KdhtKfvpg== 361 - dependencies: 362 - jquery ">=3.4.0 <4.0.0" 363 - 364 - bootstrap-sass@3.4.1: 365 - version "3.4.1" 366 - - resolved "https://registry.yarnpkg.com/bootstrap-sass/-/bootstrap-sass-3.4.1.tgz#6843c73b1c258a0ac5cb2cc6f6f5285b664a8e9a" 367 - + resolved "https://registry.npmjs.org/bootstrap-sass/-/bootstrap-sass-3.4.1.tgz" 368 - integrity sha512-p5rxsK/IyEDQm2CwiHxxUi0MZZtvVFbhWmyMOt4lLkA4bujDA1TGoKT0i1FKIWiugAdP+kK8T5KMDFIKQCLYIA== 369 - 370 - brace-expansion@^1.1.7: 371 - version "1.1.11" 372 - - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 373 - + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" 374 - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 375 - dependencies: 376 - balanced-match "^1.0.0" 377 - concat-map "0.0.1" 378 - 379 - -brace-expansion@^2.0.1: 380 - - version "2.0.1" 381 - - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" 382 - - integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== 383 - - dependencies: 384 - - balanced-match "^1.0.0" 385 - - 386 - braces@^3.0.3: 387 - version "3.0.3" 388 - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" 389 - @@ -264,101 +225,44 @@ braces@^3.0.3: 390 - fill-range "^7.1.1" 391 - 392 - browserslist@^4.12.0: 393 - - version "4.24.2" 394 - - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.2.tgz#f5845bc91069dbd55ee89faf9822e1d885d16580" 395 - - integrity sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg== 396 - + version "4.25.1" 397 - + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.25.1.tgz#ba9e8e6f298a1d86f829c9b975e07948967bb111" 398 - + integrity sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw== 399 - dependencies: 400 - - caniuse-lite "^1.0.30001669" 401 - - electron-to-chromium "^1.5.41" 402 - - node-releases "^2.0.18" 403 - - update-browserslist-db "^1.1.1" 404 - + caniuse-lite "^1.0.30001726" 405 - + electron-to-chromium "^1.5.173" 406 - + node-releases "^2.0.19" 407 - + update-browserslist-db "^1.1.3" 408 - 409 - bytes@1: 410 - version "1.0.0" 411 - - resolved "https://registry.yarnpkg.com/bytes/-/bytes-1.0.0.tgz#3569ede8ba34315fab99c3e92cb04c7220de1fa8" 412 - + resolved "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz" 413 - integrity sha512-/x68VkHLeTl3/Ll8IvxdwzhrT+IyKc52e/oyHhA2RwqPqswSnjVbSddfPRwAsJtbilMAPSRWwAlpxdYsSWOTKQ== 414 - 415 - -cacache@^15.2.0: 416 - - version "15.3.0" 417 - - resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.3.0.tgz#dc85380fb2f556fe3dda4c719bfa0ec875a7f1eb" 418 - - integrity sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ== 419 - - dependencies: 420 - - "@npmcli/fs" "^1.0.0" 421 - - "@npmcli/move-file" "^1.0.1" 422 - - chownr "^2.0.0" 423 - - fs-minipass "^2.0.0" 424 - - glob "^7.1.4" 425 - - infer-owner "^1.0.4" 426 - - lru-cache "^6.0.0" 427 - - minipass "^3.1.1" 428 - - minipass-collect "^1.0.2" 429 - - minipass-flush "^1.0.5" 430 - - minipass-pipeline "^1.2.2" 431 - - mkdirp "^1.0.3" 432 - - p-map "^4.0.0" 433 - - promise-inflight "^1.0.1" 434 - - rimraf "^3.0.2" 435 - - ssri "^8.0.1" 436 - - tar "^6.0.2" 437 - - unique-filename "^1.1.1" 438 - - 439 - -cacache@^16.1.0: 440 - - version "16.1.3" 441 - - resolved "https://registry.yarnpkg.com/cacache/-/cacache-16.1.3.tgz#a02b9f34ecfaf9a78c9f4bc16fceb94d5d67a38e" 442 - - integrity sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ== 443 - - dependencies: 444 - - "@npmcli/fs" "^2.1.0" 445 - - "@npmcli/move-file" "^2.0.0" 446 - - chownr "^2.0.0" 447 - - fs-minipass "^2.1.0" 448 - - glob "^8.0.1" 449 - - infer-owner "^1.0.4" 450 - - lru-cache "^7.7.1" 451 - - minipass "^3.1.6" 452 - - minipass-collect "^1.0.2" 453 - - minipass-flush "^1.0.5" 454 - - minipass-pipeline "^1.2.4" 455 - - mkdirp "^1.0.4" 456 - - p-map "^4.0.0" 457 - - promise-inflight "^1.0.1" 458 - - rimraf "^3.0.2" 459 - - ssri "^9.0.0" 460 - - tar "^6.1.11" 461 - - unique-filename "^2.0.0" 462 - - 463 - -call-bind@^1.0.7: 464 - - version "1.0.7" 465 - - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" 466 - - integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== 467 - +call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: 468 - + version "1.0.2" 469 - + resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz#4b5428c222be985d79c3d82657479dbe0b59b2d6" 470 - + integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ== 471 - dependencies: 472 - - es-define-property "^1.0.0" 473 - es-errors "^1.3.0" 474 - function-bind "^1.1.2" 475 - - get-intrinsic "^1.2.4" 476 - - set-function-length "^1.2.1" 477 - 478 - -camelcase-keys@^6.2.2: 479 - - version "6.2.2" 480 - - resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" 481 - - integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== 482 - +call-bound@^1.0.2: 483 - + version "1.0.4" 484 - + resolved "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz#238de935d2a2a692928c538c7ccfa91067fd062a" 485 - + integrity sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg== 486 - dependencies: 487 - - camelcase "^5.3.1" 488 - - map-obj "^4.0.0" 489 - - quick-lru "^4.0.1" 490 - - 491 - -camelcase@^5.3.1: 492 - - version "5.3.1" 493 - - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 494 - - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 495 - + call-bind-apply-helpers "^1.0.2" 496 - + get-intrinsic "^1.3.0" 497 - 498 - -caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001669: 499 - - version "1.0.30001684" 500 - - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001684.tgz#0eca437bab7d5f03452ff0ef9de8299be6b08e16" 501 - - integrity sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ== 502 - +caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001726: 503 - + version "1.0.30001727" 504 - + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001727.tgz#22e9706422ad37aa50556af8c10e40e2d93a8b85" 505 - + integrity sha512-pB68nIHmbN6L/4C6MH1DokyR3bYqFwjaSs/sWDHGj4CTcFtQUQMuJftVwWkXq7mNWOybD3KhUv3oWHoGxgP14Q== 506 - 507 - chalk@^1.1.1: 508 - version "1.1.3" 509 - - resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 510 - + resolved "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz" 511 - integrity sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A== 512 - dependencies: 513 - ansi-styles "^2.2.1" 514 - @@ -369,7 +273,7 @@ chalk@^1.1.1: 515 - 516 - chalk@^2.1.0, chalk@^2.4.1: 517 - version "2.4.2" 518 - - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 519 - + resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" 520 - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 521 - dependencies: 522 - ansi-styles "^3.2.1" 523 - @@ -378,281 +282,201 @@ chalk@^2.1.0, chalk@^2.4.1: 524 - 525 - chalk@^4.1.0, chalk@^4.1.2, chalk@~4.1.0: 526 - version "4.1.2" 527 - - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 528 - + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" 529 - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 530 - dependencies: 531 - ansi-styles "^4.1.0" 532 - supports-color "^7.1.0" 533 - 534 - -chownr@^2.0.0: 535 - - version "2.0.0" 536 - - resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" 537 - - integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== 538 - - 539 - -clean-stack@^2.0.0: 540 - - version "2.2.0" 541 - - resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" 542 - - integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== 543 - +chokidar@^4.0.0: 544 - + version "4.0.3" 545 - + resolved "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz" 546 - + integrity sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA== 547 - + dependencies: 548 - + readdirp "^4.0.1" 549 - 550 - clipboard@2.0.11: 551 - version "2.0.11" 552 - - resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.11.tgz#62180360b97dd668b6b3a84ec226975762a70be5" 553 - + resolved "https://registry.npmjs.org/clipboard/-/clipboard-2.0.11.tgz" 554 - integrity sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw== 555 - dependencies: 556 - good-listener "^1.2.2" 557 - select "^1.1.2" 558 - tiny-emitter "^2.0.0" 559 - 560 - -cliui@^8.0.1: 561 - - version "8.0.1" 562 - - resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" 563 - - integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== 564 - - dependencies: 565 - - string-width "^4.2.0" 566 - - strip-ansi "^6.0.1" 567 - - wrap-ansi "^7.0.0" 568 - - 569 - color-convert@^1.9.0: 570 - version "1.9.3" 571 - - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 572 - + resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" 573 - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 574 - dependencies: 575 - color-name "1.1.3" 576 - 577 - color-convert@^2.0.1: 578 - version "2.0.1" 579 - - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 580 - + resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" 581 - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 582 - dependencies: 583 - color-name "~1.1.4" 584 - 585 - color-name@1.1.3: 586 - version "1.1.3" 587 - - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 588 - + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" 589 - integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== 590 - 591 - color-name@~1.1.4: 592 - version "1.1.4" 593 - - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 594 - + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" 595 - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 596 - 597 - -color-support@^1.1.3: 598 - - version "1.1.3" 599 - - resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" 600 - - integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== 601 - - 602 - colors@~1.1.2: 603 - version "1.1.2" 604 - - resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 605 - + resolved "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz" 606 - integrity sha512-ENwblkFQpqqia6b++zLD/KUWafYlVY/UNnAp7oz7LY7E924wmpye416wBOmvv/HMWzl8gL1kJlfvId/1Dg176w== 607 - 608 - concat-map@0.0.1: 609 - version "0.0.1" 610 - - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 611 - + resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" 612 - integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 613 - 614 - -console-control-strings@^1.1.0: 615 - - version "1.1.0" 616 - - resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 617 - - integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== 618 - - 619 - continuable-cache@^0.3.1: 620 - version "0.3.1" 621 - - resolved "https://registry.yarnpkg.com/continuable-cache/-/continuable-cache-0.3.1.tgz#bd727a7faed77e71ff3985ac93351a912733ad0f" 622 - + resolved "https://registry.npmjs.org/continuable-cache/-/continuable-cache-0.3.1.tgz" 623 - integrity sha512-TF30kpKhTH8AGCG3dut0rdd/19B7Z+qCnrMoBLpyQu/2drZdNrrpcjPEoJeSVsQM+8KmWG5O56oPDjSSUsuTyA== 624 - 625 - -core-util-is@~1.0.0: 626 - - version "1.0.3" 627 - - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" 628 - - integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== 629 - - 630 - -cross-spawn@^7.0.3: 631 - - version "7.0.6" 632 - - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" 633 - - integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== 634 - - dependencies: 635 - - path-key "^3.1.0" 636 - - shebang-command "^2.0.0" 637 - - which "^2.0.1" 638 - - 639 - dateformat@~4.6.2: 640 - version "4.6.3" 641 - - resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-4.6.3.tgz#556fa6497e5217fedb78821424f8a1c22fa3f4b5" 642 - + resolved "https://registry.npmjs.org/dateformat/-/dateformat-4.6.3.tgz" 643 - integrity sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA== 644 - 645 - -debug@4, debug@^4.3.3: 646 - - version "4.3.7" 647 - - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52" 648 - - integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== 649 - - dependencies: 650 - - ms "^2.1.3" 651 - - 652 - debug@^3.1.0: 653 - version "3.2.7" 654 - - resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 655 - + resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" 656 - integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 657 - dependencies: 658 - ms "^2.1.1" 659 - 660 - -decamelize-keys@^1.1.0: 661 - - version "1.1.1" 662 - - resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz#04a2d523b2f18d80d0158a43b895d56dff8d19d8" 663 - - integrity sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg== 664 - - dependencies: 665 - - decamelize "^1.1.0" 666 - - map-obj "^1.0.0" 667 - - 668 - -decamelize@^1.1.0, decamelize@^1.2.0: 669 - - version "1.2.0" 670 - - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 671 - - integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== 672 - - 673 - -define-data-property@^1.1.4: 674 - - version "1.1.4" 675 - - resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" 676 - - integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== 677 - - dependencies: 678 - - es-define-property "^1.0.0" 679 - - es-errors "^1.3.0" 680 - - gopd "^1.0.1" 681 - - 682 - delegate@^3.1.2: 683 - version "3.2.0" 684 - - resolved "https://registry.yarnpkg.com/delegate/-/delegate-3.2.0.tgz#b66b71c3158522e8ab5744f720d8ca0c2af59166" 685 - + resolved "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz" 686 - integrity sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw== 687 - 688 - -delegates@^1.0.0: 689 - - version "1.0.0" 690 - - resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 691 - - integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== 692 - - 693 - detect-file@^1.0.0: 694 - version "1.0.0" 695 - - resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" 696 - + resolved "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz" 697 - integrity sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q== 698 - 699 - +detect-libc@^1.0.3: 700 - + version "1.0.3" 701 - + resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz" 702 - + integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg== 703 - + 704 - diff@^3.0.0: 705 - version "3.5.0" 706 - - resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 707 - + resolved "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz" 708 - integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== 709 - 710 - dropzone@5.9.3: 711 - version "5.9.3" 712 - - resolved "https://registry.yarnpkg.com/dropzone/-/dropzone-5.9.3.tgz#b3070ae090fa48cbc04c17535635537ca72d70d6" 713 - + resolved "https://registry.npmjs.org/dropzone/-/dropzone-5.9.3.tgz" 714 - integrity sha512-Azk8kD/2/nJIuVPK+zQ9sjKMRIpRvNyqn9XwbBHNq+iNuSccbJS6hwm1Woy0pMST0erSo0u4j+KJaodndDk4vA== 715 - 716 - +dunder-proto@^1.0.1: 717 - + version "1.0.1" 718 - + resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz#d7ae667e1dc83482f8b70fd0f6eefc50da30f58a" 719 - + integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A== 720 - + dependencies: 721 - + call-bind-apply-helpers "^1.0.1" 722 - + es-errors "^1.3.0" 723 - + gopd "^1.2.0" 724 - + 725 - duplexer@^0.1.1: 726 - version "0.1.2" 727 - - resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" 728 - + resolved "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz" 729 - integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== 730 - 731 - -electron-to-chromium@^1.5.41: 732 - - version "1.5.67" 733 - - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.67.tgz#66ebd2be4a77469ac2760ef5e9e460ba9a43a845" 734 - - integrity sha512-nz88NNBsD7kQSAGGJyp8hS6xSPtWwqNogA0mjtc2nUYeEf3nURK9qpV18TuBdDmEDgVWotS8Wkzf+V52dSQ/LQ== 735 - - 736 - -emoji-regex@^8.0.0: 737 - - version "8.0.0" 738 - - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 739 - - integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 740 - - 741 - -encoding@^0.1.12, encoding@^0.1.13: 742 - - version "0.1.13" 743 - - resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" 744 - - integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== 745 - - dependencies: 746 - - iconv-lite "^0.6.2" 747 - - 748 - -env-paths@^2.2.0: 749 - - version "2.2.1" 750 - - resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" 751 - - integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== 752 - - 753 - -err-code@^2.0.2: 754 - - version "2.0.3" 755 - - resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" 756 - - integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== 757 - - 758 - -error-ex@^1.3.1: 759 - - version "1.3.2" 760 - - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 761 - - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 762 - - dependencies: 763 - - is-arrayish "^0.2.1" 764 - +electron-to-chromium@^1.5.173: 765 - + version "1.5.182" 766 - + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.182.tgz#4ab73104f893938acb3ab9c28d7bec170c116b3e" 767 - + integrity sha512-Lv65Btwv9W4J9pyODI6EWpdnhfvrve/us5h1WspW8B2Fb0366REPtY3hX7ounk1CkV/TBjWCEvCBBbYbmV0qCA== 768 - 769 - error@^7.0.0: 770 - version "7.2.1" 771 - - resolved "https://registry.yarnpkg.com/error/-/error-7.2.1.tgz#eab21a4689b5f684fc83da84a0e390de82d94894" 772 - + resolved "https://registry.npmjs.org/error/-/error-7.2.1.tgz" 773 - integrity sha512-fo9HBvWnx3NGUKMvMwB/CBCMMrfEJgbDTVDEkPygA3Bdd3lM1OyCd+rbQ8BwnpF6GdVeOLDNmyL4N5Bg80ZvdA== 774 - dependencies: 775 - string-template "~0.2.1" 776 - 777 - -es-define-property@^1.0.0: 778 - - version "1.0.0" 779 - - resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" 780 - - integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== 781 - - dependencies: 782 - - get-intrinsic "^1.2.4" 783 - +es-define-property@^1.0.1: 784 - + version "1.0.1" 785 - + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa" 786 - + integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== 787 - 788 - es-errors@^1.3.0: 789 - version "1.3.0" 790 - resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" 791 - integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== 792 - 793 - -escalade@^3.1.1, escalade@^3.2.0: 794 - +es-object-atoms@^1.0.0, es-object-atoms@^1.1.1: 795 - + version "1.1.1" 796 - + resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz#1c4f2c4837327597ce69d2ca190a7fdd172338c1" 797 - + integrity sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA== 798 - + dependencies: 799 - + es-errors "^1.3.0" 800 - + 801 - +escalade@^3.2.0: 802 - version "3.2.0" 803 - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" 804 - integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== 805 - 806 - escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 807 - version "1.0.5" 808 - - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 809 - + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" 810 - integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== 811 - 812 - esprima@^4.0.0: 813 - version "4.0.1" 814 - - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 815 - + resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" 816 - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 817 - 818 - eventemitter2@~0.4.13: 819 - version "0.4.14" 820 - - resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-0.4.14.tgz#8f61b75cde012b2e9eb284d4545583b5643b61ab" 821 - + resolved "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz" 822 - integrity sha512-K7J4xq5xAD5jHsGM5ReWXRTFa3JRGofHiMcVgQ8PRwgWxzjHpMWCIzsmyf60+mh8KLsqYPcjUMa0AC4hd6lPyQ== 823 - 824 - exit@~0.1.2: 825 - version "0.1.2" 826 - - resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 827 - + resolved "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz" 828 - integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== 829 - 830 - expand-tilde@^2.0.0, expand-tilde@^2.0.2: 831 - version "2.0.2" 832 - - resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" 833 - + resolved "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz" 834 - integrity sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw== 835 - dependencies: 836 - homedir-polyfill "^1.0.1" 837 - 838 - extend@^3.0.2: 839 - version "3.0.2" 840 - - resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 841 - + resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz" 842 - integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== 843 - 844 - faye-websocket@~0.10.0: 845 - version "0.10.0" 846 - - resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" 847 - + resolved "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz" 848 - integrity sha512-Xhj93RXbMSq8urNCUq4p9l0P6hnySJ/7YNRhYNug0bLOuii7pKO7xQFb5mx9xZXWCar88pLPb805PvUkwrLZpQ== 849 - dependencies: 850 - websocket-driver ">=0.5.1" 851 - 852 - figures@^3.2.0: 853 - version "3.2.0" 854 - - resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" 855 - + resolved "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz" 856 - integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== 857 - dependencies: 858 - escape-string-regexp "^1.0.5" 859 - 860 - file-sync-cmp@^0.1.0: 861 - version "0.1.1" 862 - - resolved "https://registry.yarnpkg.com/file-sync-cmp/-/file-sync-cmp-0.1.1.tgz#a5e7a8ffbfa493b43b923bbd4ca89a53b63b612b" 863 - + resolved "https://registry.npmjs.org/file-sync-cmp/-/file-sync-cmp-0.1.1.tgz" 864 - integrity sha512-0k45oWBokCqh2MOexeYKpyqmGKG+8mQ2Wd8iawx+uWd/weWJQAZ6SoPybagdCI4xFisag8iAR77WPm4h3pTfxA== 865 - 866 - fill-range@^7.1.1: 867 - @@ -664,22 +488,14 @@ fill-range@^7.1.1: 868 - 869 - find-up@^3.0.0: 870 - version "3.0.0" 871 - - resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" 872 - + resolved "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz" 873 - integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== 874 - dependencies: 875 - locate-path "^3.0.0" 876 - 877 - -find-up@^4.1.0: 878 - - version "4.1.0" 879 - - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 880 - - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 881 - - dependencies: 882 - - locate-path "^5.0.0" 883 - - path-exists "^4.0.0" 884 - - 885 - findup-sync@^4.0.0: 886 - version "4.0.0" 887 - - resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-4.0.0.tgz#956c9cdde804052b881b428512905c4a5f2cdef0" 888 - + resolved "https://registry.npmjs.org/findup-sync/-/findup-sync-4.0.0.tgz" 889 - integrity sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ== 890 - dependencies: 891 - detect-file "^1.0.0" 892 - @@ -689,7 +505,7 @@ findup-sync@^4.0.0: 893 - 894 - findup-sync@~5.0.0: 895 - version "5.0.0" 896 - - resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-5.0.0.tgz#54380ad965a7edca00cc8f63113559aadc541bd2" 897 - + resolved "https://registry.npmjs.org/findup-sync/-/findup-sync-5.0.0.tgz" 898 - integrity sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ== 899 - dependencies: 900 - detect-file "^1.0.0" 901 - @@ -699,7 +515,7 @@ findup-sync@~5.0.0: 902 - 903 - fined@^1.2.0: 904 - version "1.2.0" 905 - - resolved "https://registry.yarnpkg.com/fined/-/fined-1.2.0.tgz#d00beccf1aa2b475d16d423b0238b713a2c4a37b" 906 - + resolved "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz" 907 - integrity sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng== 908 - dependencies: 909 - expand-tilde "^2.0.2" 910 - @@ -710,93 +526,75 @@ fined@^1.2.0: 911 - 912 - flagged-respawn@^1.0.1: 913 - version "1.0.1" 914 - - resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-1.0.1.tgz#e7de6f1279ddd9ca9aac8a5971d618606b3aab41" 915 - + resolved "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz" 916 - integrity sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q== 917 - 918 - font-awesome@4.7: 919 - version "4.7.0" 920 - - resolved "https://registry.yarnpkg.com/font-awesome/-/font-awesome-4.7.0.tgz#8fa8cf0411a1a31afd07b06d2902bb9fc815a133" 921 - + resolved "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz" 922 - integrity sha512-U6kGnykA/6bFmg1M/oT9EkFeIYv7JlX3bozwQJWiiLz6L0w3F5vBVPxHlwyX/vtNq1ckcpRKOB9f2Qal/VtFpg== 923 - 924 - for-in@^1.0.1: 925 - version "1.0.2" 926 - - resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 927 - + resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz" 928 - integrity sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ== 929 - 930 - for-own@^1.0.0: 931 - version "1.0.0" 932 - - resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" 933 - + resolved "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz" 934 - integrity sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg== 935 - dependencies: 936 - for-in "^1.0.1" 937 - 938 - -fs-minipass@^2.0.0, fs-minipass@^2.1.0: 939 - - version "2.1.0" 940 - - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" 941 - - integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== 942 - - dependencies: 943 - - minipass "^3.0.0" 944 - - 945 - fs.realpath@^1.0.0: 946 - version "1.0.0" 947 - - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 948 - + resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" 949 - integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 950 - 951 - function-bind@^1.1.2: 952 - version "1.1.2" 953 - - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" 954 - + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz" 955 - integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== 956 - 957 - -gauge@^4.0.3: 958 - - version "4.0.4" 959 - - resolved "https://registry.yarnpkg.com/gauge/-/gauge-4.0.4.tgz#52ff0652f2bbf607a989793d53b751bef2328dce" 960 - - integrity sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg== 961 - - dependencies: 962 - - aproba "^1.0.3 || ^2.0.0" 963 - - color-support "^1.1.3" 964 - - console-control-strings "^1.1.0" 965 - - has-unicode "^2.0.1" 966 - - signal-exit "^3.0.7" 967 - - string-width "^4.2.3" 968 - - strip-ansi "^6.0.1" 969 - - wide-align "^1.1.5" 970 - - 971 - -gaze@^1.0.0, gaze@^1.1.0: 972 - +gaze@^1.1.0: 973 - version "1.1.3" 974 - - resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.3.tgz#c441733e13b927ac8c0ff0b4c3b033f28812924a" 975 - + resolved "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz" 976 - integrity sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g== 977 - dependencies: 978 - globule "^1.0.0" 979 - 980 - -get-caller-file@^2.0.5: 981 - - version "2.0.5" 982 - - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 983 - - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 984 - - 985 - -get-intrinsic@^1.2.4: 986 - - version "1.2.4" 987 - - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" 988 - - integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== 989 - +get-intrinsic@^1.2.5, get-intrinsic@^1.3.0: 990 - + version "1.3.0" 991 - + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz#743f0e3b6964a93a5491ed1bffaae054d7f98d01" 992 - + integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ== 993 - dependencies: 994 - + call-bind-apply-helpers "^1.0.2" 995 - + es-define-property "^1.0.1" 996 - es-errors "^1.3.0" 997 - + es-object-atoms "^1.1.1" 998 - function-bind "^1.1.2" 999 - - has-proto "^1.0.1" 1000 - - has-symbols "^1.0.3" 1001 - - hasown "^2.0.0" 1002 - + get-proto "^1.0.1" 1003 - + gopd "^1.2.0" 1004 - + has-symbols "^1.1.0" 1005 - + hasown "^2.0.2" 1006 - + math-intrinsics "^1.1.0" 1007 - 1008 - -get-stdin@^4.0.1: 1009 - - version "4.0.1" 1010 - - resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1011 - - integrity sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw== 1012 - +get-proto@^1.0.1: 1013 - + version "1.0.1" 1014 - + resolved "https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz#150b3f2743869ef3e851ec0c49d15b1d14d00ee1" 1015 - + integrity sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g== 1016 - + dependencies: 1017 - + dunder-proto "^1.0.1" 1018 - + es-object-atoms "^1.0.0" 1019 - 1020 - getobject@~1.0.0: 1021 - version "1.0.2" 1022 - - resolved "https://registry.yarnpkg.com/getobject/-/getobject-1.0.2.tgz#25ec87a50370f6dcc3c6ba7ef43c4c16215c4c89" 1023 - + resolved "https://registry.npmjs.org/getobject/-/getobject-1.0.2.tgz" 1024 - integrity sha512-2zblDBaFcb3rB4rF77XVnuINOE2h2k/OnqXAiy0IrTxUfV1iFp3la33oAQVY9pCpWU268WFYVt2t71hlMuLsOg== 1025 - 1026 - -glob@^7.0.0, glob@^7.0.3, glob@^7.1.3, glob@^7.1.4: 1027 - +glob@^7.1.3: 1028 - version "7.2.3" 1029 - - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 1030 - + resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" 1031 - integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 1032 - dependencies: 1033 - fs.realpath "^1.0.0" 1034 - @@ -806,20 +604,9 @@ glob@^7.0.0, glob@^7.0.3, glob@^7.1.3, glob@^7.1.4: 1035 - once "^1.3.0" 1036 - path-is-absolute "^1.0.0" 1037 - 1038 - -glob@^8.0.1: 1039 - - version "8.1.0" 1040 - - resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" 1041 - - integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== 1042 - - dependencies: 1043 - - fs.realpath "^1.0.0" 1044 - - inflight "^1.0.4" 1045 - - inherits "2" 1046 - - minimatch "^5.0.1" 1047 - - once "^1.3.0" 1048 - - 1049 - glob@~7.1.1, glob@~7.1.6: 1050 - version "7.1.7" 1051 - - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" 1052 - + resolved "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz" 1053 - integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== 1054 - dependencies: 1055 - fs.realpath "^1.0.0" 1056 - @@ -831,7 +618,7 @@ glob@~7.1.1, glob@~7.1.6: 1057 - 1058 - global-modules@^1.0.0: 1059 - version "1.0.0" 1060 - - resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" 1061 - + resolved "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz" 1062 - integrity sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg== 1063 - dependencies: 1064 - global-prefix "^1.0.1" 1065 - @@ -840,7 +627,7 @@ global-modules@^1.0.0: 1066 - 1067 - global-prefix@^1.0.1: 1068 - version "1.0.2" 1069 - - resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" 1070 - + resolved "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz" 1071 - integrity sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg== 1072 - dependencies: 1073 - expand-tilde "^2.0.2" 1074 - @@ -851,7 +638,7 @@ global-prefix@^1.0.1: 1075 - 1076 - globule@^1.0.0: 1077 - version "1.3.4" 1078 - - resolved "https://registry.yarnpkg.com/globule/-/globule-1.3.4.tgz#7c11c43056055a75a6e68294453c17f2796170fb" 1079 - + resolved "https://registry.npmjs.org/globule/-/globule-1.3.4.tgz" 1080 - integrity sha512-OPTIfhMBh7JbBYDpa5b+Q5ptmMWKwcNcFSR/0c6t8V4f3ZAVBEsKNY37QdVqmLRYSMhOUGYrY0QhSoEpzGr/Eg== 1081 - dependencies: 1082 - glob "~7.1.1" 1083 - @@ -860,26 +647,19 @@ globule@^1.0.0: 1084 - 1085 - good-listener@^1.2.2: 1086 - version "1.2.2" 1087 - - resolved "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50" 1088 - + resolved "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz" 1089 - integrity sha512-goW1b+d9q/HIwbVYZzZ6SsTr4IgE+WA44A0GmPIQstuOrgsFcT7VEJ48nmr9GaRtNu0XTKacFLGnBPAM6Afouw== 1090 - dependencies: 1091 - delegate "^3.1.2" 1092 - 1093 - -gopd@^1.0.1: 1094 - - version "1.1.0" 1095 - - resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.1.0.tgz#df8f0839c2d48caefc32a025a49294d39606c912" 1096 - - integrity sha512-FQoVQnqcdk4hVM4JN1eromaun4iuS34oStkdlLENLdpULsuQcTyXj8w7ayhuUfPwEYZ1ZOooOTT6fdA9Vmx/RA== 1097 - - dependencies: 1098 - - get-intrinsic "^1.2.4" 1099 - - 1100 - -graceful-fs@^4.2.6: 1101 - - version "4.2.11" 1102 - - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" 1103 - - integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== 1104 - +gopd@^1.2.0: 1105 - + version "1.2.0" 1106 - + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1" 1107 - + integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== 1108 - 1109 - grunt-cli@~1.4.3: 1110 - version "1.4.3" 1111 - - resolved "https://registry.yarnpkg.com/grunt-cli/-/grunt-cli-1.4.3.tgz#22c9f1a3d2780bf9b0d206e832e40f8f499175ff" 1112 - + resolved "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.4.3.tgz" 1113 - integrity sha512-9Dtx/AhVeB4LYzsViCjUQkd0Kw0McN2gYpdmGYKtE2a5Yt7v1Q+HYZVWhqXc/kGnxlMtqKDxSwotiGeFmkrCoQ== 1114 - dependencies: 1115 - grunt-known-options "~2.0.0" 1116 - @@ -890,7 +670,7 @@ grunt-cli@~1.4.3: 1117 - 1118 - grunt-contrib-clean@2.0: 1119 - version "2.0.1" 1120 - - resolved "https://registry.yarnpkg.com/grunt-contrib-clean/-/grunt-contrib-clean-2.0.1.tgz#062e8019d31bfca35af8929a2ee1063c6c46dd2d" 1121 - + resolved "https://registry.npmjs.org/grunt-contrib-clean/-/grunt-contrib-clean-2.0.1.tgz" 1122 - integrity sha512-uRvnXfhiZt8akb/ZRDHJpQQtkkVkqc/opWO4Po/9ehC2hPxgptB9S6JHDC/Nxswo4CJSM0iFPT/Iym3cEMWzKA== 1123 - dependencies: 1124 - async "^3.2.3" 1125 - @@ -898,7 +678,7 @@ grunt-contrib-clean@2.0: 1126 - 1127 - grunt-contrib-concat@2.1: 1128 - version "2.1.0" 1129 - - resolved "https://registry.yarnpkg.com/grunt-contrib-concat/-/grunt-contrib-concat-2.1.0.tgz#9ac62117a18b48d1bfccb3eef46c960bbd163d75" 1130 - + resolved "https://registry.npmjs.org/grunt-contrib-concat/-/grunt-contrib-concat-2.1.0.tgz" 1131 - integrity sha512-Vnl95JIOxfhEN7bnYIlCgQz41kkbi7tsZ/9a4usZmxNxi1S2YAIOy8ysFmO8u4MN26Apal1O106BwARdaNxXQw== 1132 - dependencies: 1133 - chalk "^4.1.2" 1134 - @@ -906,7 +686,7 @@ grunt-contrib-concat@2.1: 1135 - 1136 - grunt-contrib-copy@1.0: 1137 - version "1.0.0" 1138 - - resolved "https://registry.yarnpkg.com/grunt-contrib-copy/-/grunt-contrib-copy-1.0.0.tgz#7060c6581e904b8ab0d00f076e0a8f6e3e7c3573" 1139 - + resolved "https://registry.npmjs.org/grunt-contrib-copy/-/grunt-contrib-copy-1.0.0.tgz" 1140 - integrity sha512-gFRFUB0ZbLcjKb67Magz1yOHGBkyU6uL29hiEW1tdQ9gQt72NuMKIy/kS6dsCbV0cZ0maNCb0s6y+uT1FKU7jA== 1141 - dependencies: 1142 - chalk "^1.1.1" 1143 - @@ -914,7 +694,7 @@ grunt-contrib-copy@1.0: 1144 - 1145 - grunt-contrib-uglify@5.2: 1146 - version "5.2.2" 1147 - - resolved "https://registry.yarnpkg.com/grunt-contrib-uglify/-/grunt-contrib-uglify-5.2.2.tgz#447c0b58451a1fca20768371e07e723a870dfe98" 1148 - + resolved "https://registry.npmjs.org/grunt-contrib-uglify/-/grunt-contrib-uglify-5.2.2.tgz" 1149 - integrity sha512-ITxiWxrjjP+RZu/aJ5GLvdele+sxlznh+6fK9Qckio5ma8f7Iv8woZjRkGfafvpuygxNefOJNc+hfjjBayRn2Q== 1150 - dependencies: 1151 - chalk "^4.1.2" 1152 - @@ -924,7 +704,7 @@ grunt-contrib-uglify@5.2: 1153 - 1154 - grunt-contrib-watch@1.1: 1155 - version "1.1.0" 1156 - - resolved "https://registry.yarnpkg.com/grunt-contrib-watch/-/grunt-contrib-watch-1.1.0.tgz#c143ca5b824b288a024b856639a5345aedb78ed4" 1157 - + resolved "https://registry.npmjs.org/grunt-contrib-watch/-/grunt-contrib-watch-1.1.0.tgz" 1158 - integrity sha512-yGweN+0DW5yM+oo58fRu/XIRrPcn3r4tQx+nL7eMRwjpvk+rQY6R8o94BPK0i2UhTg9FN21hS+m8vR8v9vXfeg== 1159 - dependencies: 1160 - async "^2.6.0" 1161 - @@ -934,12 +714,12 @@ grunt-contrib-watch@1.1: 1162 - 1163 - grunt-known-options@~2.0.0: 1164 - version "2.0.0" 1165 - - resolved "https://registry.yarnpkg.com/grunt-known-options/-/grunt-known-options-2.0.0.tgz#cac641e897f9a0a680b8c9839803d35f3325103c" 1166 - + resolved "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-2.0.0.tgz" 1167 - integrity sha512-GD7cTz0I4SAede1/+pAbmJRG44zFLPipVtdL9o3vqx9IEyb7b4/Y3s7r6ofI3CchR5GvYJ+8buCSioDv5dQLiA== 1168 - 1169 - grunt-legacy-log-utils@~2.1.0: 1170 - version "2.1.0" 1171 - - resolved "https://registry.yarnpkg.com/grunt-legacy-log-utils/-/grunt-legacy-log-utils-2.1.0.tgz#49a8c7dc74051476dcc116c32faf9db8646856ef" 1172 - + resolved "https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-2.1.0.tgz" 1173 - integrity sha512-lwquaPXJtKQk0rUM1IQAop5noEpwFqOXasVoedLeNzaibf/OPWjKYvvdqnEHNmU+0T0CaReAXIbGo747ZD+Aaw== 1174 - dependencies: 1175 - chalk "~4.1.0" 1176 - @@ -947,7 +727,7 @@ grunt-legacy-log-utils@~2.1.0: 1177 - 1178 - grunt-legacy-log@~3.0.0: 1179 - version "3.0.0" 1180 - - resolved "https://registry.yarnpkg.com/grunt-legacy-log/-/grunt-legacy-log-3.0.0.tgz#1c6eaf92371ea415af31ea84ce50d434ef6d39c4" 1181 - + resolved "https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-3.0.0.tgz" 1182 - integrity sha512-GHZQzZmhyq0u3hr7aHW4qUH0xDzwp2YXldLPZTCjlOeGscAOWWPftZG3XioW8MasGp+OBRIu39LFx14SLjXRcA== 1183 - dependencies: 1184 - colors "~1.1.2" 1185 - @@ -957,7 +737,7 @@ grunt-legacy-log@~3.0.0: 1186 - 1187 - grunt-legacy-util@~2.0.1: 1188 - version "2.0.1" 1189 - - resolved "https://registry.yarnpkg.com/grunt-legacy-util/-/grunt-legacy-util-2.0.1.tgz#0f929d13a2faf9988c9917c82bff609e2d9ba255" 1190 - + resolved "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-2.0.1.tgz" 1191 - integrity sha512-2bQiD4fzXqX8rhNdXkAywCadeqiPiay0oQny77wA2F3WF4grPJXCvAcyoWUJV+po/b15glGkxuSiQCK299UC2w== 1192 - dependencies: 1193 - async "~3.2.0" 1194 - @@ -970,7 +750,7 @@ grunt-legacy-util@~2.0.1: 1195 - 1196 - grunt-postcss@0.9: 1197 - version "0.9.0" 1198 - - resolved "https://registry.yarnpkg.com/grunt-postcss/-/grunt-postcss-0.9.0.tgz#fbe5934a6be9eac893af6d057e2318c97fae9da3" 1199 - + resolved "https://registry.npmjs.org/grunt-postcss/-/grunt-postcss-0.9.0.tgz" 1200 - integrity sha512-lglLcVaoOIqH0sFv7RqwUKkEFGQwnlqyAKbatxZderwZGV1nDyKHN7gZS9LUiTx1t5GOvRBx0BEalHMyVwFAIA== 1201 - dependencies: 1202 - chalk "^2.1.0" 1203 - @@ -979,12 +759,12 @@ grunt-postcss@0.9: 1204 - 1205 - grunt-sass@3.1: 1206 - version "3.1.0" 1207 - - resolved "https://registry.yarnpkg.com/grunt-sass/-/grunt-sass-3.1.0.tgz#a5936cc2a80ec08092d9f31c101dc307d1e4f71c" 1208 - + resolved "https://registry.npmjs.org/grunt-sass/-/grunt-sass-3.1.0.tgz" 1209 - integrity sha512-90s27H7FoCDcA8C8+R0GwC+ntYD3lG6S/jqcavWm3bn9RiJTmSfOvfbFa1PXx4NbBWuiGQMLfQTj/JvvqT5w6A== 1210 - 1211 - grunt@1.6: 1212 - version "1.6.1" 1213 - - resolved "https://registry.yarnpkg.com/grunt/-/grunt-1.6.1.tgz#0b4dd1524f26676dcf45d8f636b8d9061a8ede16" 1214 - + resolved "https://registry.npmjs.org/grunt/-/grunt-1.6.1.tgz" 1215 - integrity sha512-/ABUy3gYWu5iBmrUSRBP97JLpQUm0GgVveDCp6t3yRNIoltIYw7rEj3g5y1o2PGPR2vfTRGa7WC/LZHLTXnEzA== 1216 - dependencies: 1217 - dateformat "~4.6.2" 1218 - @@ -1003,57 +783,35 @@ grunt@1.6: 1219 - 1220 - gzip-size@^5.1.1: 1221 - version "5.1.1" 1222 - - resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274" 1223 - + resolved "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz" 1224 - integrity sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA== 1225 - dependencies: 1226 - duplexer "^0.1.1" 1227 - pify "^4.0.1" 1228 - 1229 - -hard-rejection@^2.1.0: 1230 - - version "2.1.0" 1231 - - resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" 1232 - - integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== 1233 - - 1234 - has-ansi@^2.0.0: 1235 - version "2.0.0" 1236 - - resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1237 - + resolved "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz" 1238 - integrity sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg== 1239 - dependencies: 1240 - ansi-regex "^2.0.0" 1241 - 1242 - has-flag@^3.0.0: 1243 - version "3.0.0" 1244 - - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1245 - + resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" 1246 - integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== 1247 - 1248 - has-flag@^4.0.0: 1249 - version "4.0.0" 1250 - - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1251 - + resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" 1252 - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1253 - 1254 - -has-property-descriptors@^1.0.2: 1255 - - version "1.0.2" 1256 - - resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" 1257 - - integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== 1258 - - dependencies: 1259 - - es-define-property "^1.0.0" 1260 - - 1261 - -has-proto@^1.0.1: 1262 - - version "1.0.3" 1263 - - resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd" 1264 - - integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== 1265 - - 1266 - -has-symbols@^1.0.3: 1267 - - version "1.0.3" 1268 - - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 1269 - - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1270 - - 1271 - -has-unicode@^2.0.1: 1272 - - version "2.0.1" 1273 - - resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1274 - - integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== 1275 - +has-symbols@^1.1.0: 1276 - + version "1.1.0" 1277 - + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338" 1278 - + integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== 1279 - 1280 - -hasown@^2.0.0, hasown@^2.0.2: 1281 - +hasown@^2.0.2: 1282 - version "2.0.2" 1283 - resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" 1284 - integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== 1285 - @@ -1062,275 +820,162 @@ hasown@^2.0.0, hasown@^2.0.2: 1286 - 1287 - homedir-polyfill@^1.0.1: 1288 - version "1.0.3" 1289 - - resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" 1290 - + resolved "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz" 1291 - integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== 1292 - dependencies: 1293 - parse-passwd "^1.0.0" 1294 - 1295 - hooker@~0.2.3: 1296 - version "0.2.3" 1297 - - resolved "https://registry.yarnpkg.com/hooker/-/hooker-0.2.3.tgz#b834f723cc4a242aa65963459df6d984c5d3d959" 1298 - + resolved "https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz" 1299 - integrity sha512-t+UerCsQviSymAInD01Pw+Dn/usmz1sRO+3Zk1+lx8eg+WKpD2ulcwWqHHL0+aseRBr+3+vIhiG1K1JTwaIcTA== 1300 - 1301 - -hosted-git-info@^2.1.4: 1302 - - version "2.8.9" 1303 - - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" 1304 - - integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== 1305 - - 1306 - -hosted-git-info@^4.0.1: 1307 - - version "4.1.0" 1308 - - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" 1309 - - integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== 1310 - - dependencies: 1311 - - lru-cache "^6.0.0" 1312 - - 1313 - html5shiv@3.7: 1314 - version "3.7.3" 1315 - - resolved "https://registry.yarnpkg.com/html5shiv/-/html5shiv-3.7.3.tgz#d78a84a367bcb9a710100d57802c387b084631d2" 1316 - + resolved "https://registry.npmjs.org/html5shiv/-/html5shiv-3.7.3.tgz" 1317 - integrity sha512-SZwGvLGNtgp8GbgFX7oXEp8OR1aBt5LliX6dG0kdD1kl3KhMonN0QcSa/A3TsTgFewaGCbIryQunjayWDXzxmw== 1318 - 1319 - -http-cache-semantics@^4.1.0: 1320 - - version "4.1.1" 1321 - - resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a" 1322 - - integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== 1323 - - 1324 - http-parser-js@>=0.5.1: 1325 - version "0.5.8" 1326 - - resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.8.tgz#af23090d9ac4e24573de6f6aecc9d84a48bf20e3" 1327 - + resolved "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz" 1328 - integrity sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q== 1329 - 1330 - -http-proxy-agent@^4.0.1: 1331 - - version "4.0.1" 1332 - - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" 1333 - - integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== 1334 - - dependencies: 1335 - - "@tootallnate/once" "1" 1336 - - agent-base "6" 1337 - - debug "4" 1338 - - 1339 - -http-proxy-agent@^5.0.0: 1340 - - version "5.0.0" 1341 - - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43" 1342 - - integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== 1343 - - dependencies: 1344 - - "@tootallnate/once" "2" 1345 - - agent-base "6" 1346 - - debug "4" 1347 - - 1348 - -https-proxy-agent@^5.0.0: 1349 - - version "5.0.1" 1350 - - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" 1351 - - integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== 1352 - - dependencies: 1353 - - agent-base "6" 1354 - - debug "4" 1355 - - 1356 - -humanize-ms@^1.2.1: 1357 - - version "1.2.1" 1358 - - resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" 1359 - - integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== 1360 - - dependencies: 1361 - - ms "^2.0.0" 1362 - - 1363 - -iconv-lite@^0.6.2, iconv-lite@~0.6.3: 1364 - +iconv-lite@~0.6.3: 1365 - version "0.6.3" 1366 - - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" 1367 - + resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz" 1368 - integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== 1369 - dependencies: 1370 - safer-buffer ">= 2.1.2 < 3.0.0" 1371 - 1372 - -imurmurhash@^0.1.4: 1373 - - version "0.1.4" 1374 - - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1375 - - integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1376 - - 1377 - -indent-string@^4.0.0: 1378 - - version "4.0.0" 1379 - - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" 1380 - - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== 1381 - - 1382 - -infer-owner@^1.0.4: 1383 - - version "1.0.4" 1384 - - resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" 1385 - - integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== 1386 - +immutable@^5.0.2: 1387 - + version "5.1.3" 1388 - + resolved "https://registry.npmjs.org/immutable/-/immutable-5.1.3.tgz" 1389 - + integrity sha512-+chQdDfvscSF1SJqv2gn4SRO2ZyS3xL3r7IW/wWEEzrzLisnOlKiQu5ytC/BVNcS15C39WT2Hg/bjKjDMcu+zg== 1390 - 1391 - inflight@^1.0.4: 1392 - version "1.0.6" 1393 - - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1394 - + resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" 1395 - integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1396 - dependencies: 1397 - once "^1.3.0" 1398 - wrappy "1" 1399 - 1400 - -inherits@2, inherits@^2.0.3, inherits@~2.0.3: 1401 - +inherits@2: 1402 - version "2.0.4" 1403 - - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1404 - + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" 1405 - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1406 - 1407 - ini@^1.3.4: 1408 - version "1.3.8" 1409 - - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 1410 - + resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz" 1411 - integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 1412 - 1413 - interpret@~1.1.0: 1414 - version "1.1.0" 1415 - - resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" 1416 - + resolved "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz" 1417 - integrity sha512-CLM8SNMDu7C5psFCn6Wg/tgpj/bKAg7hc2gWqcuR9OD5Ft9PhBpIu8PLicPeis+xDd6YX2ncI8MCA64I9tftIA== 1418 - 1419 - -ip-address@^9.0.5: 1420 - - version "9.0.5" 1421 - - resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-9.0.5.tgz#117a960819b08780c3bd1f14ef3c1cc1d3f3ea5a" 1422 - - integrity sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g== 1423 - - dependencies: 1424 - - jsbn "1.1.0" 1425 - - sprintf-js "^1.1.3" 1426 - - 1427 - is-absolute@^1.0.0: 1428 - version "1.0.0" 1429 - - resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576" 1430 - + resolved "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz" 1431 - integrity sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA== 1432 - dependencies: 1433 - is-relative "^1.0.0" 1434 - is-windows "^1.0.1" 1435 - 1436 - -is-arrayish@^0.2.1: 1437 - - version "0.2.1" 1438 - - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1439 - - integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== 1440 - - 1441 - -is-core-module@^2.13.0, is-core-module@^2.5.0: 1442 - - version "2.15.1" 1443 - - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.15.1.tgz#a7363a25bee942fefab0de13bf6aa372c82dcc37" 1444 - - integrity sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ== 1445 - +is-core-module@^2.13.0: 1446 - + version "2.16.1" 1447 - + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.1.tgz#2a98801a849f43e2add644fbb6bc6229b19a4ef4" 1448 - + integrity sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w== 1449 - dependencies: 1450 - hasown "^2.0.2" 1451 - 1452 - is-extglob@^2.1.1: 1453 - version "2.1.1" 1454 - - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1455 - + resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" 1456 - integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1457 - 1458 - -is-fullwidth-code-point@^3.0.0: 1459 - - version "3.0.0" 1460 - - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1461 - - integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1462 - - 1463 - is-glob@^4.0.0, is-glob@^4.0.3: 1464 - version "4.0.3" 1465 - - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1466 - + resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" 1467 - integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1468 - dependencies: 1469 - is-extglob "^2.1.1" 1470 - 1471 - -is-lambda@^1.0.1: 1472 - - version "1.0.1" 1473 - - resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5" 1474 - - integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== 1475 - - 1476 - is-number@^7.0.0: 1477 - version "7.0.0" 1478 - - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1479 - + resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" 1480 - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1481 - 1482 - -is-plain-obj@^1.1.0: 1483 - - version "1.1.0" 1484 - - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1485 - - integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== 1486 - - 1487 - is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1488 - version "2.0.4" 1489 - - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1490 - + resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz" 1491 - integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== 1492 - dependencies: 1493 - isobject "^3.0.1" 1494 - 1495 - is-relative@^1.0.0: 1496 - version "1.0.0" 1497 - - resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d" 1498 - + resolved "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz" 1499 - integrity sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA== 1500 - dependencies: 1501 - is-unc-path "^1.0.0" 1502 - 1503 - is-unc-path@^1.0.0: 1504 - version "1.0.0" 1505 - - resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d" 1506 - + resolved "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz" 1507 - integrity sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ== 1508 - dependencies: 1509 - unc-path-regex "^0.1.2" 1510 - 1511 - is-windows@^1.0.1: 1512 - version "1.0.2" 1513 - - resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1514 - + resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz" 1515 - integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== 1516 - 1517 - -isarray@~1.0.0: 1518 - - version "1.0.0" 1519 - - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1520 - - integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== 1521 - - 1522 - isexe@^2.0.0: 1523 - version "2.0.0" 1524 - - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1525 - + resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" 1526 - integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 1527 - 1528 - isobject@^3.0.0, isobject@^3.0.1: 1529 - version "3.0.1" 1530 - - resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1531 - + resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz" 1532 - integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== 1533 - 1534 - jquery-ui@1.14.1: 1535 - version "1.14.1" 1536 - - resolved "https://registry.yarnpkg.com/jquery-ui/-/jquery-ui-1.14.1.tgz#ba342ea3ffff662b787595391f607d923313e040" 1537 - + resolved "https://registry.npmjs.org/jquery-ui/-/jquery-ui-1.14.1.tgz" 1538 - integrity sha512-DhzsYH8VeIvOaxwi+B/2BCsFFT5EGjShdzOcm5DssWjtcpGWIMsn66rJciDA6jBruzNiLf1q0KvwMoX1uGNvnQ== 1539 - dependencies: 1540 - jquery ">=1.12.0 <5.0.0" 1541 - 1542 - jquery@3.7.1, "jquery@>=1.12.0 <5.0.0", "jquery@>=3.4.0 <4.0.0": 1543 - version "3.7.1" 1544 - - resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.7.1.tgz#083ef98927c9a6a74d05a6af02806566d16274de" 1545 - + resolved "https://registry.npmjs.org/jquery/-/jquery-3.7.1.tgz" 1546 - integrity sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg== 1547 - 1548 - -js-base64@^2.4.9: 1549 - - version "2.6.4" 1550 - - resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.6.4.tgz#f4e686c5de1ea1f867dbcad3d46d969428df98c4" 1551 - - integrity sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ== 1552 - - 1553 - js-cookie@2.2: 1554 - version "2.2.1" 1555 - - resolved "https://registry.yarnpkg.com/js-cookie/-/js-cookie-2.2.1.tgz#69e106dc5d5806894562902aa5baec3744e9b2b8" 1556 - + resolved "https://registry.npmjs.org/js-cookie/-/js-cookie-2.2.1.tgz" 1557 - integrity sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ== 1558 - 1559 - -js-tokens@^4.0.0: 1560 - - version "4.0.0" 1561 - - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1562 - - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1563 - - 1564 - js-yaml@~3.14.0: 1565 - version "3.14.1" 1566 - - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 1567 - + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" 1568 - integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 1569 - dependencies: 1570 - argparse "^1.0.7" 1571 - esprima "^4.0.0" 1572 - 1573 - -jsbn@1.1.0: 1574 - - version "1.1.0" 1575 - - resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-1.1.0.tgz#b01307cb29b618a1ed26ec79e911f803c4da0040" 1576 - - integrity sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A== 1577 - - 1578 - -json-parse-even-better-errors@^2.3.0: 1579 - - version "2.3.1" 1580 - - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 1581 - - integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 1582 - - 1583 - -kind-of@^6.0.2, kind-of@^6.0.3: 1584 - +kind-of@^6.0.2: 1585 - version "6.0.3" 1586 - - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" 1587 - + resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz" 1588 - integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 1589 - 1590 - liftup@~3.0.1: 1591 - version "3.0.1" 1592 - - resolved "https://registry.yarnpkg.com/liftup/-/liftup-3.0.1.tgz#1cb81aff0f368464ed3a5f1a7286372d6b1a60ce" 1593 - + resolved "https://registry.npmjs.org/liftup/-/liftup-3.0.1.tgz" 1594 - integrity sha512-yRHaiQDizWSzoXk3APcA71eOI/UuhEkNN9DiW2Tt44mhYzX4joFoCZlxsSOF7RyeLlfqzFLQI1ngFq3ggMPhOw== 1595 - dependencies: 1596 - extend "^3.0.2" 1597 - @@ -1342,19 +987,14 @@ liftup@~3.0.1: 1598 - rechoir "^0.7.0" 1599 - resolve "^1.19.0" 1600 - 1601 - -lines-and-columns@^1.1.6: 1602 - - version "1.2.4" 1603 - - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" 1604 - - integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== 1605 - - 1606 - livereload-js@^2.3.0: 1607 - version "2.4.0" 1608 - - resolved "https://registry.yarnpkg.com/livereload-js/-/livereload-js-2.4.0.tgz#447c31cf1ea9ab52fc20db615c5ddf678f78009c" 1609 - + resolved "https://registry.npmjs.org/livereload-js/-/livereload-js-2.4.0.tgz" 1610 - integrity sha512-XPQH8Z2GDP/Hwz2PCDrh2mth4yFejwA1OZ/81Ti3LgKyhDcEjsSsqFWZojHG0va/duGd+WyosY7eXLDoOyqcPw== 1611 - 1612 - load-grunt-tasks@5.1: 1613 - version "5.1.0" 1614 - - resolved "https://registry.yarnpkg.com/load-grunt-tasks/-/load-grunt-tasks-5.1.0.tgz#14894c27a7e34ebbef9937c39cc35c573cd04c1c" 1615 - + resolved "https://registry.npmjs.org/load-grunt-tasks/-/load-grunt-tasks-5.1.0.tgz" 1616 - integrity sha512-oNj0Jlka1TsfDe+9He0kcA1cRln+TMoTsEByW7ij6kyktNLxBKJtslCFEvFrLC2Dj0S19IWJh3fOCIjLby2Xrg== 1617 - dependencies: 1618 - arrify "^2.0.1" 1619 - @@ -1364,105 +1004,37 @@ load-grunt-tasks@5.1: 1620 - 1621 - locate-path@^3.0.0: 1622 - version "3.0.0" 1623 - - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" 1624 - + resolved "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz" 1625 - integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== 1626 - dependencies: 1627 - p-locate "^3.0.0" 1628 - path-exists "^3.0.0" 1629 - 1630 - -locate-path@^5.0.0: 1631 - - version "5.0.0" 1632 - - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 1633 - - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 1634 - - dependencies: 1635 - - p-locate "^4.1.0" 1636 - - 1637 - -lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.21, lodash@~4.17.19, lodash@~4.17.21: 1638 - +lodash@^4.17.10, lodash@^4.17.14, lodash@^4.17.21, lodash@~4.17.19, lodash@~4.17.21: 1639 - version "4.17.21" 1640 - - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1641 - + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" 1642 - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1643 - 1644 - -lru-cache@^6.0.0: 1645 - - version "6.0.0" 1646 - - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1647 - - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1648 - - dependencies: 1649 - - yallist "^4.0.0" 1650 - - 1651 - -lru-cache@^7.7.1: 1652 - - version "7.18.3" 1653 - - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89" 1654 - - integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA== 1655 - - 1656 - -make-fetch-happen@^10.0.4: 1657 - - version "10.2.1" 1658 - - resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz#f5e3835c5e9817b617f2770870d9492d28678164" 1659 - - integrity sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w== 1660 - - dependencies: 1661 - - agentkeepalive "^4.2.1" 1662 - - cacache "^16.1.0" 1663 - - http-cache-semantics "^4.1.0" 1664 - - http-proxy-agent "^5.0.0" 1665 - - https-proxy-agent "^5.0.0" 1666 - - is-lambda "^1.0.1" 1667 - - lru-cache "^7.7.1" 1668 - - minipass "^3.1.6" 1669 - - minipass-collect "^1.0.2" 1670 - - minipass-fetch "^2.0.3" 1671 - - minipass-flush "^1.0.5" 1672 - - minipass-pipeline "^1.2.4" 1673 - - negotiator "^0.6.3" 1674 - - promise-retry "^2.0.1" 1675 - - socks-proxy-agent "^7.0.0" 1676 - - ssri "^9.0.0" 1677 - - 1678 - -make-fetch-happen@^9.1.0: 1679 - - version "9.1.0" 1680 - - resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz#53085a09e7971433e6765f7971bf63f4e05cb968" 1681 - - integrity sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg== 1682 - - dependencies: 1683 - - agentkeepalive "^4.1.3" 1684 - - cacache "^15.2.0" 1685 - - http-cache-semantics "^4.1.0" 1686 - - http-proxy-agent "^4.0.1" 1687 - - https-proxy-agent "^5.0.0" 1688 - - is-lambda "^1.0.1" 1689 - - lru-cache "^6.0.0" 1690 - - minipass "^3.1.3" 1691 - - minipass-collect "^1.0.2" 1692 - - minipass-fetch "^1.3.2" 1693 - - minipass-flush "^1.0.5" 1694 - - minipass-pipeline "^1.2.4" 1695 - - negotiator "^0.6.2" 1696 - - promise-retry "^2.0.1" 1697 - - socks-proxy-agent "^6.0.0" 1698 - - ssri "^8.0.0" 1699 - - 1700 - make-iterator@^1.0.0: 1701 - version "1.0.1" 1702 - - resolved "https://registry.yarnpkg.com/make-iterator/-/make-iterator-1.0.1.tgz#29b33f312aa8f547c4a5e490f56afcec99133ad6" 1703 - + resolved "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz" 1704 - integrity sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw== 1705 - dependencies: 1706 - kind-of "^6.0.2" 1707 - 1708 - map-cache@^0.2.0: 1709 - version "0.2.2" 1710 - - resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 1711 - + resolved "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz" 1712 - integrity sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg== 1713 - 1714 - -map-obj@^1.0.0: 1715 - - version "1.0.1" 1716 - - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1717 - - integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== 1718 - - 1719 - -map-obj@^4.0.0: 1720 - - version "4.3.0" 1721 - - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" 1722 - - integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== 1723 - +math-intrinsics@^1.1.0: 1724 - + version "1.1.0" 1725 - + resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz#a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9" 1726 - + integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== 1727 - 1728 - maxmin@^3.0.0: 1729 - version "3.0.0" 1730 - - resolved "https://registry.yarnpkg.com/maxmin/-/maxmin-3.0.0.tgz#3ee9acc8a2b9f2b5416e94f5705319df8a9c71e6" 1731 - + resolved "https://registry.npmjs.org/maxmin/-/maxmin-3.0.0.tgz" 1732 - integrity sha512-wcahMInmGtg/7c6a75fr21Ch/Ks1Tb+Jtoan5Ft4bAI0ZvJqyOw8kkM7e7p8hDSzY805vmxwHT50KcjGwKyJ0g== 1733 - dependencies: 1734 - chalk "^4.1.0" 1735 - @@ -1470,25 +1042,7 @@ maxmin@^3.0.0: 1736 - gzip-size "^5.1.1" 1737 - pretty-bytes "^5.3.0" 1738 - 1739 - -meow@^9.0.0: 1740 - - version "9.0.0" 1741 - - resolved "https://registry.yarnpkg.com/meow/-/meow-9.0.0.tgz#cd9510bc5cac9dee7d03c73ee1f9ad959f4ea364" 1742 - - integrity sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ== 1743 - - dependencies: 1744 - - "@types/minimist" "^1.2.0" 1745 - - camelcase-keys "^6.2.2" 1746 - - decamelize "^1.2.0" 1747 - - decamelize-keys "^1.1.0" 1748 - - hard-rejection "^2.1.0" 1749 - - minimist-options "4.1.0" 1750 - - normalize-package-data "^3.0.0" 1751 - - read-pkg-up "^7.0.1" 1752 - - redent "^3.0.0" 1753 - - trim-newlines "^3.0.0" 1754 - - type-fest "^0.18.0" 1755 - - yargs-parser "^20.2.3" 1756 - - 1757 - -micromatch@^4.0.2, micromatch@^4.0.4: 1758 - +micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5: 1759 - version "4.0.8" 1760 - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" 1761 - integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== 1762 - @@ -1496,124 +1050,28 @@ micromatch@^4.0.2, micromatch@^4.0.4: 1763 - braces "^3.0.3" 1764 - picomatch "^2.3.1" 1765 - 1766 - -min-indent@^1.0.0: 1767 - - version "1.0.1" 1768 - - resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" 1769 - - integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== 1770 - - 1771 - minimatch@^3.0.4, minimatch@^3.1.1: 1772 - version "3.1.2" 1773 - - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1774 - + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" 1775 - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1776 - dependencies: 1777 - brace-expansion "^1.1.7" 1778 - 1779 - -minimatch@^5.0.1: 1780 - - version "5.1.6" 1781 - - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" 1782 - - integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== 1783 - - dependencies: 1784 - - brace-expansion "^2.0.1" 1785 - - 1786 - minimatch@~3.0.2, minimatch@~3.0.4: 1787 - version "3.0.8" 1788 - - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.8.tgz#5e6a59bd11e2ab0de1cfb843eb2d82e546c321c1" 1789 - + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz" 1790 - integrity sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q== 1791 - dependencies: 1792 - brace-expansion "^1.1.7" 1793 - 1794 - -minimist-options@4.1.0: 1795 - - version "4.1.0" 1796 - - resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" 1797 - - integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== 1798 - - dependencies: 1799 - - arrify "^1.0.1" 1800 - - is-plain-obj "^1.1.0" 1801 - - kind-of "^6.0.3" 1802 - - 1803 - -minipass-collect@^1.0.2: 1804 - - version "1.0.2" 1805 - - resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" 1806 - - integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== 1807 - - dependencies: 1808 - - minipass "^3.0.0" 1809 - - 1810 - -minipass-fetch@^1.3.2: 1811 - - version "1.4.1" 1812 - - resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-1.4.1.tgz#d75e0091daac1b0ffd7e9d41629faff7d0c1f1b6" 1813 - - integrity sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw== 1814 - - dependencies: 1815 - - minipass "^3.1.0" 1816 - - minipass-sized "^1.0.3" 1817 - - minizlib "^2.0.0" 1818 - - optionalDependencies: 1819 - - encoding "^0.1.12" 1820 - - 1821 - -minipass-fetch@^2.0.3: 1822 - - version "2.1.2" 1823 - - resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-2.1.2.tgz#95560b50c472d81a3bc76f20ede80eaed76d8add" 1824 - - integrity sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA== 1825 - - dependencies: 1826 - - minipass "^3.1.6" 1827 - - minipass-sized "^1.0.3" 1828 - - minizlib "^2.1.2" 1829 - - optionalDependencies: 1830 - - encoding "^0.1.13" 1831 - - 1832 - -minipass-flush@^1.0.5: 1833 - - version "1.0.5" 1834 - - resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" 1835 - - integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== 1836 - - dependencies: 1837 - - minipass "^3.0.0" 1838 - - 1839 - -minipass-pipeline@^1.2.2, minipass-pipeline@^1.2.4: 1840 - - version "1.2.4" 1841 - - resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" 1842 - - integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== 1843 - - dependencies: 1844 - - minipass "^3.0.0" 1845 - - 1846 - -minipass-sized@^1.0.3: 1847 - - version "1.0.3" 1848 - - resolved "https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz#70ee5a7c5052070afacfbc22977ea79def353b70" 1849 - - integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g== 1850 - - dependencies: 1851 - - minipass "^3.0.0" 1852 - - 1853 - -minipass@^3.0.0, minipass@^3.1.0, minipass@^3.1.1, minipass@^3.1.3, minipass@^3.1.6: 1854 - - version "3.3.6" 1855 - - resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" 1856 - - integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== 1857 - - dependencies: 1858 - - yallist "^4.0.0" 1859 - - 1860 - -minipass@^5.0.0: 1861 - - version "5.0.0" 1862 - - resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" 1863 - - integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== 1864 - - 1865 - -minizlib@^2.0.0, minizlib@^2.1.1, minizlib@^2.1.2: 1866 - - version "2.1.2" 1867 - - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" 1868 - - integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== 1869 - - dependencies: 1870 - - minipass "^3.0.0" 1871 - - yallist "^4.0.0" 1872 - - 1873 - -mkdirp@^1.0.3, mkdirp@^1.0.4: 1874 - - version "1.0.4" 1875 - - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" 1876 - - integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== 1877 - - 1878 - -ms@^2.0.0, ms@^2.1.1, ms@^2.1.3: 1879 - +ms@^2.1.1: 1880 - version "2.1.3" 1881 - - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1882 - + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" 1883 - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1884 - 1885 - multimatch@^4.0.0: 1886 - version "4.0.0" 1887 - - resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-4.0.0.tgz#8c3c0f6e3e8449ada0af3dd29efb491a375191b3" 1888 - + resolved "https://registry.npmjs.org/multimatch/-/multimatch-4.0.0.tgz" 1889 - integrity sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ== 1890 - dependencies: 1891 - "@types/minimatch" "^3.0.3" 1892 - @@ -1622,137 +1080,59 @@ multimatch@^4.0.0: 1893 - arrify "^2.0.1" 1894 - minimatch "^3.0.4" 1895 - 1896 - -nan@^2.17.0: 1897 - - version "2.22.0" 1898 - - resolved "https://registry.yarnpkg.com/nan/-/nan-2.22.0.tgz#31bc433fc33213c97bad36404bb68063de604de3" 1899 - - integrity sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw== 1900 - - 1901 - nanoid@^3.3.7: 1902 - - version "3.3.8" 1903 - - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.8.tgz#b1be3030bee36aaff18bacb375e5cce521684baf" 1904 - - integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w== 1905 - - 1906 - -negotiator@^0.6.2, negotiator@^0.6.3: 1907 - - version "0.6.4" 1908 - - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.4.tgz#777948e2452651c570b712dd01c23e262713fff7" 1909 - - integrity sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w== 1910 - - 1911 - -node-gyp@^8.4.1: 1912 - - version "8.4.1" 1913 - - resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-8.4.1.tgz#3d49308fc31f768180957d6b5746845fbd429937" 1914 - - integrity sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w== 1915 - - dependencies: 1916 - - env-paths "^2.2.0" 1917 - - glob "^7.1.4" 1918 - - graceful-fs "^4.2.6" 1919 - - make-fetch-happen "^9.1.0" 1920 - - nopt "^5.0.0" 1921 - - npmlog "^6.0.0" 1922 - - rimraf "^3.0.2" 1923 - - semver "^7.3.5" 1924 - - tar "^6.1.2" 1925 - - which "^2.0.2" 1926 - - 1927 - -node-releases@^2.0.18: 1928 - - version "2.0.18" 1929 - - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f" 1930 - - integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g== 1931 - - 1932 - -node-sass@9.0: 1933 - - version "9.0.0" 1934 - - resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-9.0.0.tgz#c21cd17bd9379c2d09362b3baf2cbf089bce08ed" 1935 - - integrity sha512-yltEuuLrfH6M7Pq2gAj5B6Zm7m+gdZoG66wTqG6mIZV/zijq3M2OO2HswtT6oBspPyFhHDcaxWpsBm0fRNDHPg== 1936 - - dependencies: 1937 - - async-foreach "^0.1.3" 1938 - - chalk "^4.1.2" 1939 - - cross-spawn "^7.0.3" 1940 - - gaze "^1.0.0" 1941 - - get-stdin "^4.0.1" 1942 - - glob "^7.0.3" 1943 - - lodash "^4.17.15" 1944 - - make-fetch-happen "^10.0.4" 1945 - - meow "^9.0.0" 1946 - - nan "^2.17.0" 1947 - - node-gyp "^8.4.1" 1948 - - sass-graph "^4.0.1" 1949 - - stdout-stream "^1.4.0" 1950 - - "true-case-path" "^2.2.1" 1951 - - 1952 - -nopt@^5.0.0: 1953 - - version "5.0.0" 1954 - - resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88" 1955 - - integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ== 1956 - - dependencies: 1957 - - abbrev "1" 1958 - + version "3.3.11" 1959 - + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.11.tgz#4f4f112cefbe303202f2199838128936266d185b" 1960 - + integrity sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w== 1961 - + 1962 - +node-addon-api@^7.0.0: 1963 - + version "7.1.1" 1964 - + resolved "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz" 1965 - + integrity sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ== 1966 - + 1967 - +node-releases@^2.0.19: 1968 - + version "2.0.19" 1969 - + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.19.tgz#9e445a52950951ec4d177d843af370b411caf314" 1970 - + integrity sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw== 1971 - 1972 - nopt@~3.0.6: 1973 - version "3.0.6" 1974 - - resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 1975 - + resolved "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz" 1976 - integrity sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg== 1977 - dependencies: 1978 - abbrev "1" 1979 - 1980 - nopt@~4.0.1: 1981 - version "4.0.3" 1982 - - resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48" 1983 - + resolved "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz" 1984 - integrity sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg== 1985 - dependencies: 1986 - abbrev "1" 1987 - osenv "^0.1.4" 1988 - 1989 - -normalize-package-data@^2.5.0: 1990 - - version "2.5.0" 1991 - - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 1992 - - integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 1993 - - dependencies: 1994 - - hosted-git-info "^2.1.4" 1995 - - resolve "^1.10.0" 1996 - - semver "2 || 3 || 4 || 5" 1997 - - validate-npm-package-license "^3.0.1" 1998 - - 1999 - -normalize-package-data@^3.0.0: 2000 - - version "3.0.3" 2001 - - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e" 2002 - - integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== 2003 - - dependencies: 2004 - - hosted-git-info "^4.0.1" 2005 - - is-core-module "^2.5.0" 2006 - - semver "^7.3.4" 2007 - - validate-npm-package-license "^3.0.1" 2008 - - 2009 - normalize-range@^0.1.2: 2010 - version "0.1.2" 2011 - - resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 2012 - + resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz" 2013 - integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== 2014 - 2015 - -npmlog@^6.0.0: 2016 - - version "6.0.2" 2017 - - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-6.0.2.tgz#c8166017a42f2dea92d6453168dd865186a70830" 2018 - - integrity sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg== 2019 - - dependencies: 2020 - - are-we-there-yet "^3.0.0" 2021 - - console-control-strings "^1.1.0" 2022 - - gauge "^4.0.3" 2023 - - set-blocking "^2.0.0" 2024 - - 2025 - num2fraction@^1.2.2: 2026 - version "1.2.2" 2027 - - resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" 2028 - + resolved "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz" 2029 - integrity sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg== 2030 - 2031 - object-assign@^4.1.0: 2032 - version "4.1.1" 2033 - - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2034 - + resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" 2035 - integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== 2036 - 2037 - -object-inspect@^1.13.1: 2038 - - version "1.13.3" 2039 - - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.3.tgz#f14c183de51130243d6d18ae149375ff50ea488a" 2040 - - integrity sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA== 2041 - +object-inspect@^1.13.3: 2042 - + version "1.13.4" 2043 - + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.4.tgz#8375265e21bc20d0fa582c22e1b13485d6e00213" 2044 - + integrity sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew== 2045 - 2046 - object.defaults@^1.1.0: 2047 - version "1.1.0" 2048 - - resolved "https://registry.yarnpkg.com/object.defaults/-/object.defaults-1.1.0.tgz#3a7f868334b407dea06da16d88d5cd29e435fecf" 2049 - + resolved "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz" 2050 - integrity sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA== 2051 - dependencies: 2052 - array-each "^1.0.1" 2053 - @@ -1762,7 +1142,7 @@ object.defaults@^1.1.0: 2054 - 2055 - object.map@^1.0.1: 2056 - version "1.0.1" 2057 - - resolved "https://registry.yarnpkg.com/object.map/-/object.map-1.0.1.tgz#cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37" 2058 - + resolved "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz" 2059 - integrity sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w== 2060 - dependencies: 2061 - for-own "^1.0.0" 2062 - @@ -1770,160 +1150,126 @@ object.map@^1.0.1: 2063 - 2064 - object.pick@^1.2.0: 2065 - version "1.3.0" 2066 - - resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2067 - + resolved "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz" 2068 - integrity sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ== 2069 - dependencies: 2070 - isobject "^3.0.1" 2071 - 2072 - once@^1.3.0: 2073 - version "1.4.0" 2074 - - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2075 - + resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" 2076 - integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 2077 - dependencies: 2078 - wrappy "1" 2079 - 2080 - os-homedir@^1.0.0: 2081 - version "1.0.2" 2082 - - resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2083 - + resolved "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz" 2084 - integrity sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ== 2085 - 2086 - os-tmpdir@^1.0.0: 2087 - version "1.0.2" 2088 - - resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2089 - + resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz" 2090 - integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== 2091 - 2092 - osenv@^0.1.4: 2093 - version "0.1.5" 2094 - - resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2095 - + resolved "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz" 2096 - integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== 2097 - dependencies: 2098 - os-homedir "^1.0.0" 2099 - os-tmpdir "^1.0.0" 2100 - 2101 - -p-limit@^2.0.0, p-limit@^2.2.0: 2102 - +p-limit@^2.0.0: 2103 - version "2.3.0" 2104 - - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 2105 - + resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" 2106 - integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 2107 - dependencies: 2108 - p-try "^2.0.0" 2109 - 2110 - p-locate@^3.0.0: 2111 - version "3.0.0" 2112 - - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" 2113 - + resolved "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz" 2114 - integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== 2115 - dependencies: 2116 - p-limit "^2.0.0" 2117 - 2118 - -p-locate@^4.1.0: 2119 - - version "4.1.0" 2120 - - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 2121 - - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 2122 - - dependencies: 2123 - - p-limit "^2.2.0" 2124 - - 2125 - -p-map@^4.0.0: 2126 - - version "4.0.0" 2127 - - resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" 2128 - - integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== 2129 - - dependencies: 2130 - - aggregate-error "^3.0.0" 2131 - - 2132 - p-try@^2.0.0: 2133 - version "2.2.0" 2134 - - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 2135 - + resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" 2136 - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 2137 - 2138 - parse-filepath@^1.0.1: 2139 - version "1.0.2" 2140 - - resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891" 2141 - + resolved "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz" 2142 - integrity sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q== 2143 - dependencies: 2144 - is-absolute "^1.0.0" 2145 - map-cache "^0.2.0" 2146 - path-root "^0.1.1" 2147 - 2148 - -parse-json@^5.0.0: 2149 - - version "5.2.0" 2150 - - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" 2151 - - integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 2152 - - dependencies: 2153 - - "@babel/code-frame" "^7.0.0" 2154 - - error-ex "^1.3.1" 2155 - - json-parse-even-better-errors "^2.3.0" 2156 - - lines-and-columns "^1.1.6" 2157 - - 2158 - parse-passwd@^1.0.0: 2159 - version "1.0.0" 2160 - - resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 2161 - + resolved "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz" 2162 - integrity sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q== 2163 - 2164 - path-exists@^3.0.0: 2165 - version "3.0.0" 2166 - - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2167 - + resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz" 2168 - integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== 2169 - 2170 - -path-exists@^4.0.0: 2171 - - version "4.0.0" 2172 - - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 2173 - - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2174 - - 2175 - path-is-absolute@^1.0.0: 2176 - version "1.0.1" 2177 - - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2178 - + resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" 2179 - integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 2180 - 2181 - -path-key@^3.1.0: 2182 - - version "3.1.1" 2183 - - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 2184 - - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2185 - - 2186 - path-parse@^1.0.7: 2187 - version "1.0.7" 2188 - - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 2189 - + resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" 2190 - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 2191 - 2192 - path-root-regex@^0.1.0: 2193 - version "0.1.2" 2194 - - resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" 2195 - + resolved "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz" 2196 - integrity sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ== 2197 - 2198 - path-root@^0.1.1: 2199 - version "0.1.1" 2200 - - resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" 2201 - + resolved "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz" 2202 - integrity sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg== 2203 - dependencies: 2204 - path-root-regex "^0.1.0" 2205 - 2206 - picocolors@^0.2.1: 2207 - version "0.2.1" 2208 - - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-0.2.1.tgz#570670f793646851d1ba135996962abad587859f" 2209 - + resolved "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz" 2210 - integrity sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA== 2211 - 2212 - -picocolors@^1.0.0, picocolors@^1.1.0, picocolors@^1.1.1: 2213 - +picocolors@^1.1.1: 2214 - version "1.1.1" 2215 - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" 2216 - integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== 2217 - 2218 - picomatch@^2.3.1: 2219 - version "2.3.1" 2220 - - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 2221 - + resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" 2222 - integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 2223 - 2224 - pify@^4.0.1: 2225 - version "4.0.1" 2226 - - resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" 2227 - + resolved "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz" 2228 - integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== 2229 - 2230 - pkg-up@^3.1.0: 2231 - version "3.1.0" 2232 - - resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5" 2233 - + resolved "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz" 2234 - integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA== 2235 - dependencies: 2236 - find-up "^3.0.0" 2237 - 2238 - postcss-value-parser@^4.1.0: 2239 - version "4.2.0" 2240 - - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" 2241 - + resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" 2242 - integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== 2243 - 2244 - postcss@8.4: 2245 - @@ -1937,7 +1283,7 @@ postcss@8.4: 2246 - 2247 - postcss@^6.0.11: 2248 - version "6.0.23" 2249 - - resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324" 2250 - + resolved "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz" 2251 - integrity sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag== 2252 - dependencies: 2253 - chalk "^2.4.1" 2254 - @@ -1946,7 +1292,7 @@ postcss@^6.0.11: 2255 - 2256 - postcss@^7.0.32: 2257 - version "7.0.39" 2258 - - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.39.tgz#9624375d965630e2e1f2c02a935c82a59cb48309" 2259 - + resolved "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz" 2260 - integrity sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA== 2261 - dependencies: 2262 - picocolors "^0.2.1" 2263 - @@ -1954,111 +1300,39 @@ postcss@^7.0.32: 2264 - 2265 - pretty-bytes@^5.3.0: 2266 - version "5.6.0" 2267 - - resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" 2268 - + resolved "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz" 2269 - integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== 2270 - 2271 - -process-nextick-args@~2.0.0: 2272 - - version "2.0.1" 2273 - - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 2274 - - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 2275 - - 2276 - -promise-inflight@^1.0.1: 2277 - - version "1.0.1" 2278 - - resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" 2279 - - integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g== 2280 - - 2281 - -promise-retry@^2.0.1: 2282 - - version "2.0.1" 2283 - - resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" 2284 - - integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== 2285 - - dependencies: 2286 - - err-code "^2.0.2" 2287 - - retry "^0.12.0" 2288 - - 2289 - qs@^6.4.0: 2290 - - version "6.13.1" 2291 - - resolved "https://registry.yarnpkg.com/qs/-/qs-6.13.1.tgz#3ce5fc72bd3a8171b85c99b93c65dd20b7d1b16e" 2292 - - integrity sha512-EJPeIn0CYrGu+hli1xilKAPXODtJ12T0sP63Ijx2/khC2JtuaN3JyNIpvmnkmaEtha9ocbG4A4cMcr+TvqvwQg== 2293 - + version "6.14.0" 2294 - + resolved "https://registry.yarnpkg.com/qs/-/qs-6.14.0.tgz#c63fa40680d2c5c941412a0e899c89af60c0a930" 2295 - + integrity sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w== 2296 - dependencies: 2297 - - side-channel "^1.0.6" 2298 - - 2299 - -quick-lru@^4.0.1: 2300 - - version "4.0.1" 2301 - - resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" 2302 - - integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== 2303 - + side-channel "^1.1.0" 2304 - 2305 - raw-body@~1.1.0: 2306 - version "1.1.7" 2307 - - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-1.1.7.tgz#1d027c2bfa116acc6623bca8f00016572a87d425" 2308 - + resolved "https://registry.npmjs.org/raw-body/-/raw-body-1.1.7.tgz" 2309 - integrity sha512-WmJJU2e9Y6M5UzTOkHaM7xJGAPQD8PNzx3bAd2+uhZAim6wDk6dAZxPVYLF67XhbR4hmKGh33Lpmh4XWrCH5Mg== 2310 - dependencies: 2311 - bytes "1" 2312 - string_decoder "0.10" 2313 - 2314 - -read-pkg-up@^7.0.1: 2315 - - version "7.0.1" 2316 - - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" 2317 - - integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== 2318 - - dependencies: 2319 - - find-up "^4.1.0" 2320 - - read-pkg "^5.2.0" 2321 - - type-fest "^0.8.1" 2322 - - 2323 - -read-pkg@^5.2.0: 2324 - - version "5.2.0" 2325 - - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" 2326 - - integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== 2327 - - dependencies: 2328 - - "@types/normalize-package-data" "^2.4.0" 2329 - - normalize-package-data "^2.5.0" 2330 - - parse-json "^5.0.0" 2331 - - type-fest "^0.6.0" 2332 - - 2333 - -readable-stream@^2.0.1: 2334 - - version "2.3.8" 2335 - - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" 2336 - - integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== 2337 - - dependencies: 2338 - - core-util-is "~1.0.0" 2339 - - inherits "~2.0.3" 2340 - - isarray "~1.0.0" 2341 - - process-nextick-args "~2.0.0" 2342 - - safe-buffer "~5.1.1" 2343 - - string_decoder "~1.1.1" 2344 - - util-deprecate "~1.0.1" 2345 - - 2346 - -readable-stream@^3.6.0: 2347 - - version "3.6.2" 2348 - - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" 2349 - - integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== 2350 - - dependencies: 2351 - - inherits "^2.0.3" 2352 - - string_decoder "^1.1.1" 2353 - - util-deprecate "^1.0.1" 2354 - +readdirp@^4.0.1: 2355 - + version "4.1.2" 2356 - + resolved "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz" 2357 - + integrity sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg== 2358 - 2359 - rechoir@^0.7.0: 2360 - version "0.7.1" 2361 - - resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.7.1.tgz#9478a96a1ca135b5e88fc027f03ee92d6c645686" 2362 - + resolved "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz" 2363 - integrity sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg== 2364 - dependencies: 2365 - resolve "^1.9.0" 2366 - 2367 - -redent@^3.0.0: 2368 - - version "3.0.0" 2369 - - resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" 2370 - - integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== 2371 - - dependencies: 2372 - - indent-string "^4.0.0" 2373 - - strip-indent "^3.0.0" 2374 - - 2375 - -require-directory@^2.1.1: 2376 - - version "2.1.1" 2377 - - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2378 - - integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== 2379 - - 2380 - resolve-dir@^1.0.0, resolve-dir@^1.0.1: 2381 - version "1.0.1" 2382 - - resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" 2383 - + resolved "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz" 2384 - integrity sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg== 2385 - dependencies: 2386 - expand-tilde "^2.0.0" 2387 - @@ -2066,352 +1340,182 @@ resolve-dir@^1.0.0, resolve-dir@^1.0.1: 2388 - 2389 - resolve-from@^5.0.0: 2390 - version "5.0.0" 2391 - - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" 2392 - + resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz" 2393 - integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 2394 - 2395 - resolve-pkg@^2.0.0: 2396 - version "2.0.0" 2397 - - resolved "https://registry.yarnpkg.com/resolve-pkg/-/resolve-pkg-2.0.0.tgz#ac06991418a7623edc119084edc98b0e6bf05a41" 2398 - + resolved "https://registry.npmjs.org/resolve-pkg/-/resolve-pkg-2.0.0.tgz" 2399 - integrity sha512-+1lzwXehGCXSeryaISr6WujZzowloigEofRB+dj75y9RRa/obVcYgbHJd53tdYw8pvZj8GojXaaENws8Ktw/hQ== 2400 - dependencies: 2401 - resolve-from "^5.0.0" 2402 - 2403 - -resolve@^1.10.0, resolve@^1.19.0, resolve@^1.9.0: 2404 - +resolve@^1.19.0, resolve@^1.9.0: 2405 - version "1.22.8" 2406 - - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" 2407 - + resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz" 2408 - integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== 2409 - dependencies: 2410 - is-core-module "^2.13.0" 2411 - path-parse "^1.0.7" 2412 - supports-preserve-symlinks-flag "^1.0.0" 2413 - 2414 - -retry@^0.12.0: 2415 - - version "0.12.0" 2416 - - resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" 2417 - - integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== 2418 - - 2419 - rimraf@^2.6.2: 2420 - version "2.7.1" 2421 - - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 2422 - + resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz" 2423 - integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== 2424 - dependencies: 2425 - glob "^7.1.3" 2426 - 2427 - -rimraf@^3.0.2: 2428 - - version "3.0.2" 2429 - - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 2430 - - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 2431 - - dependencies: 2432 - - glob "^7.1.3" 2433 - - 2434 - -safe-buffer@>=5.1.0, safe-buffer@~5.2.0: 2435 - +safe-buffer@>=5.1.0: 2436 - version "5.2.1" 2437 - - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 2438 - + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" 2439 - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 2440 - 2441 - -safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2442 - - version "5.1.2" 2443 - - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2444 - - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 2445 - - 2446 - safe-json-parse@~1.0.1: 2447 - version "1.0.1" 2448 - - resolved "https://registry.yarnpkg.com/safe-json-parse/-/safe-json-parse-1.0.1.tgz#3e76723e38dfdda13c9b1d29a1e07ffee4b30b57" 2449 - + resolved "https://registry.npmjs.org/safe-json-parse/-/safe-json-parse-1.0.1.tgz" 2450 - integrity sha512-o0JmTu17WGUaUOHa1l0FPGXKBfijbxK6qoHzlkihsDXxzBHvJcA7zgviKR92Xs841rX9pK16unfphLq0/KqX7A== 2451 - 2452 - "safer-buffer@>= 2.1.2 < 3.0.0": 2453 - version "2.1.2" 2454 - - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2455 - + resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" 2456 - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 2457 - 2458 - -sass-graph@^4.0.1: 2459 - - version "4.0.1" 2460 - - resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-4.0.1.tgz#2ff8ca477224d694055bf4093f414cf6cfad1d2e" 2461 - - integrity sha512-5YCfmGBmxoIRYHnKK2AKzrAkCoQ8ozO+iumT8K4tXJXRVCPf+7s1/9KxTSW3Rbvf+7Y7b4FR3mWyLnQr3PHocA== 2462 - - dependencies: 2463 - - glob "^7.0.0" 2464 - - lodash "^4.17.11" 2465 - - scss-tokenizer "^0.4.3" 2466 - - yargs "^17.2.1" 2467 - - 2468 - -scss-tokenizer@^0.4.3: 2469 - - version "0.4.3" 2470 - - resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.4.3.tgz#1058400ee7d814d71049c29923d2b25e61dc026c" 2471 - - integrity sha512-raKLgf1LI5QMQnG+RxHz6oK0sL3x3I4FN2UDLqgLOGO8hodECNnNh5BXn7fAyBxrA8zVzdQizQ6XjNJQ+uBwMw== 2472 - +sass@^1.89.2: 2473 - + version "1.89.2" 2474 - + resolved "https://registry.npmjs.org/sass/-/sass-1.89.2.tgz" 2475 - + integrity sha512-xCmtksBKd/jdJ9Bt9p7nPKiuqrlBMBuuGkQlkhZjjQk3Ty48lv93k5Dq6OPkKt4XwxDJ7tvlfrTa1MPA9bf+QA== 2476 - dependencies: 2477 - - js-base64 "^2.4.9" 2478 - - source-map "^0.7.3" 2479 - + chokidar "^4.0.0" 2480 - + immutable "^5.0.2" 2481 - + source-map-js ">=0.6.2 <2.0.0" 2482 - + optionalDependencies: 2483 - + "@parcel/watcher" "^2.4.1" 2484 - 2485 - select2@4.1.0-rc.0: 2486 - version "4.1.0-rc.0" 2487 - - resolved "https://registry.yarnpkg.com/select2/-/select2-4.1.0-rc.0.tgz#ba3cd3901dda0155e1c0219ab41b74ba51ea22d8" 2488 - + resolved "https://registry.npmjs.org/select2/-/select2-4.1.0-rc.0.tgz" 2489 - integrity sha512-Hr9TdhyHCZUtwznEH2CBf7967mEM0idtJ5nMtjvk3Up5tPukOLXbHUNmh10oRfeNIhj+3GD3niu+g6sVK+gK0A== 2490 - 2491 - select@^1.1.2: 2492 - version "1.1.2" 2493 - - resolved "https://registry.yarnpkg.com/select/-/select-1.1.2.tgz#0e7350acdec80b1108528786ec1d4418d11b396d" 2494 - + resolved "https://registry.npmjs.org/select/-/select-1.1.2.tgz" 2495 - integrity sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA== 2496 - 2497 - -"semver@2 || 3 || 4 || 5": 2498 - - version "5.7.2" 2499 - - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" 2500 - - integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== 2501 - - 2502 - -semver@^7.3.4, semver@^7.3.5: 2503 - - version "7.6.3" 2504 - - resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" 2505 - - integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== 2506 - - 2507 - -set-blocking@^2.0.0: 2508 - - version "2.0.0" 2509 - - resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2510 - - integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== 2511 - - 2512 - -set-function-length@^1.2.1: 2513 - - version "1.2.2" 2514 - - resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" 2515 - - integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== 2516 - +side-channel-list@^1.0.0: 2517 - + version "1.0.0" 2518 - + resolved "https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz#10cb5984263115d3b7a0e336591e290a830af8ad" 2519 - + integrity sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA== 2520 - dependencies: 2521 - - define-data-property "^1.1.4" 2522 - es-errors "^1.3.0" 2523 - - function-bind "^1.1.2" 2524 - - get-intrinsic "^1.2.4" 2525 - - gopd "^1.0.1" 2526 - - has-property-descriptors "^1.0.2" 2527 - - 2528 - -shebang-command@^2.0.0: 2529 - - version "2.0.0" 2530 - - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 2531 - - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 2532 - - dependencies: 2533 - - shebang-regex "^3.0.0" 2534 - + object-inspect "^1.13.3" 2535 - 2536 - -shebang-regex@^3.0.0: 2537 - - version "3.0.0" 2538 - - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 2539 - - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 2540 - - 2541 - -side-channel@^1.0.6: 2542 - - version "1.0.6" 2543 - - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" 2544 - - integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== 2545 - +side-channel-map@^1.0.1: 2546 - + version "1.0.1" 2547 - + resolved "https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz#d6bb6b37902c6fef5174e5f533fab4c732a26f42" 2548 - + integrity sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA== 2549 - dependencies: 2550 - - call-bind "^1.0.7" 2551 - + call-bound "^1.0.2" 2552 - es-errors "^1.3.0" 2553 - - get-intrinsic "^1.2.4" 2554 - - object-inspect "^1.13.1" 2555 - - 2556 - -signal-exit@^3.0.7: 2557 - - version "3.0.7" 2558 - - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" 2559 - - integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== 2560 - + get-intrinsic "^1.2.5" 2561 - + object-inspect "^1.13.3" 2562 - 2563 - -smart-buffer@^4.2.0: 2564 - - version "4.2.0" 2565 - - resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" 2566 - - integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== 2567 - - 2568 - -socks-proxy-agent@^6.0.0: 2569 - - version "6.2.1" 2570 - - resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz#2687a31f9d7185e38d530bef1944fe1f1496d6ce" 2571 - - integrity sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ== 2572 - - dependencies: 2573 - - agent-base "^6.0.2" 2574 - - debug "^4.3.3" 2575 - - socks "^2.6.2" 2576 - - 2577 - -socks-proxy-agent@^7.0.0: 2578 - - version "7.0.0" 2579 - - resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz#dc069ecf34436621acb41e3efa66ca1b5fed15b6" 2580 - - integrity sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww== 2581 - +side-channel-weakmap@^1.0.2: 2582 - + version "1.0.2" 2583 - + resolved "https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz#11dda19d5368e40ce9ec2bdc1fb0ecbc0790ecea" 2584 - + integrity sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A== 2585 - dependencies: 2586 - - agent-base "^6.0.2" 2587 - - debug "^4.3.3" 2588 - - socks "^2.6.2" 2589 - + call-bound "^1.0.2" 2590 - + es-errors "^1.3.0" 2591 - + get-intrinsic "^1.2.5" 2592 - + object-inspect "^1.13.3" 2593 - + side-channel-map "^1.0.1" 2594 - 2595 - -socks@^2.6.2: 2596 - - version "2.8.3" 2597 - - resolved "https://registry.yarnpkg.com/socks/-/socks-2.8.3.tgz#1ebd0f09c52ba95a09750afe3f3f9f724a800cb5" 2598 - - integrity sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw== 2599 - +side-channel@^1.1.0: 2600 - + version "1.1.0" 2601 - + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.0.tgz#c3fcff9c4da932784873335ec9765fa94ff66bc9" 2602 - + integrity sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw== 2603 - dependencies: 2604 - - ip-address "^9.0.5" 2605 - - smart-buffer "^4.2.0" 2606 - + es-errors "^1.3.0" 2607 - + object-inspect "^1.13.3" 2608 - + side-channel-list "^1.0.0" 2609 - + side-channel-map "^1.0.1" 2610 - + side-channel-weakmap "^1.0.2" 2611 - 2612 - -source-map-js@^1.2.1: 2613 - +"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.2.1: 2614 - version "1.2.1" 2615 - - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" 2616 - + resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz" 2617 - integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== 2618 - 2619 - source-map@^0.5.3: 2620 - version "0.5.7" 2621 - - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2622 - + resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" 2623 - integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== 2624 - 2625 - source-map@^0.6.1: 2626 - version "0.6.1" 2627 - - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2628 - + resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" 2629 - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 2630 - 2631 - -source-map@^0.7.3: 2632 - - version "0.7.4" 2633 - - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" 2634 - - integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== 2635 - - 2636 - -spdx-correct@^3.0.0: 2637 - - version "3.2.0" 2638 - - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c" 2639 - - integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== 2640 - - dependencies: 2641 - - spdx-expression-parse "^3.0.0" 2642 - - spdx-license-ids "^3.0.0" 2643 - - 2644 - -spdx-exceptions@^2.1.0: 2645 - - version "2.5.0" 2646 - - resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz#5d607d27fc806f66d7b64a766650fa890f04ed66" 2647 - - integrity sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w== 2648 - - 2649 - -spdx-expression-parse@^3.0.0: 2650 - - version "3.0.1" 2651 - - resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 2652 - - integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 2653 - - dependencies: 2654 - - spdx-exceptions "^2.1.0" 2655 - - spdx-license-ids "^3.0.0" 2656 - - 2657 - -spdx-license-ids@^3.0.0: 2658 - - version "3.0.20" 2659 - - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz#e44ed19ed318dd1e5888f93325cee800f0f51b89" 2660 - - integrity sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw== 2661 - - 2662 - -sprintf-js@^1.1.1, sprintf-js@^1.1.3: 2663 - +sprintf-js@^1.1.1: 2664 - version "1.1.3" 2665 - - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a" 2666 - + resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz" 2667 - integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA== 2668 - 2669 - sprintf-js@~1.0.2: 2670 - version "1.0.3" 2671 - - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2672 - + resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" 2673 - integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== 2674 - 2675 - -ssri@^8.0.0, ssri@^8.0.1: 2676 - - version "8.0.1" 2677 - - resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af" 2678 - - integrity sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ== 2679 - - dependencies: 2680 - - minipass "^3.1.1" 2681 - - 2682 - -ssri@^9.0.0: 2683 - - version "9.0.1" 2684 - - resolved "https://registry.yarnpkg.com/ssri/-/ssri-9.0.1.tgz#544d4c357a8d7b71a19700074b6883fcb4eae057" 2685 - - integrity sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q== 2686 - - dependencies: 2687 - - minipass "^3.1.1" 2688 - - 2689 - -stdout-stream@^1.4.0: 2690 - - version "1.4.1" 2691 - - resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.1.tgz#5ac174cdd5cd726104aa0c0b2bd83815d8d535de" 2692 - - integrity sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA== 2693 - - dependencies: 2694 - - readable-stream "^2.0.1" 2695 - - 2696 - string-template@~0.2.1: 2697 - version "0.2.1" 2698 - - resolved "https://registry.yarnpkg.com/string-template/-/string-template-0.2.1.tgz#42932e598a352d01fc22ec3367d9d84eec6c9add" 2699 - + resolved "https://registry.npmjs.org/string-template/-/string-template-0.2.1.tgz" 2700 - integrity sha512-Yptehjogou2xm4UJbxJ4CxgZx12HBfeystp0y3x7s4Dj32ltVVG1Gg8YhKjHZkHicuKpZX/ffilA8505VbUbpw== 2701 - 2702 - -"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: 2703 - - version "4.2.3" 2704 - - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 2705 - - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 2706 - - dependencies: 2707 - - emoji-regex "^8.0.0" 2708 - - is-fullwidth-code-point "^3.0.0" 2709 - - strip-ansi "^6.0.1" 2710 - - 2711 - string_decoder@0.10: 2712 - version "0.10.31" 2713 - - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2714 - + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" 2715 - integrity sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ== 2716 - 2717 - -string_decoder@^1.1.1: 2718 - - version "1.3.0" 2719 - - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 2720 - - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== 2721 - - dependencies: 2722 - - safe-buffer "~5.2.0" 2723 - - 2724 - -string_decoder@~1.1.1: 2725 - - version "1.1.1" 2726 - - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 2727 - - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 2728 - - dependencies: 2729 - - safe-buffer "~5.1.0" 2730 - - 2731 - strip-ansi@^3.0.0: 2732 - version "3.0.1" 2733 - - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2734 - + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz" 2735 - integrity sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg== 2736 - dependencies: 2737 - ansi-regex "^2.0.0" 2738 - 2739 - -strip-ansi@^6.0.0, strip-ansi@^6.0.1: 2740 - - version "6.0.1" 2741 - - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 2742 - - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 2743 - - dependencies: 2744 - - ansi-regex "^5.0.1" 2745 - - 2746 - -strip-indent@^3.0.0: 2747 - - version "3.0.0" 2748 - - resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" 2749 - - integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== 2750 - - dependencies: 2751 - - min-indent "^1.0.0" 2752 - - 2753 - supports-color@^2.0.0: 2754 - version "2.0.0" 2755 - - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2756 - + resolved "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz" 2757 - integrity sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g== 2758 - 2759 - supports-color@^5.3.0, supports-color@^5.4.0: 2760 - version "5.5.0" 2761 - - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2762 - + resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" 2763 - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2764 - dependencies: 2765 - has-flag "^3.0.0" 2766 - 2767 - supports-color@^7.1.0: 2768 - version "7.2.0" 2769 - - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 2770 - + resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" 2771 - integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2772 - dependencies: 2773 - has-flag "^4.0.0" 2774 - 2775 - supports-preserve-symlinks-flag@^1.0.0: 2776 - version "1.0.0" 2777 - - resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 2778 - + resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" 2779 - integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 2780 - 2781 - -tar@^6.0.2, tar@^6.1.11, tar@^6.1.2: 2782 - - version "6.2.1" 2783 - - resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz#717549c541bc3c2af15751bea94b1dd068d4b03a" 2784 - - integrity sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A== 2785 - - dependencies: 2786 - - chownr "^2.0.0" 2787 - - fs-minipass "^2.0.0" 2788 - - minipass "^5.0.0" 2789 - - minizlib "^2.1.1" 2790 - - mkdirp "^1.0.3" 2791 - - yallist "^4.0.0" 2792 - - 2793 - tiny-emitter@^2.0.0: 2794 - version "2.1.0" 2795 - - resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423" 2796 - + resolved "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz" 2797 - integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q== 2798 - 2799 - tiny-lr@^1.1.1: 2800 - version "1.1.1" 2801 - - resolved "https://registry.yarnpkg.com/tiny-lr/-/tiny-lr-1.1.1.tgz#9fa547412f238fedb068ee295af8b682c98b2aab" 2802 - + resolved "https://registry.npmjs.org/tiny-lr/-/tiny-lr-1.1.1.tgz" 2803 - integrity sha512-44yhA3tsaRoMOjQQ+5v5mVdqef+kH6Qze9jTpqtVufgYjYt08zyZAwNwwVBj3i1rJMnR52IxOW0LK0vBzgAkuA== 2804 - dependencies: 2805 - body "^5.1.0" 2806 - @@ -2423,36 +1527,11 @@ tiny-lr@^1.1.1: 2807 - 2808 - to-regex-range@^5.0.1: 2809 - version "5.0.1" 2810 - - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2811 - + resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" 2812 - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2813 - dependencies: 2814 - is-number "^7.0.0" 2815 - 2816 - -trim-newlines@^3.0.0: 2817 - - version "3.0.1" 2818 - - resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" 2819 - - integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== 2820 - - 2821 - -"true-case-path@^2.2.1": 2822 - - version "2.2.1" 2823 - - resolved "https://registry.yarnpkg.com/true-case-path/-/true-case-path-2.2.1.tgz#c5bf04a5bbec3fd118be4084461b3a27c4d796bf" 2824 - - integrity sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q== 2825 - - 2826 - -type-fest@^0.18.0: 2827 - - version "0.18.1" 2828 - - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f" 2829 - - integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== 2830 - - 2831 - -type-fest@^0.6.0: 2832 - - version "0.6.0" 2833 - - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" 2834 - - integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== 2835 - - 2836 - -type-fest@^0.8.1: 2837 - - version "0.8.1" 2838 - - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 2839 - - integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 2840 - - 2841 - uglify-js@^3.16.1: 2842 - version "3.19.3" 2843 - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.19.3.tgz#82315e9bbc6f2b25888858acd1fff8441035b77f" 2844 - @@ -2460,81 +1539,45 @@ uglify-js@^3.16.1: 2845 - 2846 - unc-path-regex@^0.1.2: 2847 - version "0.1.2" 2848 - - resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" 2849 - + resolved "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz" 2850 - integrity sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg== 2851 - 2852 - underscore.string@~3.3.5: 2853 - version "3.3.6" 2854 - - resolved "https://registry.yarnpkg.com/underscore.string/-/underscore.string-3.3.6.tgz#ad8cf23d7423cb3b53b898476117588f4e2f9159" 2855 - + resolved "https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.6.tgz" 2856 - integrity sha512-VoC83HWXmCrF6rgkyxS9GHv8W9Q5nhMKho+OadDJGzL2oDYbYEppBaCMH6pFlwLeqj2QS+hhkw2kpXkSdD1JxQ== 2857 - dependencies: 2858 - sprintf-js "^1.1.1" 2859 - util-deprecate "^1.0.2" 2860 - 2861 - -unique-filename@^1.1.1: 2862 - - version "1.1.1" 2863 - - resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" 2864 - - integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== 2865 - - dependencies: 2866 - - unique-slug "^2.0.0" 2867 - - 2868 - -unique-filename@^2.0.0: 2869 - - version "2.0.1" 2870 - - resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-2.0.1.tgz#e785f8675a9a7589e0ac77e0b5c34d2eaeac6da2" 2871 - - integrity sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A== 2872 - - dependencies: 2873 - - unique-slug "^3.0.0" 2874 - - 2875 - -unique-slug@^2.0.0: 2876 - - version "2.0.2" 2877 - - resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c" 2878 - - integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w== 2879 - - dependencies: 2880 - - imurmurhash "^0.1.4" 2881 - - 2882 - -unique-slug@^3.0.0: 2883 - - version "3.0.0" 2884 - - resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-3.0.0.tgz#6d347cf57c8a7a7a6044aabd0e2d74e4d76dc7c9" 2885 - - integrity sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w== 2886 - - dependencies: 2887 - - imurmurhash "^0.1.4" 2888 - - 2889 - -update-browserslist-db@^1.1.1: 2890 - - version "1.1.1" 2891 - - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz#80846fba1d79e82547fb661f8d141e0945755fe5" 2892 - - integrity sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A== 2893 - +update-browserslist-db@^1.1.3: 2894 - + version "1.1.3" 2895 - + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz#348377dd245216f9e7060ff50b15a1b740b75420" 2896 - + integrity sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw== 2897 - dependencies: 2898 - escalade "^3.2.0" 2899 - - picocolors "^1.1.0" 2900 - + picocolors "^1.1.1" 2901 - 2902 - uri-path@^1.0.0: 2903 - version "1.0.0" 2904 - - resolved "https://registry.yarnpkg.com/uri-path/-/uri-path-1.0.0.tgz#9747f018358933c31de0fccfd82d138e67262e32" 2905 - + resolved "https://registry.npmjs.org/uri-path/-/uri-path-1.0.0.tgz" 2906 - integrity sha512-8pMuAn4KacYdGMkFaoQARicp4HSw24/DHOVKWqVRJ8LhhAwPPFpdGvdL9184JVmUwe7vz7Z9n6IqI6t5n2ELdg== 2907 - 2908 - -util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: 2909 - +util-deprecate@^1.0.2: 2910 - version "1.0.2" 2911 - - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2912 - + resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" 2913 - integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== 2914 - 2915 - v8flags@~3.2.0: 2916 - version "3.2.0" 2917 - - resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-3.2.0.tgz#b243e3b4dfd731fa774e7492128109a0fe66d656" 2918 - + resolved "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz" 2919 - integrity sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg== 2920 - dependencies: 2921 - homedir-polyfill "^1.0.1" 2922 - 2923 - -validate-npm-package-license@^3.0.1: 2924 - - version "3.0.4" 2925 - - resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 2926 - - integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 2927 - - dependencies: 2928 - - spdx-correct "^3.0.0" 2929 - - spdx-expression-parse "^3.0.0" 2930 - - 2931 - websocket-driver@>=0.5.1: 2932 - version "0.7.4" 2933 - - resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760" 2934 - + resolved "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz" 2935 - integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg== 2936 - dependencies: 2937 - http-parser-js ">=0.5.1" 2938 - @@ -2543,78 +1586,29 @@ websocket-driver@>=0.5.1: 2939 - 2940 - websocket-extensions@>=0.1.1: 2941 - version "0.1.4" 2942 - - resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42" 2943 - + resolved "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz" 2944 - integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== 2945 - 2946 - which@^1.2.14: 2947 - version "1.3.1" 2948 - - resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 2949 - + resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz" 2950 - integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 2951 - dependencies: 2952 - isexe "^2.0.0" 2953 - 2954 - -which@^2.0.1, which@^2.0.2, which@~2.0.2: 2955 - +which@~2.0.2: 2956 - version "2.0.2" 2957 - - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2958 - + resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" 2959 - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2960 - dependencies: 2961 - isexe "^2.0.0" 2962 - 2963 - -wide-align@^1.1.5: 2964 - - version "1.1.5" 2965 - - resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" 2966 - - integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== 2967 - - dependencies: 2968 - - string-width "^1.0.2 || 2 || 3 || 4" 2969 - - 2970 - -wrap-ansi@^7.0.0: 2971 - - version "7.0.0" 2972 - - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 2973 - - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 2974 - - dependencies: 2975 - - ansi-styles "^4.0.0" 2976 - - string-width "^4.1.0" 2977 - - strip-ansi "^6.0.0" 2978 - - 2979 - wrappy@1: 2980 - version "1.0.2" 2981 - - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2982 - + resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" 2983 - integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 2984 - 2985 - -y18n@^5.0.5: 2986 - - version "5.0.8" 2987 - - resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 2988 - - integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 2989 - - 2990 - -yallist@^4.0.0: 2991 - - version "4.0.0" 2992 - - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2993 - - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2994 - - 2995 - -yargs-parser@^20.2.3: 2996 - - version "20.2.9" 2997 - - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" 2998 - - integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== 2999 - - 3000 - -yargs-parser@^21.1.1: 3001 - - version "21.1.1" 3002 - - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" 3003 - - integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== 3004 - - 3005 - -yargs@^17.2.1: 3006 - - version "17.7.2" 3007 - - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" 3008 - - integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== 3009 - - dependencies: 3010 - - cliui "^8.0.1" 3011 - - escalade "^3.1.1" 3012 - - get-caller-file "^2.0.5" 3013 - - require-directory "^2.1.1" 3014 - - string-width "^4.2.3" 3015 - - y18n "^5.0.5" 3016 - - yargs-parser "^21.1.1" 3017 - - 3018 - zxcvbn@4.4: 3019 - version "4.4.2" 3020 - - resolved "https://registry.yarnpkg.com/zxcvbn/-/zxcvbn-4.4.2.tgz#28ec17cf09743edcab056ddd8b1b06262cc73c30" 3021 - + resolved "https://registry.npmjs.org/zxcvbn/-/zxcvbn-4.4.2.tgz" 3022 - integrity sha512-Bq0B+ixT/DMyG8kgX2xWcI5jUvCwqrMxSFam7m0lAf78nf04hv6lNCsyLYdyYTrCVMqNDY/206K7eExYCeSyUQ==
+11 -11
pkgs/by-name/in/invoiceplane/package.nix
··· 12 12 fetchzip, 13 13 }: 14 14 let 15 - version = "1.6.2"; 15 + version = "1.6.3"; 16 16 # Fetch release tarball which contains language files 17 17 # https://github.com/InvoicePlane/InvoicePlane/issues/1170 18 18 languages = fetchzip { 19 19 url = "https://github.com/InvoicePlane/InvoicePlane/releases/download/v${version}/v${version}.zip"; 20 - hash = "sha256-ME8ornP2uevvH8DzuI25Z8OV0EP98CBgbunvb2Hbr9M="; 20 + hash = "sha256-MuqxbkayW3GeiaorxfZSJtlwCWvnIF2ED/UUqahyoIQ="; 21 21 }; 22 22 in 23 23 php.buildComposerProject2 (finalAttrs: { ··· 28 28 owner = "InvoicePlane"; 29 29 repo = "InvoicePlane"; 30 30 tag = "v${version}"; 31 - hash = "sha256-E2TZ/FhlVKZpGuczXb/QLn27gGiO7YYlAkPSolTEoeQ="; 31 + hash = "sha256-XNjdFWP5AEulbPZcMDXYSdDhaLWlgu3nnCSFnjUjGpk="; 32 32 }; 33 33 34 34 patches = [ 35 - # Node-sass is deprecated and fails to cross-compile 36 - # See: https://github.com/InvoicePlane/InvoicePlane/issues/1275 37 - ./node_switch_to_sass.patch 35 + # yarn.lock missing some resolved attributes and fails 36 + ./fix-yarn-lock.patch 37 + 38 + # Fix composer.json validation 39 + # See https://github.com/InvoicePlane/InvoicePlane/pull/1306 40 + ./fix_composer_validation.patch 38 41 ]; 39 42 40 - vendorHash = "sha256-eq3YKIZZzZihDYgFH3YTETHvNG6hAE/oJ5Ul2XRMn4U="; 43 + vendorHash = "sha256-qnWLcEabQpu0Yp4Q2NWQm4XFV4YW679cvXo6p/dDECI="; 41 44 42 45 nativeBuildInputs = [ 43 46 yarnConfigHook ··· 49 52 50 53 offlineCache = fetchYarnDeps { 51 54 inherit (finalAttrs) src patches; 52 - hash = "sha256-qAm4HnZwfwfjv7LqG+skmFLTHCSJKWH8iRDWFFebXEs="; 55 + hash = "sha256-0fPdxOIeQBTulPUxHtaQylm4jevQTONSN1bChqbGbGs="; 53 56 }; 54 - 55 - # Upstream composer.json file is missing the name, description and license fields 56 - composerStrictValidation = false; 57 57 58 58 postBuild = '' 59 59 grunt build
+1 -1
pkgs/by-name/is/istat-menus/package.nix
··· 48 48 description = "Set of nine separate and highly configurable menu items that let you know exactly what's going on inside your Mac"; 49 49 homepage = "https://bjango.com/mac/istatmenus/"; 50 50 license = lib.licenses.unfree; 51 - maintainers = with lib.maintainers; [ donteatoreo ]; 51 + maintainers = with lib.maintainers; [ FlameFlag ]; 52 52 platforms = lib.platforms.darwin; 53 53 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 54 54 };
+1 -1
pkgs/by-name/it/itsycal/package.nix
··· 27 27 description = "Tiny menu bar calendar"; 28 28 homepage = "https://www.mowglii.com/itsycal/"; 29 29 license = lib.licenses.mit; 30 - maintainers = with lib.maintainers; [ donteatoreo ]; 30 + maintainers = with lib.maintainers; [ FlameFlag ]; 31 31 platforms = lib.platforms.darwin; 32 32 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 33 33 };
+1 -1
pkgs/by-name/ko/koboldcpp/package.nix
··· 126 126 mainProgram = "koboldcpp"; 127 127 maintainers = with lib.maintainers; [ 128 128 maxstrid 129 - donteatoreo 129 + FlameFlag 130 130 ]; 131 131 platforms = lib.platforms.unix; 132 132 };
+3 -3
pkgs/by-name/la/ladybird/package.nix
··· 33 33 34 34 stdenv.mkDerivation (finalAttrs: { 35 35 pname = "ladybird"; 36 - version = "0-unstable-2025-08-11"; 36 + version = "0-unstable-2025-08-19"; 37 37 38 38 src = fetchFromGitHub { 39 39 owner = "LadybirdWebBrowser"; 40 40 repo = "ladybird"; 41 - rev = "a64cee528c5b387d45441da80f6c887399d4affb"; 42 - hash = "sha256-YtWh5Unny3IU0+81N8riGDJJAtethO1g04cxNap520s="; 41 + rev = "658477620afe4c14b936227d1c8307b2dea56267"; 42 + hash = "sha256-WkEgZP5Ci0mlNDGq++93v4coz36dhp+kXtlKQu1xnVM="; 43 43 }; 44 44 45 45 postPatch = ''
+1 -1
pkgs/by-name/mo/moonlight/package.nix
··· 73 73 license = licenses.lgpl3; 74 74 maintainers = with maintainers; [ 75 75 ilys 76 - donteatoreo 76 + FlameFlag 77 77 ]; 78 78 }; 79 79 })
+1 -1
pkgs/by-name/mo/mousecape/package.nix
··· 26 26 description = "Cursor manager for macOS built using private, nonintrusive CoreGraphics APIs"; 27 27 homepage = "https://github.com/alexzielenski/Mousecape"; 28 28 license = lib.licenses.free; 29 - maintainers = with lib.maintainers; [ donteatoreo ]; 29 + maintainers = with lib.maintainers; [ FlameFlag ]; 30 30 platforms = lib.platforms.darwin; 31 31 sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; 32 32 };
+3 -3
pkgs/by-name/nc/nchat/package.nix
··· 15 15 }: 16 16 17 17 let 18 - version = "5.8.4"; 18 + version = "5.9.15"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "d99kris"; 22 22 repo = "nchat"; 23 23 tag = "v${version}"; 24 - hash = "sha256-PfiTIq8xomqp4ewawbX56hFgA4x5z8SI2w9husMtZPc="; 24 + hash = "sha256-I7A6+zhHXE+LSfqnWESsXF1U4Y0Bw1Vt7gZblRqWSMQ="; 25 25 }; 26 26 27 27 libcgowm = buildGoModule { ··· 29 29 inherit version src; 30 30 31 31 sourceRoot = "${src.name}/lib/wmchat/go"; 32 - vendorHash = "sha256-HC7tJRk7Pqw3AUDEP2fGqYQLjIGf0CgB36K3PBYsBMM="; 32 + vendorHash = "sha256-rovzblnXfDDyWyYR3G9irFaSopiZSeax+48R/vD/ktY="; 33 33 34 34 buildPhase = '' 35 35 runHook preBuild
-5
pkgs/by-name/ne/nexusmods-app/deps.json
··· 910 910 "hash": "sha256-1e031E26iraIqun84ad0fCIR4MJZ1hcQo4yFN+B7UfE=" 911 911 }, 912 912 { 913 - "pname": "Microsoft.Bcl.AsyncInterfaces", 914 - "version": "8.0.0", 915 - "hash": "sha256-9aWmiwMJKrKr9ohD1KSuol37y+jdDxPGJct3m2/Bknw=" 916 - }, 917 - { 918 913 "pname": "Microsoft.Build.Tasks.Git", 919 914 "version": "8.0.0", 920 915 "hash": "sha256-vX6/kPij8vNAu8f7rrvHHhPrNph20IcufmrBgZNxpQA="
+23
pkgs/by-name/ne/nexusmods-app/game-hashes/default.nix
··· 1 + { fetchurl }: 2 + let 3 + release = "ved4b249e2c35952c"; 4 + owner = "Nexus-Mods"; 5 + repo = "game-hashes"; 6 + repoURL = "https://github.com/${owner}/${repo}"; 7 + 8 + # Define a binding so that `update-source-version` can find it 9 + src = fetchurl { 10 + url = "${repoURL}/releases/download/${release}/game_hashes_db.zip"; 11 + hash = "sha256-9xJ8yfLRkIV0o++NHK2igd2l83/tsgWc5cuwZO2zseY="; 12 + passthru = { 13 + inherit 14 + src # Also for `update-source-version` support 15 + release 16 + owner 17 + repo 18 + repoURL 19 + ; 20 + }; 21 + }; 22 + in 23 + src
+56
pkgs/by-name/ne/nexusmods-app/game-hashes/update.sh
··· 1 + #!/usr/bin/env nix-shell 2 + #! nix-shell -i bash -p bash common-updater-scripts gh 3 + 4 + set -eu -o pipefail 5 + 6 + # Set a default attrpath to allow running this update script directly 7 + export UPDATE_NIX_ATTR_PATH="${UPDATE_NIX_ATTR_PATH:-"nexusmods-app.gameHashes"}" 8 + 9 + self=$(realpath "$0") 10 + dir=$(dirname "$self") 11 + cd "$dir"/../../../../../ 12 + 13 + old_release=$( 14 + nix-instantiate --eval --raw \ 15 + --attr "$UPDATE_NIX_ATTR_PATH.release" 16 + ) 17 + 18 + echo "Looking up latest game_hashes_db" >&2 19 + new_release=$( 20 + gh --repo Nexus-Mods/game-hashes \ 21 + release list \ 22 + --limit 1 \ 23 + --exclude-drafts \ 24 + --exclude-pre-releases \ 25 + --json tagName \ 26 + --jq .[].tagName 27 + ) 28 + 29 + echo "Latest release is $new_release" >&2 30 + 31 + if [ "$old_release" = "$new_release" ]; then 32 + echo "Already up to date" 33 + exit 34 + fi 35 + 36 + old_release_escaped=$(echo "$old_release" | sed 's#[$^*\\.[|]#\\&#g') 37 + new_release_escaped=$(echo "$new_release" | sed 's#[$^*\\.[|]#\\&#g') 38 + url=$( 39 + nix-instantiate --eval --raw --attr "$UPDATE_NIX_ATTR_PATH.url" | 40 + sed "s|$old_release_escaped|$new_release_escaped|" 41 + ) 42 + 43 + echo "Downloading and hashing game_hashes_db" >&2 44 + hash=$( 45 + nix --extra-experimental-features nix-command \ 46 + hash convert --hash-algo sha256 --to sri \ 47 + "$(nix-prefetch-url "$url" --type sha256)" 48 + ) 49 + 50 + echo "Updating source" >&2 51 + update-source-version \ 52 + "$UPDATE_NIX_ATTR_PATH" \ 53 + "$new_release" \ 54 + "$hash" \ 55 + --version-key=release \ 56 + --file="$dir"/default.nix
+20 -18
pkgs/by-name/ne/nexusmods-app/package.nix
··· 2 2 _7zz, 3 3 avalonia, 4 4 buildDotnetModule, 5 + callPackage, 5 6 desktop-file-utils, 6 7 dotnetCorePackages, 7 8 fetchgit, 8 9 imagemagick, 9 10 lib, 10 11 xdg-utils, 11 - nix-update-script, 12 12 pname ? "nexusmods-app", 13 13 }: 14 14 let ··· 23 23 in 24 24 buildDotnetModule (finalAttrs: { 25 25 inherit pname; 26 - version = "0.14.3"; 26 + version = "0.15.2"; 27 27 28 28 src = fetchgit { 29 29 url = "https://github.com/Nexus-Mods/NexusMods.App.git"; 30 30 rev = "refs/tags/v${finalAttrs.version}"; 31 - hash = "sha256-B2gIRVeaTwYEnESMovwEJgdmLwRNA7/nJs7opNhiyyA="; 31 + hash = "sha256-WI6ulYDPOBGGt3snimCHswuIaII1aWNT/TZqvJxrQRQ="; 32 32 fetchSubmodules = true; 33 33 }; 34 + 35 + gameHashes = callPackage ./game-hashes { }; 34 36 35 37 enableParallelBuilding = false; 36 38 ··· 63 65 # for some reason these tests fail (intermittently?) with a zero timestamp 64 66 touch tests/NexusMods.UI.Tests/WorkspaceSystem/*.verified.png 65 67 66 - # Assertion assumes version is set to 0.0.1 67 - substituteInPlace tests/NexusMods.Telemetry.Tests/TrackingDataSenderTests.cs \ 68 - --replace-fail 'cra_ct=v0.0.1' 'cra_ct=v${finalAttrs.version}' 68 + # Specify a fixed date to improve build reproducibility 69 + echo "1970-01-01T00:00:00Z" >buildDate.txt 70 + substituteInPlace src/NexusMods.Sdk/NexusMods.Sdk.csproj \ 71 + --replace-fail '$(BaseIntermediateOutputPath)buildDate.txt' "$(realpath buildDate.txt)" 72 + 73 + # Use a pinned version of the game hashes db 74 + substituteInPlace src/NexusMods.Games.FileHashes/NexusMods.Games.FileHashes.csproj \ 75 + --replace-fail '$(BaseIntermediateOutputPath)games_hashes_db.zip' "$gameHashes" 76 + 77 + # Use a vendored version of the nexus API's games.json data 78 + substituteInPlace src/NexusMods.Networking.NexusWebApi/NexusMods.Networking.NexusWebApi.csproj \ 79 + --replace-fail '$(BaseIntermediateOutputPath)games.json' ${./vendored/games.json} 69 80 ''; 70 81 71 82 makeWrapperArgs = [ ··· 127 138 128 139 dotnetTestFlags = [ 129 140 "--environment=USER=nobody" 141 + "--property:Version=${finalAttrs.version}" 130 142 "--property:DefineConstants=${lib.strings.concatStringsSep "%3B" constants}" 131 143 ]; 132 144 ··· 137 149 ]; 138 150 139 151 disabledTests = [ 140 - # Fails attempting to download game hashes DB from github: 141 - # HttpRequestException : Resource temporarily unavailable (github.com:443) 142 - "NexusMods.DataModel.SchemaVersions.Tests.LegacyDatabaseSupportTests.TestDatabase" 143 - "NexusMods.DataModel.SchemaVersions.Tests.MigrationSpecificTests.TestsFor_0001_ConvertTimestamps.OldTimestampsAreInRange" 144 - "NexusMods.DataModel.SchemaVersions.Tests.MigrationSpecificTests.TestsFor_0003_FixDuplicates.No_Duplicates" 145 - "NexusMods.DataModel.SchemaVersions.Tests.MigrationSpecificTests.TestsFor_0004_RemoveGameFiles.Test" 146 - 147 152 # Fails attempting to fetch SMAPI version data from github: 148 153 # https://github.com/erri120/smapi-versions/raw/main/data/game-smapi-versions.json 149 154 "NexusMods.Games.StardewValley.Tests.SMAPIGameVersionDiagnosticEmitterTests.Test_TryGetLastSupportedSMAPIVersion" 150 - 151 - # Fails attempting to fetch game info from NexusMods API 152 - "NexusMods.Networking.NexusWebApi.Tests.LocalMappingCacheTests.Test_Parse" 153 155 ] 154 156 ++ lib.optionals (!_7zz.meta.unfree) [ 155 157 "NexusMods.Games.FOMOD.Tests.FomodXmlInstallerTests.InstallsFilesSimple_UsingRar" ··· 189 191 }; 190 192 }; 191 193 192 - passthru.updateScript = nix-update-script { }; 194 + passthru.updateScript = ./update.sh; 193 195 194 196 meta = { 195 197 mainProgram = "NexusMods.App"; 196 198 homepage = "https://github.com/Nexus-Mods/NexusMods.App"; 197 - changelog = "https://github.com/Nexus-Mods/NexusMods.App/releases/tag/${finalAttrs.src.rev}"; 199 + changelog = "https://github.com/Nexus-Mods/NexusMods.App/releases/tag/v${finalAttrs.version}"; 198 200 license = [ lib.licenses.gpl3Plus ]; 199 201 maintainers = with lib.maintainers; [ 200 202 l0b0
+24
pkgs/by-name/ne/nexusmods-app/update.sh
··· 1 + #!/usr/bin/env nix-shell 2 + #! nix-shell -i bash -p bash nix-update 3 + 4 + set -eu -o pipefail 5 + 6 + # Set a default attrpath to allow running this update script directly 7 + export UPDATE_NIX_ATTR_PATH="${UPDATE_NIX_ATTR_PATH:-"nexusmods-app"}" 8 + 9 + self=$(realpath "$0") 10 + dir=$(dirname "$self") 11 + cd "$dir"/../../../../ 12 + 13 + # Update vendored files 14 + "$dir"/vendored/update.sh 15 + 16 + # Update game_hashes_db 17 + UPDATE_NIX_ATTR_PATH="$UPDATE_NIX_ATTR_PATH.gameHashes" \ 18 + "$dir"/game-hashes/update.sh 19 + 20 + url=$( 21 + nix-instantiate --eval --raw \ 22 + --attr "$UPDATE_NIX_ATTR_PATH.meta.homepage" 23 + ) 24 + nix-update --url "$url"
+31
pkgs/by-name/ne/nexusmods-app/vendored/README.md
··· 1 + This directory contains a vendored copy of `games.json`, along with tooling to generate it. 2 + 3 + ## Purpose 4 + 5 + The games data is fetched at runtime by NexusMods.App, however it is also included at build time for two reasons: 6 + 7 + 1. It allows tests to run against real data. 8 + 2. It is used as cached data, speeding up the app's initial run. 9 + 10 + It is not vital for the file to contain all games, however ideally it should contain all games _supported_ by this version of NexusMods.App. 11 + That way the initial run's cached data is more useful. 12 + 13 + If this file grows too large, because we are including too many games, we can patch the `csproj` build spec so that `games.json` is not used at build time. 14 + We would also need to patch or disable any tests that rely on it. 15 + 16 + ## Generating 17 + 18 + `games.json` is generated automatically by `update.sh`, using data from [nexusmods' API][url] and the games listed in `game-ids.nix`. 19 + 20 + To add a new game to `games.json`: 21 + - Inspect the [nexusmods endpoint][url] to find the game's name and ID 22 + - Add the name and ID to `game-ids.nix` 23 + - Run `update.sh` 24 + - Commit the result 25 + 26 + > [!Note] 27 + > Running `update.sh` may also update the existing games, so you may wish to create two separate commits using `git add --patch`. 28 + > One for updating the existing data and another for adding the new game. 29 + 30 + [url]: https://data.nexusmods.com/file/nexus-data/games.json 31 +
+11
pkgs/by-name/ne/nexusmods-app/vendored/game-ids.nix
··· 1 + # This file lists games to be included in the vendored games.json file. 2 + # It is not critical to include all games, other than those referenced by the test suite. 3 + # Ideally, all games supported by the app will be included, as this can improve first-run performance. 4 + { 5 + # keep-sorted start case=no numeric=yes 6 + "Baldur's Gate 3" = 3474; 7 + "Cyberpunk 2077" = 3333; 8 + "Mount & Blade II: Bannerlord" = 3174; 9 + "Stardew Valley" = 1303; 10 + # keep-sorted end 11 + }
+58
pkgs/by-name/ne/nexusmods-app/vendored/games.json
··· 1 + [ 2 + { 3 + "id": 1303, 4 + "name": "Stardew Valley", 5 + "name_lower": "stardew valley", 6 + "forum_url": "https://forums.nexusmods.com/games/19-stardew-valley/", 7 + "nexusmods_url": "https://www.nexusmods.com/stardewvalley", 8 + "genre": "Simulation", 9 + "file_count": 137612, 10 + "downloads": 592183501, 11 + "domain_name": "stardewvalley", 12 + "approved_date": 1457432329, 13 + "mods": 24655, 14 + "collections": 3570 15 + }, 16 + { 17 + "id": 3174, 18 + "name": "Mount & Blade II: Bannerlord", 19 + "name_lower": "mount & blade ii: bannerlord", 20 + "forum_url": "https://forums.nexusmods.com/games/9-mount-blade-ii-bannerlord/", 21 + "nexusmods_url": "https://www.nexusmods.com/mountandblade2bannerlord", 22 + "genre": "Strategy", 23 + "file_count": 49182, 24 + "downloads": 111421397, 25 + "domain_name": "mountandblade2bannerlord", 26 + "approved_date": 1582898627, 27 + "mods": 6136, 28 + "collections": 321 29 + }, 30 + { 31 + "id": 3333, 32 + "name": "Cyberpunk 2077", 33 + "name_lower": "cyberpunk 2077", 34 + "forum_url": "https://forums.nexusmods.com/games/1-cyberpunk-2077/", 35 + "nexusmods_url": "https://www.nexusmods.com/cyberpunk2077", 36 + "genre": "Action", 37 + "file_count": 118327, 38 + "downloads": 825382927, 39 + "domain_name": "cyberpunk2077", 40 + "approved_date": 1607433331, 41 + "mods": 16707, 42 + "collections": 1910 43 + }, 44 + { 45 + "id": 3474, 46 + "name": "Baldur's Gate 3", 47 + "name_lower": "baldur's gate 3", 48 + "forum_url": "https://forums.nexusmods.com/games/2-baldurs-gate-3/", 49 + "nexusmods_url": "https://www.nexusmods.com/baldursgate3", 50 + "genre": "RPG", 51 + "file_count": 100954, 52 + "downloads": 325304689, 53 + "domain_name": "baldursgate3", 54 + "approved_date": 1602863114, 55 + "mods": 14186, 56 + "collections": 3703 57 + } 58 + ]
+53
pkgs/by-name/ne/nexusmods-app/vendored/update.sh
··· 1 + #!/usr/bin/env nix-shell 2 + #! nix-shell -i bash -p bash curl jq 3 + 4 + set -eu -o pipefail 5 + 6 + url='https://data.nexusmods.com/file/nexus-data/games.json' 7 + self=$(realpath "$0") 8 + dir=$(dirname "$self") 9 + tmp=$(mktemp) 10 + 11 + cd "$dir"/../../../../../ 12 + 13 + ids=$( 14 + nix-instantiate --eval --json \ 15 + --argstr file "$dir"/game-ids.nix \ 16 + --expr '{file}: builtins.attrValues (import file)' 17 + ) 18 + 19 + echo "Fetching games data" >&2 20 + curl "$url" \ 21 + --silent \ 22 + --show-error \ 23 + --location | 24 + jq --argjson ids "$ids" \ 25 + 'map(select( .id | IN($ids[]) )) | sort_by(.id)' \ 26 + >"$tmp" 27 + 28 + echo "Validating result" >&2 29 + nix-instantiate --eval --strict \ 30 + --argstr idsNix "$dir"/game-ids.nix \ 31 + --argstr gamesJson "$tmp" \ 32 + --expr ' 33 + { 34 + idsNix, 35 + gamesJson, 36 + lib ? import <nixpkgs/lib>, 37 + }: 38 + let 39 + ids = import idsNix; 40 + games = lib.importJSON gamesJson; 41 + in 42 + lib.forEach games ( 43 + { id, name, ... }: 44 + lib.throwIfNot 45 + (id == ids.${name}) 46 + "${name}: id ${toString id} does not match ${toString ids.${name}}" 47 + null 48 + ) 49 + ' \ 50 + >/dev/null 51 + 52 + echo "Installing games.json to $dir" >&2 53 + mv --force "$tmp" "$dir"/games.json
+1 -1
pkgs/by-name/nu/numi/package.nix
··· 34 34 description = "Beautiful calculator app for macOS"; 35 35 homepage = "https://numi.app/"; 36 36 license = lib.licenses.unfree; 37 - maintainers = with lib.maintainers; [ donteatoreo ]; 37 + maintainers = with lib.maintainers; [ FlameFlag ]; 38 38 platforms = lib.platforms.darwin; 39 39 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 40 40 };
+3 -3
pkgs/by-name/or/orchard/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "orchard"; 10 - version = "0.37.0"; 10 + version = "0.38.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "cirruslabs"; 14 14 repo = "orchard"; 15 15 rev = version; 16 - hash = "sha256-V5pBiF1IIfyyZIAoHnAccZ6YNddA4MosEJROJVEpwoo="; 16 + hash = "sha256-FKawq1GN7Uz3NGmqw3za8+X4bZiFyFPMxM5PPtpKDrs="; 17 17 # populate values that require us to use git. By doing this in postFetch we 18 18 # can delete .git afterwards and maintain better reproducibility of the src. 19 19 leaveDotGit = true; ··· 24 24 ''; 25 25 }; 26 26 27 - vendorHash = "sha256-VHEj4y7XSfdbSeBo9+ZwBZXUj/ur0w6gPrxCt2xNQMM="; 27 + vendorHash = "sha256-GYAcRC9OMhlOax1s33SrgtbbAlyE9w8Zn4AL7bQrcNk="; 28 28 29 29 nativeBuildInputs = [ installShellFiles ]; 30 30
+4 -4
pkgs/by-name/ot/otree/package.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "otree"; 9 - version = "v0.3.0"; 9 + version = "0.5.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "fioncat"; 13 13 repo = "otree"; 14 - rev = version; 15 - hash = "sha256-WvoiTu6erNI5Cb9PSoHgL6+coIGWLe46pJVXBZHOLTE="; 14 + tag = "v${version}"; 15 + hash = "sha256-zsBHra8X1nM8QINaxi3Vcs82T8S5WtfNRN5vb/ppuLU="; 16 16 }; 17 17 18 - cargoHash = "sha256-tgw1R1UmXAHcrQFsY4i4efGCXQW3m0PVYdFSK2q+NUk="; 18 + cargoHash = "sha256-Ncyj5s4EfbKsFGV29FDViK35nKOAZM+DODzIVRCpbuQ="; 19 19 20 20 meta = { 21 21 description = "Command line tool to view objects (json/yaml/toml) in TUI tree widget";
+1 -1
pkgs/by-name/pa/papertrail/Gemfile.lock
··· 14 14 papertrail 15 15 16 16 BUNDLED WITH 17 - 2.5.16 17 + 2.6.9
+12 -14
pkgs/by-name/pa/papertrail/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 bundlerEnv, 5 + makeWrapper, 5 6 ruby, 6 7 bundlerUpdateScript, 7 8 testers, 8 9 papertrail, 9 10 }: 11 + stdenv.mkDerivation rec { 12 + pname = "papertrail"; 13 + version = (import ./gemset.nix).papertrail.version; 10 14 11 - let 12 - papertrail-env = bundlerEnv { 13 - name = "papertrail-env"; 14 - inherit ruby; 15 + gems = bundlerEnv { 16 + name = "papertrail"; 15 17 gemfile = ./Gemfile; 16 18 lockfile = ./Gemfile.lock; 17 19 gemset = ./gemset.nix; 18 20 }; 19 - in 20 - stdenv.mkDerivation { 21 - pname = "papertrail"; 22 - version = (import ./gemset.nix).papertrail.version; 23 21 24 22 dontUnpack = true; 23 + nativeBuildInputs = [ makeWrapper ]; 24 + buildInputs = [ gems ]; 25 25 26 26 installPhase = '' 27 27 mkdir -p $out/bin 28 - ln -s ${papertrail-env}/bin/papertrail $out/bin/papertrail 28 + makeWrapper ${gems}/bin/papertrail $out/bin/papertrail 29 29 ''; 30 30 31 31 passthru.updateScript = bundlerUpdateScript "papertrail"; 32 32 33 - passthru.tests.version = testers.testVersion { package = papertrail; }; 34 - 35 - meta = with lib; { 33 + meta = { 36 34 description = "Command-line client for Papertrail log management service"; 37 35 mainProgram = "papertrail"; 38 36 homepage = "https://github.com/papertrail/papertrail-cli/"; 39 - license = licenses.mit; 40 - maintainers = with maintainers; [ nicknovitski ]; 37 + license = lib.licenses.mit; 38 + maintainers = with lib.maintainers; [ nicknovitski ]; 41 39 platforms = ruby.meta.platforms; 42 40 }; 43 41 }
+10 -10
pkgs/by-name/qq/qq/sources.nix
··· 1 1 # Generated by ./update.sh - do not update manually! 2 - # Last updated: 2025-07-25 2 + # Last updated: 2025-08-20 3 3 { fetchurl }: 4 4 let 5 5 any-darwin = { 6 - version = "6.9.77-2025-07-24"; 6 + version = "6.9.79-2025-08-20"; 7 7 src = fetchurl { 8 - url = "https://dldir1v6.qq.com/qqfile/qq/QQNT/Mac/QQ_6.9.77_250724_01.dmg"; 9 - hash = "sha256-ZHpFH5PPDaVtbEZsb+1fyoscWuPYedTrIaoqhnsXRlc="; 8 + url = "https://dldir1v6.qq.com/qqfile/qq/QQNT/Mac/QQ_6.9.79_250820_01.dmg"; 9 + hash = "sha256-m8COj+kn9ify4D4FUpNXL31uO4j4DKqCQhZnoo5umTE="; 10 10 }; 11 11 }; 12 12 in ··· 14 14 aarch64-darwin = any-darwin; 15 15 x86_64-darwin = any-darwin; 16 16 aarch64-linux = { 17 - version = "3.2.18-2025-07-24"; 17 + version = "3.2.19-2025-08-20"; 18 18 src = fetchurl { 19 - url = "https://dldir1v6.qq.com/qqfile/qq/QQNT/Linux/QQ_3.2.18_250724_arm64_01.deb"; 20 - hash = "sha256-j+ouSBfryrRXQbyC4ZDyrKPLqJVw67tGjlHdKel5Br4="; 19 + url = "https://dldir1v6.qq.com/qqfile/qq/QQNT/Linux/QQ_3.2.19_250820_arm64_01.deb"; 20 + hash = "sha256-rHgN0T9lcoAucwR3B2U8so/dAUfB92dQYc0TncTHPaM="; 21 21 }; 22 22 }; 23 23 x86_64-linux = { 24 - version = "3.2.18-2025-07-24"; 24 + version = "3.2.19-2025-08-20"; 25 25 src = fetchurl { 26 - url = "https://dldir1v6.qq.com/qqfile/qq/QQNT/Linux/QQ_3.2.18_250724_amd64_01.deb"; 27 - hash = "sha256-HHFUXAv6oWsipBYECLNFJG8OMQ7fxjruA210w/oFFok="; 26 + url = "https://dldir1v6.qq.com/qqfile/qq/QQNT/Linux/QQ_3.2.19_250820_amd64_01.deb"; 27 + hash = "sha256-4Y0GSWwFkqYX5ezE2Jk/tZIwsBHg88ZxJghzB+kXTds="; 28 28 }; 29 29 }; 30 30 }
+4 -4
pkgs/by-name/ra/raycast/package.nix
··· 12 12 13 13 stdenvNoCC.mkDerivation (finalAttrs: { 14 14 pname = "raycast"; 15 - version = "1.102.4"; 15 + version = "1.102.5"; 16 16 17 17 src = 18 18 { 19 19 aarch64-darwin = fetchurl { 20 20 name = "Raycast.dmg"; 21 21 url = "https://releases.raycast.com/releases/${finalAttrs.version}/download?build=arm"; 22 - hash = "sha256-VYwvU9DWowE+34ZBAsqIjGJGnHVfdVWGl4baL5boN8M="; 22 + hash = "sha256-Fh46CsAeE9TpqVlYCc6s5ytO5dm+xoDJ7NawML4D9R4="; 23 23 }; 24 24 x86_64-darwin = fetchurl { 25 25 name = "Raycast.dmg"; 26 26 url = "https://releases.raycast.com/releases/${finalAttrs.version}/download?build=x86_64"; 27 - hash = "sha256-LMkHWs/H5ESdp+JaUG0rlI9UVx29WYcU44t0fBAWg8A="; 27 + hash = "sha256-tBFnk5R9BqfL+MH1tBY76al7/jVzqpfI7yIGADQh6wQ="; 28 28 }; 29 29 } 30 30 .${stdenvNoCC.system} or (throw "raycast: ${stdenvNoCC.system} is unsupported."); ··· 80 80 maintainers = with lib.maintainers; [ 81 81 lovesegfault 82 82 stepbrobd 83 - donteatoreo 83 + FlameFlag 84 84 jakecleary 85 85 ]; 86 86 platforms = [
+3 -3
pkgs/by-name/re/renovate/package.nix
··· 15 15 16 16 stdenv.mkDerivation (finalAttrs: { 17 17 pname = "renovate"; 18 - version = "41.49.0"; 18 + version = "41.81.0"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "renovatebot"; 22 22 repo = "renovate"; 23 23 tag = finalAttrs.version; 24 - hash = "sha256-n0Zfut9+nIWRvUU2po4YZVMp4bkJs9ExfNCqShUSVYc="; 24 + hash = "sha256-iFcq8TbUXcEf0q/ifAC4dXJkG7pYvTM78FHPZucky8g="; 25 25 }; 26 26 27 27 postPatch = '' ··· 41 41 pnpmDeps = pnpm_10.fetchDeps { 42 42 inherit (finalAttrs) pname version src; 43 43 fetcherVersion = 2; 44 - hash = "sha256-J0cAaM4DO3dsRmgx8vg8pZQgq78o3U3kKBrnRDuhJmk="; 44 + hash = "sha256-HQEN+gBvI9s5WEXrH/3WTMSCg0ERykeKit8z8BBUe6w="; 45 45 }; 46 46 47 47 env.COREPACK_ENABLE_STRICT = 0;
+20
pkgs/by-name/ru/ruri/cmake-install.patch
··· 1 + --- a/CMakeLists.txt 2 + +++ b/CMakeLists.txt 3 + @@ -201,7 +201,7 @@ 4 + set(CMAKE_POSITION_INDEPENDENT_CODE ON) 5 + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC") 6 + add_library(ruri SHARED ${SOURCES}) 7 + - install (TARGETS ruri DESTINATION /usr/lib/) 8 + + install (TARGETS ruri) 9 + else () 10 + # add the executable 11 + set(CMAKE_POSITION_INDEPENDENT_CODE OFF) 12 + @@ -215,7 +215,7 @@ 13 + VERBATIM 14 + ) 15 + endif() 16 + - install (TARGETS ruri DESTINATION /usr/bin/) 17 + + install (TARGETS ruri) 18 + endif() 19 + 20 + add_custom_target(
+13 -11
pkgs/by-name/ru/ruri/package.nix
··· 4 4 fetchFromGitHub, 5 5 libcap, 6 6 libseccomp, 7 + cmake, 7 8 }: 8 9 9 10 stdenv.mkDerivation (finalAttrs: { 10 11 pname = "ruri"; 11 - version = "3.8"; 12 + version = "3.9.1"; 12 13 13 14 src = fetchFromGitHub { 14 - owner = "Moe-hacker"; 15 + owner = "RuriOSS"; 15 16 repo = "ruri"; 16 - rev = "v${finalAttrs.version}"; 17 - fetchSubmodules = false; 18 - sha256 = "sha256-gf+WJPGeLbMntBk8ryTSsV9L4J3N4Goh9eWBIBj5FA4="; 17 + tag = "v${finalAttrs.version}"; 18 + hash = "sha256-stM4hSLdSqmYUZ/XBD3Y1GylrrGRISlcy8LN07HREpQ="; 19 19 }; 20 20 21 + patches = [ 22 + ./cmake-install.patch 23 + ]; 24 + 21 25 buildInputs = [ 22 26 libcap 23 27 libseccomp 24 28 ]; 25 29 26 - installPhase = '' 27 - runHook preInstall 28 - install -Dm755 ruri $out/bin/ruri 29 - runHook postInstall 30 - ''; 30 + nativeBuildInputs = [ 31 + cmake 32 + ]; 31 33 32 34 meta = { 33 35 description = "Self-contained Linux container implementation"; 34 36 homepage = "https://wiki.crack.moe/ruri"; 35 37 downloadPage = "https://github.com/Moe-hacker/ruri"; 36 - changelog = "https://github.com/Moe-hacker/ruri/releases/tag/v${finalAttrs.version}"; 38 + changelog = "https://github.com/Moe-hacker/ruri/releases/tag/${finalAttrs.src.tag}"; 37 39 mainProgram = "ruri"; 38 40 license = lib.licenses.mit; 39 41 platforms = lib.platforms.linux;
+11 -4
pkgs/by-name/ry/ryubing/package.nix
··· 26 26 udev, 27 27 SDL2, 28 28 SDL2_mixer, 29 + gtk3, 30 + wrapGAppsHook3, 29 31 }: 30 32 31 33 buildDotnetModule rec { ··· 40 42 hash = "sha256-6BCDFd0nU96OgI5lqf4fbyNkG4PS5P4raHVbvBAhB5A="; 41 43 }; 42 44 43 - nativeBuildInputs = lib.optional stdenv.hostPlatform.isDarwin [ 44 - cctools 45 - darwin.sigtool 46 - ]; 45 + nativeBuildInputs = 46 + lib.optional stdenv.hostPlatform.isLinux [ 47 + wrapGAppsHook3 48 + ] 49 + ++ lib.optional stdenv.hostPlatform.isDarwin [ 50 + cctools 51 + darwin.sigtool 52 + ]; 47 53 48 54 enableParallelBuilding = false; 49 55 ··· 70 76 libXext 71 77 libXi 72 78 libXrandr 79 + gtk3 73 80 74 81 # Headless executable 75 82 libGL
+2 -2
pkgs/by-name/sc/scalingo/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "scalingo"; 9 - version = "1.37.0"; 9 + version = "1.38.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = pname; 13 13 repo = "cli"; 14 14 rev = version; 15 - hash = "sha256-jF9llYFyw3lPyC5tq1TRpSCAbCl5yGGozHS3jQkXLFo="; 15 + hash = "sha256-+f4bDn5JAjSGjtdwdZjZoKg7lvvIRUug93vdZbb0tJE="; 16 16 }; 17 17 18 18 vendorHash = null;
+1 -1
pkgs/by-name/sh/shottr/package.nix
··· 58 58 homepage = "https://shottr.cc/"; 59 59 license = lib.licenses.unfree; 60 60 mainProgram = "shottr"; 61 - maintainers = with lib.maintainers; [ donteatoreo ]; 61 + maintainers = with lib.maintainers; [ FlameFlag ]; 62 62 platforms = lib.platforms.darwin; 63 63 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 64 64 };
+3 -3
pkgs/by-name/so/souffle/includes.patch
··· 1 1 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt 2 - index 946a1f8..bc60339 100644 2 + index c2ce37bf2..ee15e47f7 100644 3 3 --- a/src/CMakeLists.txt 4 4 +++ b/src/CMakeLists.txt 5 - @@ -428,7 +428,7 @@ set(SOUFFLE_COMPILED_RELEASE_CXX_FLAGS ${CMAKE_CXX_FLAGS_RELEASE}) 5 + @@ -448,7 +448,7 @@ set(SOUFFLE_COMPILED_RELEASE_CXX_FLAGS ${CMAKE_CXX_FLAGS_RELEASE}) 6 6 set(SOUFFLE_COMPILED_DEBUG_CXX_FLAGS ${CMAKE_CXX_FLAGS_DEBUG}) 7 7 get_target_property(SOUFFLE_COMPILED_DEFS compiled COMPILE_DEFINITIONS) 8 8 get_target_property(SOUFFLE_COMPILED_OPTS compiled COMPILE_OPTIONS) 9 9 -get_target_property(SOUFFLE_COMPILED_INCS compiled INCLUDE_DIRECTORIES) 10 10 +set(SOUFFLE_COMPILED_INCS PLACEHOLDER_FOR_INCLUDES_THAT_ARE_SET_BY_NIXPKGS) 11 + get_property(SOUFFLE_COMPILED_LINK_OPTS TARGET compiled PROPERTY LINK_OPTIONS) 11 12 12 13 set(SOUFFLE_COMPILED_LIBS "") 13 - set(SOUFFLE_COMPILED_RPATHS "")
+8 -2
pkgs/by-name/so/souffle/package.nix
··· 17 17 makeWrapper, 18 18 python3, 19 19 callPackage, 20 + fetchpatch, 20 21 }: 21 22 22 23 let ··· 27 28 in 28 29 stdenv.mkDerivation rec { 29 30 pname = "souffle"; 30 - version = "2.4.1"; 31 + version = "2.5"; 31 32 32 33 src = fetchFromGitHub { 33 34 owner = "souffle-lang"; 34 35 repo = "souffle"; 35 36 rev = version; 36 - sha256 = "sha256-U3/1iNOLFzuXiBsVDAc5AXnK4F982Uifp18jjFNUv2o="; 37 + sha256 = "sha256-Umfeb1pGAeK5K3QDRD/labC6IJLsPPJ73ycsAV4yPNM="; 37 38 }; 38 39 39 40 patches = [ 40 41 ./threads.patch 41 42 ./includes.patch 43 + (fetchpatch { 44 + name = "replace-copy-assignment.patch"; 45 + url = "https://github.com/souffle-lang/souffle/commit/73ebe789ec21772a0c5558639606354bfc3bcbd1.patch"; 46 + hash = "sha256-L9SK3Dh2cRwxKfEckUSiGGTDsWIZ5B8hoYYcslJpZl4="; 47 + }) 42 48 ]; 43 49 44 50 hardeningDisable = lib.optionals stdenv.hostPlatform.isDarwin [ "strictoverflow" ];
+1 -1
pkgs/by-name/so/soundsource/package.nix
··· 33 33 license = lib.licenses.unfree; 34 34 maintainers = with lib.maintainers; [ 35 35 emilytrau 36 - donteatoreo 36 + FlameFlag 37 37 ]; 38 38 platforms = lib.platforms.darwin; 39 39 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
+1 -1
pkgs/by-name/st/stats/package.nix
··· 35 35 homepage = "https://github.com/exelban/stats"; 36 36 license = lib.licenses.mit; 37 37 maintainers = with lib.maintainers; [ 38 - donteatoreo 38 + FlameFlag 39 39 emilytrau 40 40 ]; 41 41 platforms = lib.platforms.darwin;
pkgs/by-name/te/teleport/0001-fix-add-nix-path-to-exec-env.patch pkgs/build-support/teleport/0001-fix-add-nix-path-to-exec-env.patch
pkgs/by-name/te/teleport/disable-wasm-opt-for-ironrdp.patch pkgs/build-support/teleport/disable-wasm-opt-for-ironrdp.patch
+2 -209
pkgs/by-name/te/teleport/package.nix
··· 1 1 { 2 - lib, 3 - buildGo123Module, 4 - rustPlatform, 5 - fetchFromGitHub, 6 - fetchpatch, 7 - makeWrapper, 8 - binaryen, 9 - cargo, 10 - libfido2, 11 - nodejs, 12 - openssl, 13 - pkg-config, 14 - pnpm_10, 15 - rustc, 16 - stdenv, 17 - xdg-utils, 18 - wasm-bindgen-cli_0_2_95, 19 - wasm-pack, 20 - nixosTests, 21 - 22 - withRdpClient ? true, 23 - 24 - version ? "17.5.4", 25 - hash ? "sha256-ojRIyPTrSG3/xuqdaUNrN4s5HP3E8pvzjG8h+qFEYrc=", 26 - vendorHash ? "sha256-IHXwCp1MdcEKJhIs9DNf77Vd93Ai2as7ROlh6AJT9+Q=", 27 - extPatches ? [ ], 28 - cargoHash ? "sha256-qz8gkooQTuBlPWC4lHtvBQpKkd+nEZ0Hl7AVg9JkPqs=", 29 - pnpmHash ? "sha256-YwftGEQTEI8NvFTFLMJHhYkvaIIP9+bskCQCp5xuEtY=", 2 + teleport_17, 30 3 }: 31 - let 32 - # This repo has a private submodule "e" which fetchgit cannot handle without failing. 33 - src = fetchFromGitHub { 34 - owner = "gravitational"; 35 - repo = "teleport"; 36 - rev = "v${version}"; 37 - inherit hash; 38 - }; 39 - pname = "teleport"; 40 - inherit version; 41 4 42 - rdpClient = rustPlatform.buildRustPackage (finalAttrs: { 43 - pname = "teleport-rdpclient"; 44 - 45 - inherit cargoHash; 46 - inherit version src; 47 - 48 - buildAndTestSubdir = "lib/srv/desktop/rdp/rdpclient"; 49 - 50 - buildInputs = [ openssl ]; 51 - nativeBuildInputs = [ pkg-config ]; 52 - 53 - # https://github.com/NixOS/nixpkgs/issues/161570 , 54 - # buildRustPackage sets strictDeps = true; 55 - nativeCheckInputs = finalAttrs.buildInputs; 56 - 57 - OPENSSL_NO_VENDOR = "1"; 58 - 59 - postInstall = '' 60 - mkdir -p $out/include 61 - cp ${finalAttrs.buildAndTestSubdir}/librdprs.h $out/include/ 62 - ''; 63 - }); 64 - 65 - webassets = stdenv.mkDerivation { 66 - pname = "teleport-webassets"; 67 - inherit src version; 68 - 69 - cargoDeps = rustPlatform.fetchCargoVendor { 70 - inherit src; 71 - hash = cargoHash; 72 - }; 73 - 74 - pnpmDeps = pnpm_10.fetchDeps { 75 - inherit src pname version; 76 - fetcherVersion = 1; 77 - hash = pnpmHash; 78 - }; 79 - 80 - nativeBuildInputs = [ 81 - binaryen 82 - cargo 83 - nodejs 84 - pnpm_10.configHook 85 - rustc 86 - rustc.llvmPackages.lld 87 - rustPlatform.cargoSetupHook 88 - wasm-bindgen-cli_0_2_95 89 - wasm-pack 90 - ]; 91 - 92 - patches = [ 93 - ./disable-wasm-opt-for-ironrdp.patch 94 - ]; 95 - 96 - configurePhase = '' 97 - runHook preConfigure 98 - 99 - export HOME=$(mktemp -d) 100 - 101 - runHook postConfigure 102 - ''; 103 - 104 - buildPhase = '' 105 - PATH=$PATH:$PWD/node_modules/.bin 106 - 107 - pushd web/packages 108 - pushd shared 109 - # https://github.com/gravitational/teleport/blob/6b91fe5bbb9e87db4c63d19f94ed4f7d0f9eba43/web/packages/teleport/README.md?plain=1#L18-L20 110 - RUST_MIN_STACK=16777216 wasm-pack build ./libs/ironrdp --target web --mode no-install 111 - popd 112 - pushd teleport 113 - vite build 114 - popd 115 - popd 116 - ''; 117 - 118 - installPhase = '' 119 - mkdir -p $out 120 - cp -R webassets/. $out 121 - ''; 122 - }; 123 - in 124 - buildGo123Module (finalAttrs: { 125 - inherit pname src version; 126 - inherit vendorHash; 127 - proxyVendor = true; 128 - 129 - subPackages = [ 130 - "tool/tbot" 131 - "tool/tctl" 132 - "tool/teleport" 133 - "tool/tsh" 134 - ]; 135 - tags = [ 136 - "libfido2" 137 - "webassets_embed" 138 - ] 139 - ++ lib.optional withRdpClient "desktop_access_rdp"; 140 - 141 - buildInputs = [ 142 - openssl 143 - libfido2 144 - ]; 145 - nativeBuildInputs = [ 146 - makeWrapper 147 - pkg-config 148 - ]; 149 - 150 - patches = extPatches ++ [ 151 - ./0001-fix-add-nix-path-to-exec-env.patch 152 - ./rdpclient.patch 153 - ./tsh.patch 154 - ]; 155 - 156 - # Reduce closure size for client machines 157 - outputs = [ 158 - "out" 159 - "client" 160 - ]; 161 - 162 - preBuild = '' 163 - cp -r ${webassets} webassets 164 - '' 165 - + lib.optionalString withRdpClient '' 166 - ln -s ${rdpClient}/lib/* lib/ 167 - ln -s ${rdpClient}/include/* lib/srv/desktop/rdp/rdpclient/ 168 - ''; 169 - 170 - # Multiple tests fail in the build sandbox 171 - # due to trying to spawn nixbld's shell (/noshell), etc. 172 - doCheck = false; 173 - 174 - postInstall = '' 175 - mkdir -p $client/bin 176 - mv {$out,$client}/bin/tsh 177 - # make xdg-open overrideable at runtime 178 - wrapProgram $client/bin/tsh --suffix PATH : ${lib.makeBinPath [ xdg-utils ]} 179 - ln -s {$client,$out}/bin/tsh 180 - ''; 181 - 182 - doInstallCheck = true; 183 - 184 - installCheckPhase = '' 185 - $out/bin/tsh version | grep ${version} > /dev/null 186 - $client/bin/tsh version | grep ${version} > /dev/null 187 - $out/bin/tbot version | grep ${version} > /dev/null 188 - $out/bin/tctl version | grep ${version} > /dev/null 189 - $out/bin/teleport version | grep ${version} > /dev/null 190 - ''; 191 - 192 - passthru.tests = nixosTests.teleport; 193 - 194 - meta = { 195 - description = "Certificate authority and access plane for SSH, Kubernetes, web applications, and databases"; 196 - homepage = "https://goteleport.com/"; 197 - license = lib.licenses.agpl3Plus; 198 - maintainers = with lib.maintainers; [ 199 - arianvp 200 - justinas 201 - sigma 202 - tomberek 203 - freezeboy 204 - techknowlogick 205 - juliusfreudenberger 206 - ]; 207 - platforms = lib.platforms.unix; 208 - # go-libfido2 is broken on platforms with less than 64-bit because it defines an array 209 - # which occupies more than 31 bits of address space. 210 - broken = stdenv.hostPlatform.parsed.cpu.bits < 64; 211 - }; 212 - }) 5 + teleport_17
pkgs/by-name/te/teleport/rdpclient.patch pkgs/build-support/teleport/rdpclient.patch
pkgs/by-name/te/teleport/tsh.patch pkgs/build-support/teleport/tsh.patch
+7 -2
pkgs/by-name/te/teleport_16/package.nix
··· 1 1 { 2 - teleport, 2 + buildTeleport, 3 + buildGo123Module, 4 + wasm-bindgen-cli_0_2_95, 3 5 }: 4 - teleport.override { 6 + buildTeleport rec { 5 7 version = "16.5.13"; 6 8 hash = "sha256-X9Ujgvp+2dFCoku0tjGW4W05X8QrnExFE+H1kMhf91A="; 7 9 vendorHash = "sha256-0+7xbIONnZs7dPpfpHPmep+k4XxQE8TS/eKz4F5a3V0="; 8 10 pnpmHash = "sha256-waBzmNs20wbuoBDObVFnJjEYs3NJ/bzQksVz7ltMD7M="; 9 11 cargoHash = "sha256-04zykCcVTptEPGy35MIWG+tROKFzEepLBmn04mSbt7I="; 12 + 13 + wasm-bindgen-cli = wasm-bindgen-cli_0_2_95; 14 + buildGoModule = buildGo123Module; 10 15 }
+14 -2
pkgs/by-name/te/teleport_17/package.nix
··· 1 1 { 2 - teleport, 2 + buildTeleport, 3 + buildGo123Module, 4 + wasm-bindgen-cli_0_2_95, 3 5 }: 4 - teleport 6 + 7 + buildTeleport rec { 8 + version = "17.5.4"; 9 + hash = "sha256-ojRIyPTrSG3/xuqdaUNrN4s5HP3E8pvzjG8h+qFEYrc="; 10 + vendorHash = "sha256-IHXwCp1MdcEKJhIs9DNf77Vd93Ai2as7ROlh6AJT9+Q="; 11 + cargoHash = "sha256-qz8gkooQTuBlPWC4lHtvBQpKkd+nEZ0Hl7AVg9JkPqs="; 12 + pnpmHash = "sha256-YwftGEQTEI8NvFTFLMJHhYkvaIIP9+bskCQCp5xuEtY="; 13 + 14 + wasm-bindgen-cli = wasm-bindgen-cli_0_2_95; 15 + buildGoModule = buildGo123Module; 16 + }
+16
pkgs/by-name/te/teleport_18/package.nix
··· 1 + { 2 + buildTeleport, 3 + buildGo124Module, 4 + wasm-bindgen-cli_0_2_99, 5 + }: 6 + 7 + buildTeleport rec { 8 + version = "18.1.1"; 9 + hash = "sha256-xhf6WwgR3VwjtvFo0/b9A0RcyY7dklPfPUakludUmm8="; 10 + vendorHash = "sha256-63pqTI92045/V8Gf+TDKUWLV9eO4hVKOHtgWbYnAf6I="; 11 + pnpmHash = "sha256-ZuMMacsyr2rGLVDlaEwA7IbZZfGBuTRBOv4Q6XIjDek="; 12 + cargoHash = "sha256-ia4We4IfIkqz82aFMVvXdzjDXw0w+OJSPVdutfau6PA="; 13 + 14 + wasm-bindgen-cli = wasm-bindgen-cli_0_2_99; 15 + buildGoModule = buildGo124Module; 16 + }
+11 -3
pkgs/by-name/ti/titanion/package.nix
··· 4 4 fetchpatch, 5 5 fetchurl, 6 6 unzip, 7 - gdc, 7 + ldc, 8 8 libGL, 9 9 libGLU, 10 10 SDL, ··· 17 17 patchname: hash: 18 18 fetchpatch { 19 19 name = "${patchname}.patch"; 20 - url = "https://sources.debian.org/data/main/t/titanion/0.3.dfsg1-7/debian/patches/${patchname}"; 20 + url = "https://sources.debian.org/data/main/t/titanion/0.3.dfsg1-8/debian/patches/${patchname}"; 21 21 inherit hash; 22 22 }; 23 23 ··· 43 43 (debianPatch "makefile.patch" "sha256-g0jDPmc0SWXkTLhiczeTse/WGCtgMUsbyPNZzwK3U+o=") 44 44 (debianPatch "dlang_v2.patch" "sha256-tfTAAKlPFSjbfAK1EjeB3unj9tbMlNaajJ+VVSMMiYw=") 45 45 (debianPatch "gdc-8.patch" "sha256-BxkPfSEymq7TDA+yjJHaYsjtGr0Tuu1/sWLwRBAMga4=") 46 + (debianPatch "gcc12.patch" "sha256-Kqmb6hRn6lAHLJMoZ5nGCmHcqfbTUIDq5ahALI2f4a4=") 46 47 ]; 47 48 48 49 postPatch = '' ··· 52 53 substituteInPlace $f \ 53 54 --replace "/usr/" "$out/" 54 55 done 56 + # GDC → DMD/LDC flag compatibility 57 + substituteInPlace Makefile \ 58 + --replace-fail "-o " -of= \ 59 + --replace-fail -Wdeprecated "" \ 60 + --replace-fail -l -L-l 55 61 ''; 56 62 57 63 nativeBuildInputs = [ 58 64 unzip 59 - gdc 65 + ldc 60 66 ]; 61 67 62 68 buildInputs = [ ··· 66 72 SDL_mixer 67 73 bulletml 68 74 ]; 75 + 76 + makeFlags = [ "GDC=ldc2" ]; 69 77 70 78 installPhase = '' 71 79 runHook preInstall
+6 -5
pkgs/by-name/to/tor-browser/package.nix
··· 111 111 ++ lib.optionals mediaSupport [ ffmpeg ] 112 112 ); 113 113 114 - version = "14.5.5"; 114 + version = "14.5.6"; 115 115 116 116 sources = { 117 117 x86_64-linux = fetchurl { ··· 121 121 "https://tor.eff.org/dist/torbrowser/${version}/tor-browser-linux-x86_64-${version}.tar.xz" 122 122 "https://tor.calyxinstitute.org/dist/torbrowser/${version}/tor-browser-linux-x86_64-${version}.tar.xz" 123 123 ]; 124 - hash = "sha256-rJGhgSSktaeH7KSOtf1KjJbrl/m4sdz+9UdjUN9ovz0="; 124 + hash = "sha256-GRLCWCCPixclqdk4UijfHqyDAJjx4eiMM7IwePSCZMI="; 125 125 }; 126 126 127 127 i686-linux = fetchurl { ··· 131 131 "https://tor.eff.org/dist/torbrowser/${version}/tor-browser-linux-i686-${version}.tar.xz" 132 132 "https://tor.calyxinstitute.org/dist/torbrowser/${version}/tor-browser-linux-i686-${version}.tar.xz" 133 133 ]; 134 - hash = "sha256-mvlx817/vLi4QyA0aSPyAuWSBfMLjfkFG9Zse9rmSzw="; 134 + hash = "sha256-dhRPuMwtxzgA8DJdwct9oNjEOftFSS9Z9wP908wcwIw="; 135 135 }; 136 136 }; 137 137 ··· 364 364 changelog = "https://gitweb.torproject.org/builders/tor-browser-build.git/plain/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt?h=maint-${version}"; 365 365 platforms = lib.attrNames sources; 366 366 maintainers = with lib.maintainers; [ 367 + c4patino 367 368 felschr 369 + hax404 370 + joachifm 368 371 panicgh 369 - joachifm 370 - hax404 371 372 ]; 372 373 # MPL2.0+, GPL+, &c. While it's not entirely clear whether 373 374 # the compound is "libre" in a strict sense (some components place certain
+11 -3
pkgs/by-name/to/torus-trooper/package.nix
··· 4 4 fetchpatch, 5 5 fetchurl, 6 6 unzip, 7 - gdc, 7 + ldc, 8 8 libGL, 9 9 libGLU, 10 10 SDL, ··· 17 17 patchname: hash: 18 18 fetchpatch { 19 19 name = "${patchname}.patch"; 20 - url = "https://sources.debian.org/data/main/t/torus-trooper/0.22.dfsg1-12/debian/patches/${patchname}.patch"; 20 + url = "https://sources.debian.org/data/main/t/torus-trooper/0.22.dfsg1-14/debian/patches/${patchname}.patch"; 21 21 sha256 = hash; 22 22 }; 23 23 ··· 48 48 (debianPatch "libbulletml0v5-segfault" "0pad2daz60hswkhkdpssxaqc9p9ca0sw1nraqzr453x0zdwwq0hn") 49 49 (debianPatch "std.math.fabs" "18xnnqlj20bxv2h9fa8dn4rmxwi3k6y3g50kwvh8i8p3b4hgag3r") 50 50 (debianPatch "gdc-8" "10z702y75c48hjcnvv8m7f3ka52cj3r3jqafdbby85nb0p2lbssx") 51 + (debianPatch "gcc12" "sha256-8zNwhteRW3xWFsdoTOLIPPZn2cqCE1mS7UDYP1DzSQQ=") 51 52 ]; 52 53 53 54 postPatch = '' ··· 55 56 substituteInPlace $f \ 56 57 --replace "/usr/" "$out/" 57 58 done 59 + # GDC → DMD/LDC flag compatibility 60 + substituteInPlace Makefile \ 61 + --replace-fail "-o " -of= \ 62 + --replace-fail -Wno-deprecated "" \ 63 + --replace-fail -l -L-l 58 64 ''; 59 65 60 66 nativeBuildInputs = [ 61 67 unzip 62 - gdc 68 + ldc 63 69 ]; 64 70 65 71 buildInputs = [ ··· 69 75 SDL_mixer 70 76 bulletml 71 77 ]; 78 + 79 + makeFlags = [ "GDC=ldc2" ]; 72 80 73 81 installPhase = '' 74 82 install -Dm755 torus-trooper $out/bin/torus-trooper
+11 -3
pkgs/by-name/tu/tumiki-fighters/package.nix
··· 4 4 fetchpatch, 5 5 fetchurl, 6 6 unzip, 7 - gdc, 7 + ldc, 8 8 libGL, 9 9 SDL, 10 10 SDL_mixer, ··· 16 16 patchname: hash: 17 17 fetchpatch { 18 18 name = "${patchname}.patch"; 19 - url = "https://sources.debian.org/data/main/t/tumiki-fighters/0.2.dfsg1-9/debian/patches/${patchname}.patch"; 19 + url = "https://sources.debian.org/data/main/t/tumiki-fighters/0.2.dfsg1-10/debian/patches/${patchname}.patch"; 20 20 sha256 = hash; 21 21 }; 22 22 ··· 42 42 (debianPatch "window-resizing" "1dm79d0yisa8zs5fr89y3wq2kzd3khcaxs0la8lhncvkqbd4smx8") 43 43 (debianPatch "dlang_v2" "1isnvbl3bjnpyphji8k3fl0yd1z4869h0lai143vpwgj6518lpg4") 44 44 (debianPatch "gdc-8" "1md0zwmv50jnak5g9d93bglv9v4z41blinjii6kv3vmgjnajapzj") 45 + (debianPatch "gcc12" "sha256-3ZFsI2Q4zCT591qCOu2iT2edE52DfO2pUySnMMBhNIQ=") 45 46 ]; 46 47 47 48 postPatch = '' ··· 57 58 substituteInPlace $f \ 58 59 --replace "/usr/" "$out/" 59 60 done 61 + # GDC → DMD/LDC flag compatibility 62 + substituteInPlace Makefile \ 63 + --replace-fail "-o " -of= \ 64 + --replace-fail -Wno-deprecated "" \ 65 + --replace-fail -l -L-l 60 66 ''; 61 67 62 68 nativeBuildInputs = [ 63 69 unzip 64 - gdc 70 + ldc 65 71 ]; 66 72 67 73 buildInputs = [ ··· 70 76 SDL_mixer 71 77 bulletml 72 78 ]; 79 + 80 + makeFlags = [ "GDC=ldc2" ]; 73 81 74 82 installPhase = '' 75 83 install -Dm755 tumiki-fighters $out/bin/tumiki-fighters
+1 -1
pkgs/by-name/ve/vencord/package.nix
··· 81 81 homepage = "https://github.com/Vendicated/Vencord"; 82 82 license = lib.licenses.gpl3Only; 83 83 maintainers = with lib.maintainers; [ 84 - donteatoreo 84 + FlameFlag 85 85 FlafyDev 86 86 Gliczy 87 87 NotAShelf
+8 -9
pkgs/by-name/vi/vivaldi-ffmpeg-codecs/package.nix
··· 11 11 let 12 12 sources = { 13 13 x86_64-linux = fetchurl { 14 - url = "https://api.snapcraft.io/api/v1/snaps/download/XXzVIXswXKHqlUATPqGCj2w2l7BxosS8_73.snap"; 15 - hash = "sha256-YsAYQ/fKlrvu7IbIxLO0oVhWOtZZzUmA00lrU+z/0+s="; 14 + url = "https://api.snapcraft.io/api/v1/snaps/download/XXzVIXswXKHqlUATPqGCj2w2l7BxosS8_85.snap"; 15 + hash = "sha256-77lcQFFP0eXuaxN2UdsEjFXJt22L6Mp6Fe3ZYPpKVwM="; 16 16 }; 17 17 aarch64-linux = fetchurl { 18 - url = "https://api.snapcraft.io/api/v1/snaps/download/XXzVIXswXKHqlUATPqGCj2w2l7BxosS8_74.snap"; 19 - hash = "sha256-zwCbaFeVmeHQLEp7nmD8VlEjSY9PqSVt6CdW4wPtw9o="; 18 + url = "https://api.snapcraft.io/api/v1/snaps/download/XXzVIXswXKHqlUATPqGCj2w2l7BxosS8_85.snap"; 19 + hash = "sha256-77lcQFFP0eXuaxN2UdsEjFXJt22L6Mp6Fe3ZYPpKVwM="; 20 20 }; 21 21 }; 22 22 in 23 - stdenv.mkDerivation rec { 24 - 23 + stdenv.mkDerivation (finalAttrs: { 25 24 pname = "chromium-codecs-ffmpeg-extra"; 26 25 27 - version = "119293"; 26 + version = "120726"; 28 27 29 28 src = sources."${stdenv.hostPlatform.system}"; 30 29 ··· 35 34 ''; 36 35 37 36 installPhase = '' 38 - install -vD chromium-ffmpeg-${version}/chromium-ffmpeg/libffmpeg.so $out/lib/libffmpeg.so 37 + install -vD chromium-ffmpeg-${finalAttrs.version}/chromium-ffmpeg/libffmpeg.so $out/lib/libffmpeg.so 39 38 ''; 40 39 41 40 passthru = { ··· 59 58 "aarch64-linux" 60 59 ]; 61 60 }; 62 - } 61 + })
+3 -3
pkgs/by-name/vi/vivaldi-ffmpeg-codecs/update.sh
··· 1 1 #!/usr/bin/env nix-shell 2 - #!nix-shell -i bash -p common-updater-scripts coreutils grep jq squashfsTools 2 + #!nix-shell -i bash -p common-updater-scripts coreutils gnugrep jq squashfsTools 3 3 4 4 set -eu -o pipefail 5 5 ··· 18 18 local url=$(echo $selectedRelease | jq -r '.download.url') 19 19 source="$(nix-prefetch-url "$url")" 20 20 hash=$(nix-hash --to-sri --type sha256 "$source") 21 - update-source-version vivaldi-ffmpeg-codecs "$version" "$hash" "$url" --ignore-same-version --system=$platform --source-key="sources.$platform" 21 + update-source-version vivaldi-ffmpeg-codecs "$version" "$hash" "$url" --ignore-same-version --system=$platform --source-key="sources.$platform" --file "package.nix" 22 22 } 23 23 24 24 x86Release="$(echo $STABLE_RELEASES | jq 'select(.channel.architecture=="amd64")')" ··· 26 26 arm64Release="$(echo $STABLE_RELEASES | jq -r 'select(.channel.architecture=="arm64")')" 27 27 arm64CodecVersion=$(max_version "$arm64Release") 28 28 29 - currentVersion=$(nix-instantiate --eval -E "with import ./. {}; vivaldi-ffmpeg-codecs.version or (lib.getVersion vivaldi-ffmpeg-codecs)" | tr -d '"') 29 + currentVersion=$(grep 'version =' ./package.nix | cut -d '"' -f 2) 30 30 31 31 if [[ "$currentVersion" == "$x86CodecVersion" ]]; then 32 32 exit 0
+1 -1
pkgs/by-name/wa/warp-terminal/package.nix
··· 113 113 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 114 114 maintainers = with maintainers; [ 115 115 imadnyc 116 - donteatoreo 116 + FlameFlag 117 117 johnrtitor 118 118 ]; 119 119 platforms = platforms.darwin ++ [
+19
pkgs/by-name/wa/wasm-bindgen-cli_0_2_99/package.nix
··· 1 + { 2 + buildWasmBindgenCli, 3 + fetchCrate, 4 + rustPlatform, 5 + }: 6 + 7 + buildWasmBindgenCli rec { 8 + src = fetchCrate { 9 + pname = "wasm-bindgen-cli"; 10 + version = "0.2.99"; 11 + hash = "sha256-1AN2E9t/lZhbXdVznhTcniy+7ZzlaEp/gwLEAucs6EA="; 12 + }; 13 + 14 + cargoDeps = rustPlatform.fetchCargoVendor { 15 + inherit src; 16 + inherit (src) pname version; 17 + hash = "sha256-HGcqXb2vt6nAvPXBZOJn7nogjIoAgXno2OJBE1trHpc="; 18 + }; 19 + }
+1 -1
pkgs/by-name/wi/win-disk-writer/package.nix
··· 29 29 description = "Windows Bootable USB creator for macOS"; 30 30 homepage = "https://github.com/TechUnRestricted/WinDiskWriter"; 31 31 license = lib.licenses.gpl3; 32 - maintainers = with lib.maintainers; [ donteatoreo ]; 32 + maintainers = with lib.maintainers; [ FlameFlag ]; 33 33 platforms = lib.platforms.darwin; 34 34 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 35 35 };
+17 -4
pkgs/by-name/wi/wivrn/package.nix
··· 4 4 stdenv, 5 5 fetchFromGitHub, 6 6 fetchFromGitLab, 7 + fetchpatch, 7 8 applyPatches, 8 9 autoAddDriverRunpath, 9 10 avahi, ··· 21 22 glslang, 22 23 harfbuzz, 23 24 kdePackages, 25 + libarchive, 24 26 libdrm, 25 27 libGL, 26 28 libnotify, ··· 51 53 }: 52 54 stdenv.mkDerivation (finalAttrs: { 53 55 pname = "wivrn"; 54 - version = "25.6.1"; 56 + version = "25.8"; 55 57 56 58 src = fetchFromGitHub { 57 59 owner = "wivrn"; 58 60 repo = "wivrn"; 59 61 rev = "v${finalAttrs.version}"; 60 - hash = "sha256-DqgayLXI+RPIb8tLzJoHi+Z12px4pdzU50C0UBSa2u4="; 62 + hash = "sha256-x9nZyLk0A9eiZ9V700lc4To1cVJ875ZYR0GeqQ7qNpg="; 61 63 }; 62 64 63 65 monado = applyPatches { ··· 65 67 domain = "gitlab.freedesktop.org"; 66 68 owner = "monado"; 67 69 repo = "monado"; 68 - rev = "bb9bcee2a3be75592de819d9e3fb2c8ed27bb7dc"; 69 - hash = "sha256-+PiWxnvMXaSFc+67r17GBRXo7kbjikSElawNMJCydrk="; 70 + rev = "5c137fe28b232fe460f9b03defa7749adc32ee48"; 71 + hash = "sha256-4P/ejRAitrYn8hXZPaDOcx27utfm+aVLjtqL6JxZYAg="; 70 72 }; 71 73 72 74 postPatch = '' ··· 88 90 fi 89 91 ''; 90 92 93 + patches = [ 94 + # Needed to allow WiVRn in-stream GUI to launch Steam games 95 + (fetchpatch { 96 + name = "wivrn-allow-launching-steam-games.patch"; 97 + url = "https://github.com/WiVRn/WiVRn/commit/30ceab5b3082cbc545acf8bc8ca4a24279e6f738.diff"; 98 + hash = "sha256-BD6MhCET7hdjog8rkl7G2l7/zGfVATpNAhNie0efOlA="; 99 + }) 100 + ]; 101 + 91 102 nativeBuildInputs = [ 92 103 cmake 93 104 git ··· 117 128 kdePackages.kirigami 118 129 kdePackages.qcoro 119 130 kdePackages.qqc2-desktop-style 131 + libarchive 120 132 libdrm 121 133 libGL 122 134 libnotify 123 135 libpulseaudio 136 + librsvg 124 137 libva 125 138 libX11 126 139 libXrandr
+3 -3
pkgs/by-name/wr/wrkflw/package.nix
··· 10 10 }: 11 11 rustPlatform.buildRustPackage (finalAttrs: { 12 12 pname = "wrkflw"; 13 - version = "0.4.0"; 13 + version = "0.7.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "bahdotsh"; 17 17 repo = "wrkflw"; 18 18 rev = "v${finalAttrs.version}"; 19 - hash = "sha256-b2g6sY+YBZfD5D+fmbpz+hKZvKKwjCCuygxk2pyYaR8="; 19 + hash = "sha256-J0FlGuISBpyiZNQSwQF/9YJncu67BKSC2Bq2S6F/vKQ="; 20 20 }; 21 21 22 - cargoHash = "sha256-iCagvOIc1Gsox6yQDfOrSTXaM30Q93CwHZdDZOi4kK0="; 22 + cargoHash = "sha256-8iYsHVc7WI94IKMECYs4v+68rG3Mc8Kto9dmGwQrkCU="; 23 23 24 24 nativeBuildInputs = [ pkg-config ]; 25 25 buildInputs = [
+3 -3
pkgs/by-name/yt/yt-dlp/package.nix
··· 19 19 # The websites yt-dlp deals with are a very moving target. That means that 20 20 # downloads break constantly. Because of that, updates should always be backported 21 21 # to the latest stable release. 22 - version = "2025.08.11"; 22 + version = "2025.08.20"; 23 23 pyproject = true; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "yt-dlp"; 27 27 repo = "yt-dlp"; 28 28 tag = version; 29 - hash = "sha256-j7x844MPPFdXYTJiiMnru3CE79A/6JdfJDdh8it9KsU="; 29 + hash = "sha256-FeIoV7Ya+tGCMvUUXmPrs4MN52zwqrcpzJ6Arh4V450="; 30 30 }; 31 31 32 32 postPatch = '' ··· 129 129 mainProgram = "yt-dlp"; 130 130 maintainers = with lib.maintainers; [ 131 131 SuperSandro2000 132 - donteatoreo 132 + FlameFlag 133 133 ]; 134 134 }; 135 135 }
+2 -2
pkgs/by-name/zs/zsh-abbr/package.nix
··· 6 6 }: 7 7 stdenv.mkDerivation rec { 8 8 pname = "zsh-abbr"; 9 - version = "6.3.2"; 9 + version = "6.3.3"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "olets"; 13 13 repo = "zsh-abbr"; 14 14 tag = "v${version}"; 15 - hash = "sha256-XSmDcAMovQ4sDLp6e1PeRlvU7bY6rl7wbCh66VsUBD0="; 15 + hash = "sha256-vu17UAainZDD+8y/t+vBdGUe2NTF5XZdnHy5T15pNUE="; 16 16 fetchSubmodules = true; 17 17 }; 18 18
+1 -1
pkgs/development/beam-modules/mix-release.nix
··· 190 190 # Symlink deps to build root. Similar to above, but allows for mixFodDeps 191 191 # Phoenix projects to find javascript assets. 192 192 ${lib.optionalString (mixFodDeps != null) '' 193 - ln -s ../deps ./ 193 + ln -s "$MIX_DEPS_PATH" ./deps 194 194 ''} 195 195 196 196 runHook postConfigure
+2 -2
pkgs/development/libraries/mesa/common.nix
··· 5 5 # nix build .#legacyPackages.x86_64-darwin.mesa .#legacyPackages.aarch64-darwin.mesa 6 6 rec { 7 7 pname = "mesa"; 8 - version = "25.2.0"; 8 + version = "25.2.1"; 9 9 10 10 src = fetchFromGitLab { 11 11 domain = "gitlab.freedesktop.org"; 12 12 owner = "mesa"; 13 13 repo = "mesa"; 14 14 rev = "mesa-${version}"; 15 - hash = "sha256-is5CWcyC0O4Jn08makxowDAiloxYJmMrfuxecu12fyQ="; 15 + hash = "sha256-BlOjNdQc7RtFk0EvqbPg3nccsiAAbGMKuwNLn+HcyEU="; 16 16 }; 17 17 18 18 meta = {
+1 -1
pkgs/development/python-modules/customtkinter/default.nix
··· 55 55 a consistent and modern look across all desktop platforms 56 56 (Windows, macOS, Linux). 57 57 ''; 58 - maintainers = with lib.maintainers; [ donteatoreo ]; 58 + maintainers = with lib.maintainers; [ FlameFlag ]; 59 59 }; 60 60 }
+4 -4
pkgs/development/python-modules/django-pghistory/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "django-pghistory"; 12 - version = "3.7.0"; 12 + version = "3.8.0"; 13 13 pyproject = true; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "Opus10"; 17 17 repo = "django-pghistory"; 18 - tag = "${version}"; 19 - hash = "sha256-HXnljqbLNnKqueDNDTEhKHNkm5FcQGsA54mdnk3rYNI="; 18 + tag = version; 19 + hash = "sha256-+8Irib0pAxu4rMKhMK3vdY5wIt7w7XlDKerz95XIMnE="; 20 20 }; 21 21 22 22 build-system = [ ··· 31 31 pythonImportsCheck = [ "pghistory" ]; 32 32 33 33 meta = { 34 - changelog = "https://github.com/Opus10/django-pghistory/releases/tag/${version}"; 34 + changelog = "https://github.com/Opus10/django-pghistory/releases/tag/${src.tag}"; 35 35 description = "History tracking for Django and Postgres"; 36 36 homepage = "https://django-pghistory.readthedocs.io"; 37 37 maintainers = with lib.maintainers; [ pyrox0 ];
+3 -3
pkgs/development/python-modules/django-pgtrigger/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "django-pgtrigger"; 12 - version = "4.15.3"; 12 + version = "4.15.4"; 13 13 pyproject = true; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "AmbitionEng"; 17 17 repo = "django-pgtrigger"; 18 18 tag = version; 19 - hash = "sha256-aFjg4rCWM1F2O1zDBVo2zN1LhOPN+UyIZphuTHMAjhQ="; 19 + hash = "sha256-3v/YWcWZAiEH9EtxC901kEqja0TTzbNSTkjoH+cEUN4="; 20 20 }; 21 21 22 22 build-system = [ poetry-core ]; ··· 31 31 meta = { 32 32 description = "Write Postgres triggers for your Django models"; 33 33 homepage = "https://github.com/Opus10/django-pgtrigger"; 34 - changelog = "https://github.com/Opus10/django-pgtrigger/blob/${src.rev}/CHANGELOG.md"; 34 + changelog = "https://github.com/Opus10/django-pgtrigger/blob/${src.tag}/CHANGELOG.md"; 35 35 license = lib.licenses.bsd3; 36 36 maintainers = with lib.maintainers; [ 37 37 raitobezarius
+2 -2
pkgs/development/python-modules/google-cloud-spanner/default.nix
··· 33 33 34 34 buildPythonPackage rec { 35 35 pname = "google-cloud-spanner"; 36 - version = "3.56.0"; 36 + version = "3.57.0"; 37 37 pyproject = true; 38 38 39 39 src = fetchFromGitHub { 40 40 owner = "googleapis"; 41 41 repo = "python-spanner"; 42 42 tag = "v${version}"; 43 - hash = "sha256-yCEFVf/euu48j+0jK5QfjhdJMV4c4mEHFYE+Ukz7Rjo="; 43 + hash = "sha256-XZfG3xk2DYcqzOkVKVRT+O81R+hL4CCfl+/E2WLThYA="; 44 44 }; 45 45 46 46 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/libpyfoscamcgi/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "libpyfoscamcgi"; 11 - version = "0.0.6"; 11 + version = "0.0.7"; 12 12 pyproject = true; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "Foscam-wangzhengyu"; 16 16 repo = "libfoscamcgi"; 17 17 tag = "v${version}"; 18 - hash = "sha256-L9QGXBEK1cehP/eJ2++Um4WCgQMG5Rv8UAnZg4Mfwu4="; 18 + hash = "sha256-QthzyMdZ2iberDmbeqf6MaUv8lH5xhlZLL8ZAlapvIk="; 19 19 }; 20 20 21 21 build-system = [ setuptools ];
+2 -2
pkgs/os-specific/linux/drbd/utils.nix
··· 26 26 27 27 stdenv.mkDerivation rec { 28 28 pname = "drbd"; 29 - version = "9.27.0"; 29 + version = "9.32.0"; 30 30 31 31 src = fetchurl { 32 32 url = "https://pkg.linbit.com/downloads/drbd/utils/${pname}-utils-${version}.tar.gz"; 33 - sha256 = "1qwdrjrgas8z8vc6c85xcrqaczjwyqd61yig01n44wa5z0j3v4aq"; 33 + hash = "sha256-szOM7jSbXEZZ4p1P73W6tK9Put0+wOZar+cUiUNC6M0="; 34 34 }; 35 35 36 36 nativeBuildInputs = [
+8 -2
pkgs/pkgs-lib/formats/hocon/src/src/main.rs
··· 210 210 let content = (if includes.is_empty() { 211 211 items 212 212 } else { 213 - format!("{}{}", includes, items) 213 + format!("{}\n{}", includes, items) 214 214 }) 215 215 .split('\n') 216 - .map(|s| format!(" {}", s)) 216 + .map(|s| { 217 + if s.is_empty() { 218 + "".to_string() 219 + } else { 220 + format!(" {}", s) 221 + } 222 + }) 217 223 .collect::<Vec<String>>() 218 224 .join("\n"); 219 225
+1
pkgs/pkgs-lib/formats/hocon/test/comprehensive/expected.txt
··· 42 42 include required(file("/nix/store/ccnzr53dpipdacxgci3ii3bqacvb5hxm-hocon-test-include.conf")) 43 43 include "/nix/store/ccnzr53dpipdacxgci3ii3bqacvb5hxm-hocon-test-include.conf" 44 44 include url("https://example.com") 45 + 45 46 } 46 47 } 47 48
+5 -5
pkgs/servers/nextcloud/notify_push.nix
··· 13 13 # in nixpkgs! 14 14 # For that, check the `<dependencies>` section of `appinfo/info.xml` 15 15 # in the app (https://github.com/nextcloud/notify_push/blob/main/appinfo/info.xml) 16 - version = "1.1.0"; 16 + version = "1.2.0"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "nextcloud"; 20 20 repo = "notify_push"; 21 21 tag = "v${version}"; 22 - hash = "sha256-mHoVNKvE4Hszi1wg9fIHjRMJp5+CIBCgUPzreJ6Jnew="; 22 + hash = "sha256-zefoazreNUc3agbdeQRusYWwGNDZnC375ZlLlG+SPeg="; 23 23 }; 24 24 25 - cargoHash = "sha256-PkRWyz4Gd2gGg9n4yChtR96QNOjEK5HNVhBwkkVjVPE="; 25 + cargoHash = "sha256-+z9XaAzToLZg6/PoRigkvPVpZ/bX/t0VBR5bg3dCUVw="; 26 26 27 27 passthru = rec { 28 28 app = fetchNextcloudApp { 29 29 appName = "notify_push"; 30 30 appVersion = version; 31 - hash = "sha256-nxbmzRaW4FYmwTF27P9K7SebKYiL5KOMdyU5unif+NQ="; 31 + hash = "sha256-KIgXruwYPTLmpO3bMbEcm9jlRYjqX8JgTJt5hd7QugM="; 32 32 license = "agpl3Plus"; 33 33 homepage = "https://github.com/nextcloud/notify_push"; 34 34 url = "https://github.com/nextcloud-releases/notify_push/releases/download/v${version}/notify_push-v${version}.tar.gz"; ··· 41 41 42 42 buildAndTestSubdir = "test_client"; 43 43 44 - cargoHash = "sha256-PkRWyz4Gd2gGg9n4yChtR96QNOjEK5HNVhBwkkVjVPE="; 44 + cargoHash = "sha256-+z9XaAzToLZg6/PoRigkvPVpZ/bX/t0VBR5bg3dCUVw="; 45 45 46 46 meta = meta // { 47 47 mainProgram = "test_client";
+14 -11
pkgs/servers/sql/postgresql/ext/pg_hint_plan.nix
··· 7 7 8 8 let 9 9 sources = { 10 - # For v18, see https://github.com/ossc-db/pg_hint_plan/issues/224 10 + "18" = { 11 + version = "1.8.0"; 12 + hash = "sha256-QsDppGN5TE7CSii3mNmwqT/riNNjyRTJk6d6Xcf0JMw="; 13 + }; 11 14 "17" = { 12 - version = "1.7.0"; 13 - hash = "sha256-MNQMePDmGxC8OFIJuVJrhfgU566vkng00+tjeGpGKvs="; 15 + version = "1.7.1"; 16 + hash = "sha256-9GKqyrNpi80I4WWIiRN8zeXBm5bkRuzOWrZVfpYOzag="; 14 17 }; 15 18 "16" = { 16 - version = "1.6.0"; 17 - hash = "sha256-lg7N0QblluTgtNo1tGZjirNJSyQXtcAEs9Jqd3zx0Sg="; 19 + version = "1.6.2"; 20 + hash = "sha256-WMmtnuGOvLwtiEmgHpYURC1k5NmkBiDg+PnQCIZp7Sk="; 18 21 }; 19 22 "15" = { 20 - version = "1.5.1"; 21 - hash = "sha256-o8Hepf/Mc1ClRTLZ6PBdqU4jSdlz+ijVgl2vJKmIc6M="; 23 + version = "1.5.3"; 24 + hash = "sha256-jkU0zt1waPTdFrBLAxYNvlo+RwdhCtKQq7iqAuxthNA="; 22 25 }; 23 26 "14" = { 24 - version = "1.4.2"; 25 - hash = "sha256-nGyKcNY57RdQdZKSaBPk2/YbT0Annz1ZevH0lKswdhA="; 27 + version = "1.4.4"; 28 + hash = "sha256-8rJ4Ck0Axf9zKhOXaJ4EA/M783YZRLuWx+GMGccadVo="; 26 29 }; 27 30 "13" = { 28 - version = "1.3.9"; 29 - hash = "sha256-KGcHDwk8CgNHPZARfLBfS8r7TRCP9LPjT+m4fNSnnW0="; 31 + version = "1.3.11"; 32 + hash = "sha256-XTxCw1Uj6rVLcXJuHoT3RkEhdKVLGjOdR7rhFI8YJas="; 30 33 }; 31 34 }; 32 35
+2
pkgs/top-level/all-packages.nix
··· 4295 4295 4296 4296 teamviewer = libsForQt5.callPackage ../applications/networking/remote/teamviewer { }; 4297 4297 4298 + buildTeleport = callPackage ../build-support/teleport { }; 4299 + 4298 4300 telepresence = callPackage ../tools/networking/telepresence { 4299 4301 pythonPackages = python3Packages; 4300 4302 };