From 3c52c48a59202a7f5ff637a809d657575ecf9f0f Mon Sep 17 00:00:00 2001 From: thelamer Date: Sat, 2 Jul 2022 19:33:29 -0400 Subject: [PATCH 001/337] adding develop branch --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4feabaa..c23c59e 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# Initial +# Initial-develop From ba86be3cca056110b85bba5b7fdd8b32c7a41467 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sat, 2 Jul 2022 21:46:55 -0400 Subject: [PATCH 002/337] add initial logic for develop branch --- .editorconfig | 20 + .github/CONTRIBUTING.md | 123 ++ .github/FUNDING.yml | 2 + .github/ISSUE_TEMPLATE/config.yml | 13 + .github/ISSUE_TEMPLATE/issue.bug.md | 40 + .github/ISSUE_TEMPLATE/issue.feature.md | 25 + .github/PULL_REQUEST_TEMPLATE.md | 43 + .github/workflows/external_trigger.yml | 92 ++ .../workflows/external_trigger_scheduler.yml | 43 + .github/workflows/greetings.yml | 13 + .github/workflows/package_trigger.yml | 38 + .../workflows/package_trigger_scheduler.yml | 50 + .github/workflows/stale.yml | 23 + Dockerfile | 95 ++ Dockerfile.aarch64 | 95 ++ Dockerfile.armhf | 10 + Jenkinsfile | 1005 +++++++++++++++++ LICENSE | 674 +++++++++++ README.md | 239 +++- jenkins-vars.yml | 29 + readme-vars.yml | 88 ++ root-armhf/etc/cont-init.d/30-disabled | 5 + root/etc/cont-init.d/30-setup | 20 + root/etc/services.d/docker/run | 14 + root/etc/services.d/wizard/run | 12 + root/usr/local/bin/dockerd-entrypoint.sh | 196 ++++ 26 files changed, 3006 insertions(+), 1 deletion(-) create mode 100644 .editorconfig create mode 100644 .github/CONTRIBUTING.md create mode 100644 .github/FUNDING.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/issue.bug.md create mode 100644 .github/ISSUE_TEMPLATE/issue.feature.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 .github/workflows/external_trigger.yml create mode 100644 .github/workflows/external_trigger_scheduler.yml create mode 100644 .github/workflows/greetings.yml create mode 100644 .github/workflows/package_trigger.yml create mode 100644 .github/workflows/package_trigger_scheduler.yml create mode 100644 .github/workflows/stale.yml create mode 100644 Dockerfile create mode 100644 Dockerfile.aarch64 create mode 100644 Dockerfile.armhf create mode 100644 Jenkinsfile create mode 100644 LICENSE create mode 100644 jenkins-vars.yml create mode 100644 readme-vars.yml create mode 100644 root-armhf/etc/cont-init.d/30-disabled create mode 100644 root/etc/cont-init.d/30-setup create mode 100644 root/etc/services.d/docker/run create mode 100644 root/etc/services.d/wizard/run create mode 100755 root/usr/local/bin/dockerd-entrypoint.sh diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..a92f7df --- /dev/null +++ b/.editorconfig @@ -0,0 +1,20 @@ +# This file is globally distributed to all container image projects from +# https://github.com/linuxserver/docker-jenkins-builder/blob/master/.editorconfig + +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true +# trim_trailing_whitespace may cause unintended issues and should not be globally set true +trim_trailing_whitespace = false + +[{Dockerfile*,**.yml}] +indent_style = space +indent_size = 2 + +[{**.sh,root/etc/cont-init.d/**,root/etc/services.d/**}] +indent_style = space +indent_size = 4 diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 0000000..ee97ac4 --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,123 @@ +# Contributing to kasm + +## Gotchas + +* While contributing make sure to make all your changes before creating a Pull Request, as our pipeline builds each commit after the PR is open. +* Read, and fill the Pull Request template + * If this is a fix for a typo (in code, documentation, or the README) please file an issue and let us sort it out. We do not need a PR + * If the PR is addressing an existing issue include, closes #\, in the body of the PR commit message +* If you want to discuss changes, you can also bring it up in [#dev-talk](https://discordapp.com/channels/354974912613449730/757585807061155840) in our [Discord server](https://discord.gg/YWrKVTn) + +## Common files + +| File | Use case | +| :----: | --- | +| `Dockerfile` | Dockerfile used to build amd64 images | +| `Dockerfile.aarch64` | Dockerfile used to build 64bit ARM architectures | +| `Dockerfile.armhf` | Dockerfile used to build 32bit ARM architectures | +| `Jenkinsfile` | This file is a product of our builder and should not be edited directly. This is used to build the image | +| `jenkins-vars.yml` | This file is used to generate the `Jenkinsfile` mentioned above, it only affects the build-process | +| `package_versions.txt` | This file is generated as a part of the build-process and should not be edited directly. It lists all the installed packages and their versions | +| `README.md` | This file is a product of our builder and should not be edited directly. This displays the readme for the repository and image registries | +| `readme-vars.yml` | This file is used to generate the `README.md` | + +## Readme + +If you would like to change our readme, please __**do not**__ directly edit the readme, as it is auto-generated on each commit. +Instead edit the [readme-vars.yml](https://github.com/linuxserver/docker-kasm/edit/develop/readme-vars.yml). + +These variables are used in a template for our [Jenkins Builder](https://github.com/linuxserver/docker-jenkins-builder) as part of an ansible play. +Most of these variables are also carried over to [docs.linuxserver.io](https://docs.linuxserver.io/images/docker-kasm) + +### Fixing typos or clarify the text in the readme + +There are variables for multiple parts of the readme, the most common ones are: + +| Variable | Description | +| :----: | --- | +| `project_blurb` | This is the short excerpt shown above the project logo. | +| `app_setup_block` | This is the text that shows up under "Application Setup" if enabled | + +### Parameters + +The compose and run examples are also generated from these variables. + +We have a [reference file](https://github.com/linuxserver/docker-jenkins-builder/blob/master/vars/_container-vars-blank) in our Jenkins Builder. + +These are prefixed with `param_` for required parameters, or `opt_param` for optional parameters, except for `cap_add`. +Remember to enable param, if currently disabled. This differs between parameters, and can be seen in the reference file. + +Devices, environment variables, ports and volumes expects its variables in a certain way. + +### Devices + +```yml +param_devices: + - { device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "For hardware transcoding" } +opt_param_devices: + - { device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "For hardware transcoding" } +``` + +### Environment variables + +```yml +param_env_vars: + - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." } +opt_param_env_vars: + - { env_var: "VERSION", env_value: "latest", desc: "Supported values are LATEST, PLEXPASS or a specific version number." } +``` + +### Ports + +```yml +param_ports: + - { external_port: "80", internal_port: "80", port_desc: "Application WebUI" } +opt_param_ports: + - { external_port: "80", internal_port: "80", port_desc: "Application WebUI" } +``` + +### Volumes + +```yml +param_volumes: + - { vol_path: "/config", vol_host_path: "", desc: "Configuration files." } +opt_param_volumes: + - { vol_path: "/config", vol_host_path: "", desc: "Configuration files." } +``` + +### Testing template changes + +After you make any changes to the templates, you can use our [Jenkins Builder](https://github.com/linuxserver/docker-jenkins-builder) to have the files updated from the modified templates. Please use the command found under `Running Locally` [on this page](https://github.com/linuxserver/docker-jenkins-builder/blob/master/README.md) to generate them prior to submitting a PR. + +## Dockerfiles + +We use multiple Dockerfiles in our repos, this is because sometimes some CPU architectures needs different packages to work. +If you are proposing additional packages to be added, ensure that you added the packages to all the Dockerfiles in alphabetical order. + +### Testing your changes + +```bash +git clone https://github.com/linuxserver/docker-kasm.git +cd docker-kasm +docker build \ + --no-cache \ + --pull \ + -t linuxserver/kasm:latest . +``` + +The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` + +```bash +docker run --rm --privileged multiarch/qemu-user-static:register --reset +``` + +Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`. + +## Update the changelog + +If you are modifying the Dockerfiles or any of the startup scripts in [root](https://github.com/linuxserver/docker-kasm/tree/develop/root), add an entry to the changelog + +```yml +changelogs: + - { date: "DD.MM.YY:", desc: "Added some love to templates" } +``` diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..7eaac77 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,2 @@ +github: linuxserver +open_collective: linuxserver diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..91ee0c0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,13 @@ +blank_issues_enabled: false +contact_links: + - name: Discord chat support + url: https://discord.gg/YWrKVTn + about: Realtime support / chat with the community and the team. + + - name: Discourse discussion forum + url: https://discourse.linuxserver.io + about: Post on our community forum. + + - name: Documentation + url: https://docs.linuxserver.io/images/docker-kasm + about: Documentation - information about all of our containers. diff --git a/.github/ISSUE_TEMPLATE/issue.bug.md b/.github/ISSUE_TEMPLATE/issue.bug.md new file mode 100644 index 0000000..24ba71e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/issue.bug.md @@ -0,0 +1,40 @@ +--- +name: Bug report +about: Create a report to help us improve + +--- +[linuxserverurl]: https://linuxserver.io +[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl] + + + + + +------------------------------ + +## Expected Behavior + + +## Current Behavior + + +## Steps to Reproduce + + +1. +2. +3. +4. + +## Environment +**OS:** +**CPU architecture:** x86_64/arm32/arm64 +**How docker service was installed:** + + + +## Command used to create docker container (run/create/compose/screenshot) + + +## Docker logs + diff --git a/.github/ISSUE_TEMPLATE/issue.feature.md b/.github/ISSUE_TEMPLATE/issue.feature.md new file mode 100644 index 0000000..20a91fd --- /dev/null +++ b/.github/ISSUE_TEMPLATE/issue.feature.md @@ -0,0 +1,25 @@ +--- +name: Feature request +about: Suggest an idea for this project + +--- +[linuxserverurl]: https://linuxserver.io +[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl] + + + + + + + + +------------------------------ + +## Desired Behavior + + +## Current Behavior + + +## Alternatives Considered + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..ce77557 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,43 @@ + + +[linuxserverurl]: https://linuxserver.io +[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl] + + + + + + + + + + + + + + + + + +------------------------------ + + - [ ] I have read the [contributing](https://github.com/linuxserver/docker-kasm/blob/develop/.github/CONTRIBUTING.md) guideline and understand that I have made the correct modifications + +------------------------------ + + + +## Description: + + +## Benefits of this PR and context: + + +## How Has This Been Tested? + + + + + +## Source / References: + diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml new file mode 100644 index 0000000..415314d --- /dev/null +++ b/.github/workflows/external_trigger.yml @@ -0,0 +1,92 @@ +name: External Trigger Main + +on: + workflow_dispatch: + +jobs: + external-trigger-develop: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2.3.3 + + - name: External Trigger + if: github.ref == 'refs/heads/develop' + run: | + if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP }}" ]; then + echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP is set; skipping trigger. ****" + exit 0 + fi + echo "**** External trigger running off of develop branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP\". ****" + echo "**** Retrieving external version ****" + EXT_RELEASE=$(curl -u "${{ secrets.CR_USER }}:${{ secrets.CR_PAT }}" -sX GET "https://api.github.com/repos/kasmtech/kasm-install-wizard/releases" | jq -r '.[0] | .tag_name') + if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then + echo "**** Can't retrieve external version, exiting ****" + FAILURE_REASON="Can't retrieve external version for kasm branch develop" + GHA_TRIGGER_URL="https://github.com/linuxserver/docker-kasm/actions/runs/${{ github.run_id }}" + curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680, + "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n**Trigger URL:** '"${GHA_TRIGGER_URL}"' \n"}], + "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} + exit 1 + fi + EXT_RELEASE=$(echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g') + echo "**** External version: ${EXT_RELEASE} ****" + echo "**** Retrieving last pushed version ****" + image="linuxserver/kasm" + tag="develop" + token=$(curl -sX GET \ + "https://ghcr.io/token?scope=repository%3Alinuxserver%2Fkasm%3Apull" \ + | jq -r '.token') + multidigest=$(curl -s \ + --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ + --header "Authorization: Bearer ${token}" \ + "https://ghcr.io/v2/${image}/manifests/${tag}" \ + | jq -r 'first(.manifests[].digest)') + digest=$(curl -s \ + --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ + --header "Authorization: Bearer ${token}" \ + "https://ghcr.io/v2/${image}/manifests/${multidigest}" \ + | jq -r '.config.digest') + image_info=$(curl -sL \ + --header "Authorization: Bearer ${token}" \ + "https://ghcr.io/v2/${image}/blobs/${digest}" \ + | jq -r '.container_config') + IMAGE_RELEASE=$(echo ${image_info} | jq -r '.Labels.build_version' | awk '{print $3}') + IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}') + if [ -z "${IMAGE_VERSION}" ]; then + echo "**** Can't retrieve last pushed version, exiting ****" + FAILURE_REASON="Can't retrieve last pushed version for kasm tag develop" + curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680, + "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n"}], + "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} + exit 1 + fi + echo "**** Last pushed version: ${IMAGE_VERSION} ****" + if [ "${EXT_RELEASE}" == "${IMAGE_VERSION}" ]; then + echo "**** Version ${EXT_RELEASE} already pushed, exiting ****" + exit 0 + elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/lastBuild/api/json | jq -r '.building') == "true" ]; then + echo "**** New version ${EXT_RELEASE} found; but there already seems to be an active build on Jenkins; exiting ****" + exit 0 + else + echo "**** New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build ****" + response=$(curl -iX POST \ + https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/buildWithParameters?PACKAGE_CHECK=false \ + --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") + echo "**** Jenkins job queue url: ${response%$'\r'} ****" + echo "**** Sleeping 10 seconds until job starts ****" + sleep 10 + buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') + buildurl="${buildurl%$'\r'}" + echo "**** Jenkins job build url: ${buildurl} ****" + echo "**** Attempting to change the Jenkins job description ****" + curl -iX POST \ + "${buildurl}submitDescription" \ + --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ + --data-urlencode "description=GHA external trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ + --data-urlencode "Submit=Submit" + echo "**** Notifying Discord ****" + TRIGGER_REASON="A version change was detected for kasm tag develop. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE}" + curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, + "description": "**Build Triggered** \n**Reason:** '"${TRIGGER_REASON}"' \n**Build URL:** '"${buildurl}display/redirect"' \n"}], + "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} + fi diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml new file mode 100644 index 0000000..5ac47cb --- /dev/null +++ b/.github/workflows/external_trigger_scheduler.yml @@ -0,0 +1,43 @@ +name: External Trigger Scheduler + +on: + schedule: + - cron: '03 * * * *' + workflow_dispatch: + +jobs: + external-trigger-scheduler: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2.3.3 + with: + fetch-depth: '0' + + - name: External Trigger Scheduler + run: | + echo "**** Branches found: ****" + git for-each-ref --format='%(refname:short)' refs/remotes + echo "**** Pulling the yq docker image ****" + docker pull ghcr.io/linuxserver/yq + for br in $(git for-each-ref --format='%(refname:short)' refs/remotes) + do + br=$(echo "$br" | sed 's|origin/||g') + echo "**** Evaluating branch ${br} ****" + ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/jenkins-vars.yml \ + | docker run --rm -i --entrypoint yq ghcr.io/linuxserver/yq -r .ls_branch) + if [ "$br" == "$ls_branch" ]; then + echo "**** Branch ${br} appears to be live; checking workflow. ****" + if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/.github/workflows/external_trigger.yml > /dev/null 2>&1; then + echo "**** Workflow exists. Triggering external trigger workflow for branch ${br} ****." + curl -iX POST \ + -H "Authorization: token ${{ secrets.CR_PAT }}" \ + -H "Accept: application/vnd.github.v3+json" \ + -d "{\"ref\":\"refs/heads/${br}\"}" \ + https://api.github.com/repos/linuxserver/docker-kasm/actions/workflows/external_trigger.yml/dispatches + else + echo "**** Workflow doesn't exist; skipping trigger. ****" + fi + else + echo "**** ${br} appears to be a dev branch; skipping trigger. ****" + fi + done diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 0000000..7280bf2 --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,13 @@ +name: Greetings + +on: [pull_request_target, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + steps: + - uses: actions/first-interaction@v1 + with: + issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-kasm/blob/develop/.github/ISSUE_TEMPLATE/issue.bug.md) or [feature](https://github.com/linuxserver/docker-kasm/blob/develop/.github/ISSUE_TEMPLATE/issue.feature.md) issue templates!' + pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-kasm/blob/develop/.github/PULL_REQUEST_TEMPLATE.md)!' + repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/package_trigger.yml b/.github/workflows/package_trigger.yml new file mode 100644 index 0000000..e2651d3 --- /dev/null +++ b/.github/workflows/package_trigger.yml @@ -0,0 +1,38 @@ +name: Package Trigger Main + +on: + workflow_dispatch: + +jobs: + package-trigger-develop: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2.3.3 + + - name: Package Trigger + if: github.ref == 'refs/heads/develop' + run: | + if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP }}" ]; then + echo "**** Github secret PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP is set; skipping trigger. ****" + exit 0 + fi + if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/lastBuild/api/json | jq -r '.building') == "true" ]; then + echo "**** There already seems to be an active build on Jenkins; skipping package trigger ****" + exit 0 + fi + echo "**** Package trigger running off of develop branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP\". ****" + response=$(curl -iX POST \ + https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/buildWithParameters?PACKAGE_CHECK=true \ + --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") + echo "**** Jenkins job queue url: ${response%$'\r'} ****" + echo "**** Sleeping 10 seconds until job starts ****" + sleep 10 + buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') + buildurl="${buildurl%$'\r'}" + echo "**** Jenkins job build url: ${buildurl} ****" + echo "**** Attempting to change the Jenkins job description ****" + curl -iX POST \ + "${buildurl}submitDescription" \ + --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ + --data-urlencode "description=GHA package trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ + --data-urlencode "Submit=Submit" diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml new file mode 100644 index 0000000..9a7744f --- /dev/null +++ b/.github/workflows/package_trigger_scheduler.yml @@ -0,0 +1,50 @@ +name: Package Trigger Scheduler + +on: + schedule: + - cron: '54 11 * * 0' + workflow_dispatch: + +jobs: + package-trigger-scheduler: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2.3.3 + with: + fetch-depth: '0' + + - name: Package Trigger Scheduler + run: | + echo "**** Branches found: ****" + git for-each-ref --format='%(refname:short)' refs/remotes + echo "**** Pulling the yq docker image ****" + docker pull ghcr.io/linuxserver/yq + for br in $(git for-each-ref --format='%(refname:short)' refs/remotes) + do + br=$(echo "$br" | sed 's|origin/||g') + echo "**** Evaluating branch ${br} ****" + ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/jenkins-vars.yml \ + | docker run --rm -i --entrypoint yq ghcr.io/linuxserver/yq -r .ls_branch) + if [ "${br}" == "${ls_branch}" ]; then + echo "**** Branch ${br} appears to be live; checking workflow. ****" + if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/.github/workflows/package_trigger.yml > /dev/null 2>&1; then + echo "**** Workflow exists. Triggering package trigger workflow for branch ${br}. ****" + triggered_branches="${triggered_branches}${br} " + curl -iX POST \ + -H "Authorization: token ${{ secrets.CR_PAT }}" \ + -H "Accept: application/vnd.github.v3+json" \ + -d "{\"ref\":\"refs/heads/${br}\"}" \ + https://api.github.com/repos/linuxserver/docker-kasm/actions/workflows/package_trigger.yml/dispatches + sleep 30 + else + echo "**** Workflow doesn't exist; skipping trigger. ****" + fi + else + echo "**** ${br} appears to be a dev branch; skipping trigger. ****" + fi + done + echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****" + echo "**** Notifying Discord ****" + curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, + "description": "**Package Check Build(s) Triggered for kasm** \n**Branch(es):** '"${triggered_branches}"' \n**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-kasm/activity/"' \n"}], + "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 0000000..3b3846e --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,23 @@ +name: Mark stale issues and pull requests + +on: + schedule: + - cron: "30 1 * * *" + +jobs: + stale: + + runs-on: ubuntu-latest + + steps: + - uses: actions/stale@v3 + with: + stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions." + stale-pr-message: "This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions." + stale-issue-label: 'no-issue-activity' + stale-pr-label: 'no-pr-activity' + days-before-stale: 30 + days-before-close: 365 + exempt-issue-labels: 'awaiting-approval,work-in-progress' + exempt-pr-labels: 'awaiting-approval,work-in-progress' + repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..23b0717 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,95 @@ +FROM ghcr.io/linuxserver/baseimage-alpine:3.16 + +# set version label +ARG BUILD_DATE +ARG KASM_VERSION +LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" +LABEL maintainer="thelamer" + +# Env +ENV DOCKER_TLS_CERTDIR="" + +# Container setup +RUN \ + echo "**** install build packages ****" && \ + apk add --no-cache --virtual=build-dependencies \ + alpine-sdk \ + npm && \ + echo "**** install packages ****" && \ + apk add --no-cache \ + bash \ + btrfs-progs \ + ca-certificates \ + coreutils \ + curl \ + docker \ + docker-cli-compose \ + e2fsprogs \ + e2fsprogs-extra \ + findutils \ + fuse-overlayfs \ + ip6tables \ + iptables \ + jq \ + nodejs \ + openssl \ + pigz \ + python3 \ + shadow-uidmap \ + sudo \ + xfsprogs \ + xz \ + zfs && \ + echo "**** dind setup ****" && \ + addgroup -S dockremap && \ + adduser -S -G dockremap dockremap && \ + echo 'dockremap:165536:65536' >> /etc/subuid && \ + echo 'dockremap:165536:65536' >> /etc/subgid && \ + curl -o \ + /usr/local/bin/dind -L \ + https://raw.githubusercontent.com/moby/moby/master/hack/dind && \ + chmod +x /usr/local/bin/dind && \ + echo 'hosts: files dns' > /etc/nsswitch.conf && \ + echo "**** setup wizard ****" && \ + mkdir -p /wizard && \ + if [ -z ${KASM_VERSION+x} ]; then \ + KASM_VERSION=$(curl -sX GET 'https://api.github.com/repos/kasmtech/kasm-install-wizard/releases' \ + | jq -r '.[] | select (.prerelease==true)' \ + | jq -rs 'max_by(.name | split(".") | map(tonumber)) | .name'); \ + fi && \ + curl -o \ + /tmp/wizard.tar.gz -L \ + "https://github.com/kasmtech/kasm-install-wizard/archive/refs/tags/${KASM_VERSION}.tar.gz" && \ + tar xf \ + /tmp/wizard.tar.gz -C \ + /wizard --strip-components=1 && \ + cd /wizard && \ + npm install && \ + echo "**** add installer ****" && \ + curl -o \ + /tmp/kasm.tar.gz -L \ + "https://github.com/kasmtech/kasm-install-wizard/releases/download/${KASM_VERSION}/kasm_release.tar.gz" && \ + tar xf \ + /tmp/kasm.tar.gz -C \ + / && \ + echo "**** copy assets ****" && \ + cp \ + /kasm_release/www/img/thumbnails/*.png \ + /wizard/public/img/thumbnails/ && \ + cp \ + /kasm_release/conf/database/seed_data/default_images_a* \ + /wizard/ && \ + echo "**** cleanup ****" && \ + apk del --purge \ + build-dependencies && \ + rm -rf \ + /root/.npm \ + /root/.cache \ + /tmp/* + +# add init files +COPY root/ / + +# Ports and volumes +EXPOSE 3000 443 +VOLUME /opt/ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 new file mode 100644 index 0000000..7d4a8f3 --- /dev/null +++ b/Dockerfile.aarch64 @@ -0,0 +1,95 @@ +FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.16 + +# set version label +ARG BUILD_DATE +ARG KASM_VERSION +LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" +LABEL maintainer="thelamer" + +# Env +ENV DOCKER_TLS_CERTDIR="" + +# Container setup +RUN \ + echo "**** install build packages ****" && \ + apk add --no-cache --virtual=build-dependencies \ + alpine-sdk \ + npm && \ + echo "**** install packages ****" && \ + apk add --no-cache \ + bash \ + btrfs-progs \ + ca-certificates \ + coreutils \ + curl \ + docker \ + docker-cli-compose \ + e2fsprogs \ + e2fsprogs-extra \ + findutils \ + fuse-overlayfs \ + ip6tables \ + iptables \ + jq \ + nodejs \ + openssl \ + pigz \ + python3 \ + shadow-uidmap \ + sudo \ + xfsprogs \ + xz \ + zfs && \ + echo "**** dind setup ****" && \ + addgroup -S dockremap && \ + adduser -S -G dockremap dockremap && \ + echo 'dockremap:165536:65536' >> /etc/subuid && \ + echo 'dockremap:165536:65536' >> /etc/subgid && \ + curl -o \ + /usr/local/bin/dind -L \ + https://raw.githubusercontent.com/moby/moby/master/hack/dind && \ + chmod +x /usr/local/bin/dind && \ + echo 'hosts: files dns' > /etc/nsswitch.conf && \ + echo "**** setup wizard ****" && \ + mkdir -p /wizard && \ + if [ -z ${KASM_VERSION+x} ]; then \ + KASM_VERSION=$(curl -sX GET 'https://api.github.com/repos/kasmtech/kasm-install-wizard/releases' \ + | jq -r '.[] | select (.prerelease==true)' \ + | jq -rs 'max_by(.name | split(".") | map(tonumber)) | .name'); \ + fi && \ + curl -o \ + /tmp/wizard.tar.gz -L \ + "https://github.com/kasmtech/kasm-install-wizard/archive/refs/tags/${KASM_VERSION}.tar.gz" && \ + tar xf \ + /tmp/wizard.tar.gz -C \ + /wizard --strip-components=1 && \ + cd /wizard && \ + npm install && \ + echo "**** add installer ****" && \ + curl -o \ + /tmp/kasm.tar.gz -L \ + "https://github.com/kasmtech/kasm-install-wizard/releases/download/${KASM_VERSION}/kasm_release.tar.gz" && \ + tar xf \ + /tmp/kasm.tar.gz -C \ + / && \ + echo "**** copy assets ****" && \ + cp \ + /kasm_release/www/img/thumbnails/*.png \ + /wizard/public/img/thumbnails/ && \ + cp \ + /kasm_release/conf/database/seed_data/default_images_a* \ + /wizard/ && \ + echo "**** cleanup ****" && \ + apk del --purge \ + build-dependencies && \ + rm -rf \ + /root/.npm \ + /root/.cache \ + /tmp/* + +# add init files +COPY root/ / + +# Ports and volumes +EXPOSE 3000 443 +VOLUME /opt/ diff --git a/Dockerfile.armhf b/Dockerfile.armhf new file mode 100644 index 0000000..195ac5f --- /dev/null +++ b/Dockerfile.armhf @@ -0,0 +1,10 @@ +FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.16 + +# set version label +ARG BUILD_DATE +ARG KASM_VERSION +LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" +LABEL maintainer="thelamer" + +# add init files +COPY root-armhf/ / diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..909090a --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,1005 @@ +pipeline { + agent { + label 'X86-64-MULTI' + } + options { + buildDiscarder(logRotator(numToKeepStr: '10', daysToKeepStr: '60')) + parallelsAlwaysFailFast() + } + // Input to determine if this is a package check + parameters { + string(defaultValue: 'false', description: 'package check run', name: 'PACKAGE_CHECK') + } + // Configuration for the variables used for this specific repo + environment { + BUILDS_DISCORD=credentials('build_webhook_url') + GITHUB_TOKEN=credentials('498b4638-2d02-4ce5-832d-8a57d01d97ab') + GITLAB_TOKEN=credentials('b6f0f1dd-6952-4cf6-95d1-9c06380283f0') + GITLAB_NAMESPACE=credentials('gitlab-namespace-id') + SCARF_TOKEN=credentials('scarf_api_key') + EXT_GIT_BRANCH = 'develop' + EXT_USER = 'kasmtech' + EXT_REPO = 'kasm-install-wizard' + BUILD_VERSION_ARG = 'KASM_VERSION' + LS_USER = 'linuxserver' + LS_REPO = 'docker-kasm' + CONTAINER_NAME = 'kasm' + DOCKERHUB_IMAGE = 'linuxserver/kasm' + DEV_DOCKERHUB_IMAGE = 'lsiodev/kasm' + PR_DOCKERHUB_IMAGE = 'lspipepr/kasm' + DIST_IMAGE = 'alpine' + MULTIARCH='true' + CI='true' + CI_WEB='true' + CI_PORT='3000' + CI_SSL='true' + CI_DELAY='120' + CI_DOCKERENV='TEST=true' + CI_AUTH='user:password' + CI_WEBPATH='' + } + stages { + // Setup all the basic environment variables needed for the build + stage("Set ENV Variables base"){ + steps{ + script{ + env.EXIT_STATUS = '' + env.LS_RELEASE = sh( + script: '''docker run --rm ghcr.io/linuxserver/alexeiled-skopeo sh -c 'skopeo inspect docker://docker.io/'${DOCKERHUB_IMAGE}':develop 2>/dev/null' | jq -r '.Labels.build_version' | awk '{print $3}' | grep '\\-ls' || : ''', + returnStdout: true).trim() + env.LS_RELEASE_NOTES = sh( + script: '''cat readme-vars.yml | awk -F \\" '/date: "[0-9][0-9].[0-9][0-9].[0-9][0-9]:/ {print $4;exit;}' | sed -E ':a;N;$!ba;s/\\r{0,1}\\n/\\\\n/g' ''', + returnStdout: true).trim() + env.GITHUB_DATE = sh( + script: '''date '+%Y-%m-%dT%H:%M:%S%:z' ''', + returnStdout: true).trim() + env.COMMIT_SHA = sh( + script: '''git rev-parse HEAD''', + returnStdout: true).trim() + env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT + env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' + env.PULL_REQUEST = env.CHANGE_ID + env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.md ./.github/ISSUE_TEMPLATE/issue.feature.md ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml' + } + script{ + env.LS_RELEASE_NUMBER = sh( + script: '''echo ${LS_RELEASE} |sed 's/^.*-ls//g' ''', + returnStdout: true).trim() + } + script{ + env.LS_TAG_NUMBER = sh( + script: '''#! /bin/bash + tagsha=$(git rev-list -n 1 ${LS_RELEASE} 2>/dev/null) + if [ "${tagsha}" == "${COMMIT_SHA}" ]; then + echo ${LS_RELEASE_NUMBER} + elif [ -z "${GIT_COMMIT}" ]; then + echo ${LS_RELEASE_NUMBER} + else + echo $((${LS_RELEASE_NUMBER} + 1)) + fi''', + returnStdout: true).trim() + } + } + } + /* ####################### + Package Version Tagging + ####################### */ + // Grab the current package versions in Git to determine package tag + stage("Set Package tag"){ + steps{ + script{ + env.PACKAGE_TAG = sh( + script: '''#!/bin/bash + if [ -e package_versions.txt ] ; then + cat package_versions.txt | md5sum | cut -c1-8 + else + echo none + fi''', + returnStdout: true).trim() + } + } + } + /* ######################## + External Release Tagging + ######################## */ + // If this is a devel github release use the first in an array from github to determine the ext tag + stage("Set ENV github_devel"){ + steps{ + script{ + env.EXT_RELEASE = sh( + script: '''curl -H "Authorization: token ${GITHUB_TOKEN}" -s https://api.github.com/repos/${EXT_USER}/${EXT_REPO}/releases | jq -r '.[0] | .tag_name' ''', + returnStdout: true).trim() + } + } + } + // If this is a stable or devel github release generate the link for the build message + stage("Set ENV github_link"){ + steps{ + script{ + env.RELEASE_LINK = 'https://github.com/' + env.EXT_USER + '/' + env.EXT_REPO + '/releases/tag/' + env.EXT_RELEASE + } + } + } + // Sanitize the release tag and strip illegal docker or github characters + stage("Sanitize tag"){ + steps{ + script{ + env.EXT_RELEASE_CLEAN = sh( + script: '''echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g' ''', + returnStdout: true).trim() + + def semver = env.EXT_RELEASE_CLEAN =~ /(\d+)\.(\d+)\.(\d+)/ + if (semver.find()) { + env.SEMVER = "${semver[0][1]}.${semver[0][2]}.${semver[0][3]}" + } else { + semver = env.EXT_RELEASE_CLEAN =~ /(\d+)\.(\d+)(?:\.(\d+))?(.*)/ + if (semver.find()) { + if (semver[0][3]) { + env.SEMVER = "${semver[0][1]}.${semver[0][2]}.${semver[0][3]}" + } else if (!semver[0][3] && !semver[0][4]) { + env.SEMVER = "${semver[0][1]}.${semver[0][2]}.${(new Date()).format('YYYYMMdd')}" + } + } + } + + if (env.SEMVER != null) { + if (BRANCH_NAME != "master" && BRANCH_NAME != "main") { + env.SEMVER = "${env.SEMVER}-${BRANCH_NAME}" + } + println("SEMVER: ${env.SEMVER}") + } else { + println("No SEMVER detected") + } + + } + } + } + // If this is a develop build use live docker endpoints + stage("Set ENV live build"){ + when { + branch "develop" + environment name: 'CHANGE_ID', value: '' + } + steps { + script{ + env.IMAGE = env.DOCKERHUB_IMAGE + env.GITHUBIMAGE = 'ghcr.io/' + env.LS_USER + '/' + env.CONTAINER_NAME + env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/' + env.CONTAINER_NAME + env.QUAYIMAGE = 'quay.io/linuxserver.io/' + env.CONTAINER_NAME + if (env.MULTIARCH == 'true') { + env.CI_TAGS = 'amd64-develop-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm32v7-develop-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm64v8-develop-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + } else { + env.CI_TAGS = 'develop-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + } + env.VERSION_TAG = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + env.META_TAG = 'develop-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + env.EXT_RELEASE_TAG = 'develop-version-' + env.EXT_RELEASE_CLEAN + } + } + } + // If this is a dev build use dev docker endpoints + stage("Set ENV dev build"){ + when { + not {branch "develop"} + environment name: 'CHANGE_ID', value: '' + } + steps { + script{ + env.IMAGE = env.DEV_DOCKERHUB_IMAGE + env.GITHUBIMAGE = 'ghcr.io/' + env.LS_USER + '/lsiodev-' + env.CONTAINER_NAME + env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/lsiodev-' + env.CONTAINER_NAME + env.QUAYIMAGE = 'quay.io/linuxserver.io/lsiodev-' + env.CONTAINER_NAME + if (env.MULTIARCH == 'true') { + env.CI_TAGS = 'amd64-develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm32v7-develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm64v8-develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + } else { + env.CI_TAGS = 'develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + } + env.VERSION_TAG = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + env.META_TAG = 'develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + env.EXT_RELEASE_TAG = 'develop-version-' + env.EXT_RELEASE_CLEAN + env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DEV_DOCKERHUB_IMAGE + '/tags/' + } + } + } + // If this is a pull request build use dev docker endpoints + stage("Set ENV PR build"){ + when { + not {environment name: 'CHANGE_ID', value: ''} + } + steps { + script{ + env.IMAGE = env.PR_DOCKERHUB_IMAGE + env.GITHUBIMAGE = 'ghcr.io/' + env.LS_USER + '/lspipepr-' + env.CONTAINER_NAME + env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/lspipepr-' + env.CONTAINER_NAME + env.QUAYIMAGE = 'quay.io/linuxserver.io/lspipepr-' + env.CONTAINER_NAME + if (env.MULTIARCH == 'true') { + env.CI_TAGS = 'amd64-develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm32v7-develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm64v8-develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + } else { + env.CI_TAGS = 'develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + } + env.VERSION_TAG = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + env.META_TAG = 'develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + env.EXT_RELEASE_TAG = 'develop-version-' + env.EXT_RELEASE_CLEAN + env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/pull/' + env.PULL_REQUEST + env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.PR_DOCKERHUB_IMAGE + '/tags/' + } + } + } + // Run ShellCheck + stage('ShellCheck') { + when { + environment name: 'CI', value: 'true' + } + steps { + withCredentials([ + string(credentialsId: 'ci-tests-s3-key-id', variable: 'S3_KEY'), + string(credentialsId: 'ci-tests-s3-secret-access-key', variable: 'S3_SECRET') + ]) { + script{ + env.SHELLCHECK_URL = 'https://ci-tests.linuxserver.io/' + env.IMAGE + '/' + env.META_TAG + '/shellcheck-result.xml' + } + sh '''curl -sL https://raw.githubusercontent.com/linuxserver/docker-shellcheck/master/checkrun.sh | /bin/bash''' + sh '''#! /bin/bash + set -e + docker pull ghcr.io/linuxserver/lsiodev-spaces-file-upload:latest + docker run --rm \ + -e DESTINATION=\"${IMAGE}/${META_TAG}/shellcheck-result.xml\" \ + -e FILE_NAME="shellcheck-result.xml" \ + -e MIMETYPE="text/xml" \ + -v ${WORKSPACE}:/mnt \ + -e SECRET_KEY=\"${S3_SECRET}\" \ + -e ACCESS_KEY=\"${S3_KEY}\" \ + -t ghcr.io/linuxserver/lsiodev-spaces-file-upload:latest \ + python /upload.py''' + } + } + } + // Use helper containers to render templated files + stage('Update-Templates') { + when { + branch "develop" + environment name: 'CHANGE_ID', value: '' + expression { + env.CONTAINER_NAME != null + } + } + steps { + sh '''#! /bin/bash + set -e + TEMPDIR=$(mktemp -d) + docker pull ghcr.io/linuxserver/jenkins-builder:latest + docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=develop -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest + # Stage 1 - Jenkinsfile update + if [[ "$(md5sum Jenkinsfile | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile | awk '{ print $1 }')" ]]; then + mkdir -p ${TEMPDIR}/repo + git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} + cd ${TEMPDIR}/repo/${LS_REPO} + git checkout -f develop + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile ${TEMPDIR}/repo/${LS_REPO}/ + git add Jenkinsfile + git commit -m 'Bot Updating Templated Files' + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all + echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + echo "Updating Jenkinsfile" + rm -Rf ${TEMPDIR} + exit 0 + else + echo "Jenkinsfile is up to date." + fi + # Stage 2 - Delete old templates + OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md" + for i in ${OLD_TEMPLATES}; do + if [[ -f "${i}" ]]; then + TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}" + fi + done + if [[ -n "${TEMPLATES_TO_DELETE}" ]]; then + mkdir -p ${TEMPDIR}/repo + git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} + cd ${TEMPDIR}/repo/${LS_REPO} + git checkout -f develop + for i in ${TEMPLATES_TO_DELETE}; do + git rm "${i}" + done + git commit -m 'Bot Updating Templated Files' + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all + echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + echo "Deleting old templates" + rm -Rf ${TEMPDIR} + exit 0 + else + echo "No templates to delete" + fi + # Stage 3 - Update templates + CURRENTHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) + cd ${TEMPDIR}/docker-${CONTAINER_NAME} + NEWHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) + if [[ "${CURRENTHASH}" != "${NEWHASH}" ]] || ! grep -q '.jenkins-external' "${WORKSPACE}/.gitignore" 2>/dev/null; then + mkdir -p ${TEMPDIR}/repo + git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} + cd ${TEMPDIR}/repo/${LS_REPO} + git checkout -f develop + cd ${TEMPDIR}/docker-${CONTAINER_NAME} + mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/workflows + mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/ISSUE_TEMPLATE + cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ || : + cd ${TEMPDIR}/repo/${LS_REPO}/ + if ! grep -q '.jenkins-external' .gitignore 2>/dev/null; then + echo ".jenkins-external" >> .gitignore + git add .gitignore + fi + git add ${TEMPLATED_FILES} + git commit -m 'Bot Updating Templated Files' + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all + echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + else + echo "false" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + fi + mkdir -p ${TEMPDIR}/gitbook + git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/gitbook/docker-documentation + if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md ${TEMPDIR}/gitbook/docker-documentation/images/ + cd ${TEMPDIR}/gitbook/docker-documentation/ + git add images/docker-${CONTAINER_NAME}.md + git commit -m 'Bot Updating Documentation' + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git --all + fi + mkdir -p ${TEMPDIR}/unraid + git clone https://github.com/linuxserver/docker-templates.git ${TEMPDIR}/unraid/docker-templates + git clone https://github.com/linuxserver/templates.git ${TEMPDIR}/unraid/templates + if [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-logo.png ]]; then + sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-logo.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml + fi + if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml) || ("$(md5sum ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml | awk '{ print $1 }')") ]]; then + cd ${TEMPDIR}/unraid/templates/ + if grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list; then + echo "Image is on the ignore list, marking Unraid template as deprecated" + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ + git add -u unraid/${CONTAINER_NAME}.xml + git mv unraid/${CONTAINER_NAME}.xml unraid/deprecated/${CONTAINER_NAME}.xml || : + git commit -m 'Bot Moving Deprecated Unraid Template' || : + else + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ + git add unraid/${CONTAINER_NAME}.xml + git commit -m 'Bot Updating Unraid Template' + fi + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git --all + fi + rm -Rf ${TEMPDIR}''' + script{ + env.FILES_UPDATED = sh( + script: '''cat /tmp/${COMMIT_SHA}-${BUILD_NUMBER}''', + returnStdout: true).trim() + } + } + } + // Exit the build if the Templated files were just updated + stage('Template-exit') { + when { + branch "develop" + environment name: 'CHANGE_ID', value: '' + environment name: 'FILES_UPDATED', value: 'true' + expression { + env.CONTAINER_NAME != null + } + } + steps { + script{ + env.EXIT_STATUS = 'ABORTED' + } + } + } + /* ####################### + GitLab Mirroring + ####################### */ + // Ping into Gitlab to mirror this repo and have a registry endpoint + stage("GitLab Mirror"){ + when { + environment name: 'EXIT_STATUS', value: '' + } + steps{ + sh '''curl -H "Content-Type: application/json" -H "Private-Token: ${GITLAB_TOKEN}" -X POST https://gitlab.com/api/v4/projects \ + -d '{"namespace_id":'${GITLAB_NAMESPACE}',\ + "name":"'${LS_REPO}'", + "mirror":true,\ + "import_url":"https://github.com/linuxserver/'${LS_REPO}'.git",\ + "issues_access_level":"disabled",\ + "merge_requests_access_level":"disabled",\ + "repository_access_level":"enabled",\ + "visibility":"public"}' ''' + } + } + /* ####################### + Scarf.sh package registry + ####################### */ + // Add package to Scarf.sh and set permissions + stage("Scarf.sh package registry"){ + when { + branch "develop" + environment name: 'EXIT_STATUS', value: '' + } + steps{ + sh '''#! /bin/bash + set -e + PACKAGE_UUID=$(curl -X GET -H "Authorization: Bearer ${SCARF_TOKEN}" https://scarf.sh/api/v1/organizations/linuxserver-ci/packages | jq -r '.[] | select(.name=="linuxserver/kasm") | .uuid') + if [ -z "${PACKAGE_UUID}" ]; then + echo "Adding package to Scarf.sh" + curl -sX POST https://scarf.sh/api/v1/organizations/linuxserver-ci/packages \ + -H "Authorization: Bearer ${SCARF_TOKEN}" \ + -H "Content-Type: application/json" \ + -d '{"name":"linuxserver/kasm",\ + "shortDescription":"example description",\ + "libraryType":"docker",\ + "website":"https://github.com/linuxserver/docker-kasm",\ + "backendUrl":"https://ghcr.io/linuxserver/kasm",\ + "publicUrl":"https://lscr.io/linuxserver/kasm"}' || : + else + echo "Package already exists on Scarf.sh" + fi + ''' + } + } + /* ############### + Build Container + ############### */ + // Build Docker container for push to LS Repo + stage('Build-Single') { + when { + expression { + env.MULTIARCH == 'false' || params.PACKAGE_CHECK == 'true' + } + environment name: 'EXIT_STATUS', value: '' + } + steps { + echo "Running on node: ${NODE_NAME}" + sh "docker build \ + --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ + --label \"org.opencontainers.image.authors=linuxserver.io\" \ + --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-kasm/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-kasm\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-kasm\" \ + --label \"org.opencontainers.image.version=${EXT_RELEASE_CLEAN}-ls${LS_TAG_NUMBER}\" \ + --label \"org.opencontainers.image.revision=${COMMIT_SHA}\" \ + --label \"org.opencontainers.image.vendor=linuxserver.io\" \ + --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ + --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ + --label \"org.opencontainers.image.title=Kasm\" \ + --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/) Workspaces streams containerized apps and desktops to end-users. The Workspaces platform provides enterprise-class orchestration, data loss prevention, and web streaming technology to enable the delivery of containerized workloads to your browser. \" \ + --no-cache --pull -t ${IMAGE}:${META_TAG} \ + --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." + } + } + // Build MultiArch Docker containers for push to LS Repo + stage('Build-Multi') { + when { + allOf { + environment name: 'MULTIARCH', value: 'true' + expression { params.PACKAGE_CHECK == 'false' } + } + environment name: 'EXIT_STATUS', value: '' + } + parallel { + stage('Build X86') { + steps { + echo "Running on node: ${NODE_NAME}" + sh "docker build \ + --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ + --label \"org.opencontainers.image.authors=linuxserver.io\" \ + --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-kasm/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-kasm\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-kasm\" \ + --label \"org.opencontainers.image.version=${EXT_RELEASE_CLEAN}-ls${LS_TAG_NUMBER}\" \ + --label \"org.opencontainers.image.revision=${COMMIT_SHA}\" \ + --label \"org.opencontainers.image.vendor=linuxserver.io\" \ + --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ + --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ + --label \"org.opencontainers.image.title=Kasm\" \ + --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/) Workspaces streams containerized apps and desktops to end-users. The Workspaces platform provides enterprise-class orchestration, data loss prevention, and web streaming technology to enable the delivery of containerized workloads to your browser. \" \ + --no-cache --pull -t ${IMAGE}:amd64-${META_TAG} \ + --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." + } + } + stage('Build ARMHF') { + agent { + label 'ARMHF' + } + steps { + echo "Running on node: ${NODE_NAME}" + echo 'Logging into Github' + sh '''#! /bin/bash + echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin + ''' + sh "docker build \ + --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ + --label \"org.opencontainers.image.authors=linuxserver.io\" \ + --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-kasm/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-kasm\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-kasm\" \ + --label \"org.opencontainers.image.version=${EXT_RELEASE_CLEAN}-ls${LS_TAG_NUMBER}\" \ + --label \"org.opencontainers.image.revision=${COMMIT_SHA}\" \ + --label \"org.opencontainers.image.vendor=linuxserver.io\" \ + --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ + --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ + --label \"org.opencontainers.image.title=Kasm\" \ + --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/) Workspaces streams containerized apps and desktops to end-users. The Workspaces platform provides enterprise-class orchestration, data loss prevention, and web streaming technology to enable the delivery of containerized workloads to your browser. \" \ + --no-cache --pull -f Dockerfile.armhf -t ${IMAGE}:arm32v7-${META_TAG} \ + --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." + sh "docker tag ${IMAGE}:arm32v7-${META_TAG} ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" + retry(5) { + sh "docker push ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" + } + sh '''docker rmi \ + ${IMAGE}:arm32v7-${META_TAG} \ + ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} || :''' + } + } + stage('Build ARM64') { + agent { + label 'ARM64' + } + steps { + echo "Running on node: ${NODE_NAME}" + echo 'Logging into Github' + sh '''#! /bin/bash + echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin + ''' + sh "docker build \ + --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ + --label \"org.opencontainers.image.authors=linuxserver.io\" \ + --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-kasm/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-kasm\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-kasm\" \ + --label \"org.opencontainers.image.version=${EXT_RELEASE_CLEAN}-ls${LS_TAG_NUMBER}\" \ + --label \"org.opencontainers.image.revision=${COMMIT_SHA}\" \ + --label \"org.opencontainers.image.vendor=linuxserver.io\" \ + --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ + --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ + --label \"org.opencontainers.image.title=Kasm\" \ + --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/) Workspaces streams containerized apps and desktops to end-users. The Workspaces platform provides enterprise-class orchestration, data loss prevention, and web streaming technology to enable the delivery of containerized workloads to your browser. \" \ + --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} \ + --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." + sh "docker tag ${IMAGE}:arm64v8-${META_TAG} ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" + retry(5) { + sh "docker push ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" + } + sh '''docker rmi \ + ${IMAGE}:arm64v8-${META_TAG} \ + ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || :''' + } + } + } + } + // Take the image we just built and dump package versions for comparison + stage('Update-packages') { + when { + branch "develop" + environment name: 'CHANGE_ID', value: '' + environment name: 'EXIT_STATUS', value: '' + } + steps { + sh '''#! /bin/bash + set -e + TEMPDIR=$(mktemp -d) + if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false" ]; then + LOCAL_CONTAINER=${IMAGE}:amd64-${META_TAG} + else + LOCAL_CONTAINER=${IMAGE}:${META_TAG} + fi + if [ "${DIST_IMAGE}" == "alpine" ]; then + docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\ + apk info -v > /tmp/package_versions.txt && \ + sort -o /tmp/package_versions.txt /tmp/package_versions.txt && \ + chmod 777 /tmp/package_versions.txt' + elif [ "${DIST_IMAGE}" == "ubuntu" ]; then + docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\ + apt list -qq --installed | sed "s#/.*now ##g" | cut -d" " -f1 > /tmp/package_versions.txt && \ + sort -o /tmp/package_versions.txt /tmp/package_versions.txt && \ + chmod 777 /tmp/package_versions.txt' + elif [ "${DIST_IMAGE}" == "fedora" ]; then + docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\ + rpm -qa > /tmp/package_versions.txt && \ + sort -o /tmp/package_versions.txt /tmp/package_versions.txt && \ + chmod 777 /tmp/package_versions.txt' + elif [ "${DIST_IMAGE}" == "arch" ]; then + docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\ + pacman -Q > /tmp/package_versions.txt && \ + chmod 777 /tmp/package_versions.txt' + fi + NEW_PACKAGE_TAG=$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 ) + echo "Package tag sha from current packages in buit container is ${NEW_PACKAGE_TAG} comparing to old ${PACKAGE_TAG} from github" + if [ "${NEW_PACKAGE_TAG}" != "${PACKAGE_TAG}" ]; then + git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/${LS_REPO} + git --git-dir ${TEMPDIR}/${LS_REPO}/.git checkout -f develop + cp ${TEMPDIR}/package_versions.txt ${TEMPDIR}/${LS_REPO}/ + cd ${TEMPDIR}/${LS_REPO}/ + wait + git add package_versions.txt + git commit -m 'Bot Updating Package Versions' + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all + echo "true" > /tmp/packages-${COMMIT_SHA}-${BUILD_NUMBER} + echo "Package tag updated, stopping build process" + else + echo "false" > /tmp/packages-${COMMIT_SHA}-${BUILD_NUMBER} + echo "Package tag is same as previous continue with build process" + fi + rm -Rf ${TEMPDIR}''' + script{ + env.PACKAGE_UPDATED = sh( + script: '''cat /tmp/packages-${COMMIT_SHA}-${BUILD_NUMBER}''', + returnStdout: true).trim() + } + } + } + // Exit the build if the package file was just updated + stage('PACKAGE-exit') { + when { + branch "develop" + environment name: 'CHANGE_ID', value: '' + environment name: 'PACKAGE_UPDATED', value: 'true' + environment name: 'EXIT_STATUS', value: '' + } + steps { + sh '''#! /bin/bash + echo "Packages were updated. Cleaning up the image and exiting." + if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false" ]; then + docker rmi ${IMAGE}:amd64-${META_TAG} + else + docker rmi ${IMAGE}:${META_TAG} + fi''' + script{ + env.EXIT_STATUS = 'ABORTED' + } + } + } + // Exit the build if this is just a package check and there are no changes to push + stage('PACKAGECHECK-exit') { + when { + branch "develop" + environment name: 'CHANGE_ID', value: '' + environment name: 'PACKAGE_UPDATED', value: 'false' + environment name: 'EXIT_STATUS', value: '' + expression { + params.PACKAGE_CHECK == 'true' + } + } + steps { + sh '''#! /bin/bash + echo "There are no package updates. Cleaning up the image and exiting." + if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false" ]; then + docker rmi ${IMAGE}:amd64-${META_TAG} + else + docker rmi ${IMAGE}:${META_TAG} + fi''' + script{ + env.EXIT_STATUS = 'ABORTED' + } + } + } + /* ####### + Testing + ####### */ + // Run Container tests + stage('Test') { + when { + environment name: 'CI', value: 'true' + environment name: 'EXIT_STATUS', value: '' + } + steps { + withCredentials([ + string(credentialsId: 'ci-tests-s3-key-id', variable: 'S3_KEY'), + string(credentialsId: 'ci-tests-s3-secret-access-key ', variable: 'S3_SECRET') + ]) { + script{ + env.CI_URL = 'https://ci-tests.linuxserver.io/' + env.IMAGE + '/' + env.META_TAG + '/index.html' + } + sh '''#! /bin/bash + set -e + docker pull ghcr.io/linuxserver/ci:latest + if [ "${MULTIARCH}" == "true" ]; then + docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} + docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v7-${META_TAG} + docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} + fi + docker run --rm \ + --shm-size=1gb \ + -v /var/run/docker.sock:/var/run/docker.sock \ + -e IMAGE=\"${IMAGE}\" \ + -e DELAY_START=\"${CI_DELAY}\" \ + -e TAGS=\"${CI_TAGS}\" \ + -e META_TAG=\"${META_TAG}\" \ + -e PORT=\"${CI_PORT}\" \ + -e SSL=\"${CI_SSL}\" \ + -e BASE=\"${DIST_IMAGE}\" \ + -e SECRET_KEY=\"${S3_SECRET}\" \ + -e ACCESS_KEY=\"${S3_KEY}\" \ + -e DOCKER_ENV=\"${CI_DOCKERENV}\" \ + -e WEB_SCREENSHOT=\"${CI_WEB}\" \ + -e WEB_AUTH=\"${CI_AUTH}\" \ + -e WEB_PATH=\"${CI_WEBPATH}\" \ + -e DO_REGION="ams3" \ + -e DO_BUCKET="lsio-ci" \ + -t ghcr.io/linuxserver/ci:latest \ + python /ci/ci.py''' + } + } + } + /* ################## + Release Logic + ################## */ + // If this is an amd64 only image only push a single image + stage('Docker-Push-Single') { + when { + environment name: 'MULTIARCH', value: 'false' + environment name: 'EXIT_STATUS', value: '' + } + steps { + withCredentials([ + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', + usernameVariable: 'DOCKERUSER', + passwordVariable: 'DOCKERPASS' + ], + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: 'Quay.io-Robot', + usernameVariable: 'QUAYUSER', + passwordVariable: 'QUAYPASS' + ] + ]) { + retry(5) { + sh '''#! /bin/bash + set -e + echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin + echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin + echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin + echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin + for PUSHIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${QUAYIMAGE}" "${IMAGE}"; do + docker tag ${IMAGE}:${META_TAG} ${PUSHIMAGE}:${META_TAG} + docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:develop + docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:${EXT_RELEASE_TAG} + if [ -n "${SEMVER}" ]; then + docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:${SEMVER} + fi + docker push ${PUSHIMAGE}:develop + docker push ${PUSHIMAGE}:${META_TAG} + docker push ${PUSHIMAGE}:${EXT_RELEASE_TAG} + if [ -n "${SEMVER}" ]; then + docker push ${PUSHIMAGE}:${SEMVER} + fi + done + ''' + } + sh '''#! /bin/bash + for DELETEIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${QUAYIMAGE}" "${IMAGE}"; do + docker rmi \ + ${DELETEIMAGE}:${META_TAG} \ + ${DELETEIMAGE}:${EXT_RELEASE_TAG} \ + ${DELETEIMAGE}:develop || : + if [ -n "${SEMVER}" ]; then + docker rmi ${DELETEIMAGE}:${SEMVER} || : + fi + done + ''' + } + } + } + // If this is a multi arch release push all images and define the manifest + stage('Docker-Push-Multi') { + when { + environment name: 'MULTIARCH', value: 'true' + environment name: 'EXIT_STATUS', value: '' + } + steps { + withCredentials([ + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', + usernameVariable: 'DOCKERUSER', + passwordVariable: 'DOCKERPASS' + ], + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: 'Quay.io-Robot', + usernameVariable: 'QUAYUSER', + passwordVariable: 'QUAYPASS' + ] + ]) { + retry(5) { + sh '''#! /bin/bash + set -e + echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin + echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin + echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin + echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin + if [ "${CI}" == "false" ]; then + docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} + docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v7-${META_TAG} + docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} + fi + for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do + docker tag ${IMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} + docker tag ${IMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} + docker tag ${IMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} + docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-develop + docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-develop + docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-develop + docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} + docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} + docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} + if [ -n "${SEMVER}" ]; then + docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${SEMVER} + docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${SEMVER} + docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${SEMVER} + fi + docker push ${MANIFESTIMAGE}:amd64-${META_TAG} + docker push ${MANIFESTIMAGE}:arm32v7-${META_TAG} + docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG} + docker push ${MANIFESTIMAGE}:amd64-develop + docker push ${MANIFESTIMAGE}:arm32v7-develop + docker push ${MANIFESTIMAGE}:arm64v8-develop + docker push ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} + docker push ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} + docker push ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} + if [ -n "${SEMVER}" ]; then + docker push ${MANIFESTIMAGE}:amd64-${SEMVER} + docker push ${MANIFESTIMAGE}:arm32v7-${SEMVER} + docker push ${MANIFESTIMAGE}:arm64v8-${SEMVER} + fi + docker manifest push --purge ${MANIFESTIMAGE}:develop || : + docker manifest create ${MANIFESTIMAGE}:develop ${MANIFESTIMAGE}:amd64-develop ${MANIFESTIMAGE}:arm32v7-develop ${MANIFESTIMAGE}:arm64v8-develop + docker manifest annotate ${MANIFESTIMAGE}:develop ${MANIFESTIMAGE}:arm32v7-develop --os linux --arch arm + docker manifest annotate ${MANIFESTIMAGE}:develop ${MANIFESTIMAGE}:arm64v8-develop --os linux --arch arm64 --variant v8 + docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} || : + docker manifest create ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} + docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} --os linux --arch arm + docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} --os linux --arch arm64 --variant v8 + docker manifest push --purge ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} || : + docker manifest create ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} + docker manifest annotate ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} --os linux --arch arm + docker manifest annotate ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} --os linux --arch arm64 --variant v8 + if [ -n "${SEMVER}" ]; then + docker manifest push --purge ${MANIFESTIMAGE}:${SEMVER} || : + docker manifest create ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm32v7-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} + docker manifest annotate ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:arm32v7-${SEMVER} --os linux --arch arm + docker manifest annotate ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} --os linux --arch arm64 --variant v8 + fi + docker manifest push --purge ${MANIFESTIMAGE}:develop + docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} + docker manifest push --purge ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} + if [ -n "${SEMVER}" ]; then + docker manifest push --purge ${MANIFESTIMAGE}:${SEMVER} + fi + done + ''' + } + sh '''#! /bin/bash + for DELETEIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${QUAYIMAGE}" "${IMAGE}"; do + docker rmi \ + ${DELETEIMAGE}:amd64-${META_TAG} \ + ${DELETEIMAGE}:amd64-develop \ + ${DELETEIMAGE}:amd64-${EXT_RELEASE_TAG} \ + ${DELETEIMAGE}:arm32v7-${META_TAG} \ + ${DELETEIMAGE}:arm32v7-develop \ + ${DELETEIMAGE}:arm32v7-${EXT_RELEASE_TAG} \ + ${DELETEIMAGE}:arm64v8-${META_TAG} \ + ${DELETEIMAGE}:arm64v8-develop \ + ${DELETEIMAGE}:arm64v8-${EXT_RELEASE_TAG} || : + if [ -n "${SEMVER}" ]; then + docker rmi \ + ${DELETEIMAGE}:amd64-${SEMVER} \ + ${DELETEIMAGE}:arm32v7-${SEMVER} \ + ${DELETEIMAGE}:arm64v8-${SEMVER} || : + fi + done + docker rmi \ + ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} \ + ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || : + ''' + } + } + } + // If this is a public release tag it in the LS Github + stage('Github-Tag-Push-Release') { + when { + branch "develop" + expression { + env.LS_RELEASE != env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + } + environment name: 'CHANGE_ID', value: '' + environment name: 'EXIT_STATUS', value: '' + } + steps { + echo "Pushing New tag for current commit ${META_TAG}" + sh '''curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/git/tags \ + -d '{"tag":"'${META_TAG}'",\ + "object": "'${COMMIT_SHA}'",\ + "message": "Tagging Release '${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}' to develop",\ + "type": "commit",\ + "tagger": {"name": "LinuxServer Jenkins","email": "jenkins@linuxserver.io","date": "'${GITHUB_DATE}'"}}' ''' + echo "Pushing New release for Tag" + sh '''#! /bin/bash + curl -H "Authorization: token ${GITHUB_TOKEN}" -s https://api.github.com/repos/${EXT_USER}/${EXT_REPO}/releases | jq '.[0] |.body' | sed 's:^.\\(.*\\).$:\\1:' > releasebody.json + echo '{"tag_name":"'${META_TAG}'",\ + "target_commitish": "develop",\ + "name": "'${META_TAG}'",\ + "body": "**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n\\n**'${EXT_REPO}' Changes:**\\n\\n' > start + printf '","draft": false,"prerelease": true}' >> releasebody.json + paste -d'\\0' start releasebody.json > releasebody.json.done + curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done''' + } + } + // Use helper container to sync the current README on master to the dockerhub endpoint + stage('Sync-README') { + when { + environment name: 'CHANGE_ID', value: '' + environment name: 'EXIT_STATUS', value: '' + } + steps { + withCredentials([ + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', + usernameVariable: 'DOCKERUSER', + passwordVariable: 'DOCKERPASS' + ] + ]) { + sh '''#! /bin/bash + set -e + TEMPDIR=$(mktemp -d) + docker pull ghcr.io/linuxserver/jenkins-builder:latest + docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH="${BRANCH_NAME}" -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest + docker pull ghcr.io/linuxserver/readme-sync + docker run --rm=true \ + -e DOCKERHUB_USERNAME=$DOCKERUSER \ + -e DOCKERHUB_PASSWORD=$DOCKERPASS \ + -e GIT_REPOSITORY=${LS_USER}/${LS_REPO} \ + -e DOCKER_REPOSITORY=${IMAGE} \ + -e GIT_BRANCH=master \ + -v ${TEMPDIR}/docker-${CONTAINER_NAME}:/mnt \ + ghcr.io/linuxserver/readme-sync bash -c 'node sync' + rm -Rf ${TEMPDIR} ''' + } + } + } + // If this is a Pull request send the CI link as a comment on it + stage('Pull Request Comment') { + when { + not {environment name: 'CHANGE_ID', value: ''} + environment name: 'CI', value: 'true' + environment name: 'EXIT_STATUS', value: '' + } + steps { + sh '''curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/issues/${PULL_REQUEST}/comments \ + -d '{"body": "I am a bot, here are the test results for this PR: \\n'${CI_URL}' \\n'${SHELLCHECK_URL}'"}' ''' + } + } + } + /* ###################### + Send status to Discord + ###################### */ + post { + always { + script{ + if (env.EXIT_STATUS == "ABORTED"){ + sh 'echo "build aborted"' + } + else if (currentBuild.currentResult == "SUCCESS"){ + sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://wiki.jenkins-ci.org/download/attachments/2916393/headshot.png","embeds": [{"color": 1681177,\ + "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**ShellCheck Results:** '${SHELLCHECK_URL}'\\n**Status:** Success\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\ + "username": "Jenkins"}' ${BUILDS_DISCORD} ''' + } + else { + sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://wiki.jenkins-ci.org/download/attachments/2916393/headshot.png","embeds": [{"color": 16711680,\ + "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**ShellCheck Results:** '${SHELLCHECK_URL}'\\n**Status:** failure\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\ + "username": "Jenkins"}' ${BUILDS_DISCORD} ''' + } + } + } + cleanup { + cleanWs() + } + } +} diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/README.md b/README.md index c23c59e..518b1ae 100644 --- a/README.md +++ b/README.md @@ -1 +1,238 @@ -# Initial-develop + + + +[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)](https://linuxserver.io) + +[![Blog](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Blog)](https://blog.linuxserver.io "all the things you can do with our containers including How-To guides, opinions and much more!") +[![Discord](https://img.shields.io/discord/354974912613449730.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=Discord&logo=discord)](https://discord.gg/YWrKVTn "realtime support / chat with the community and the team.") +[![Discourse](https://img.shields.io/discourse/https/discourse.linuxserver.io/topics.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=discourse)](https://discourse.linuxserver.io "post on our community forum.") +[![Fleet](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Fleet)](https://fleet.linuxserver.io "an online web interface which displays all of our maintained images.") +[![GitHub](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitHub&logo=github)](https://github.com/linuxserver "view the source for all of our repositories.") +[![Open Collective](https://img.shields.io/opencollective/all/linuxserver.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=Supporters&logo=open%20collective)](https://opencollective.com/linuxserver "please consider helping us by either donating or contributing to our budget") + +The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring: + +* regular and timely application updates +* easy user mappings (PGID, PUID) +* custom base image with s6 overlay +* weekly base OS updates with common layers across the entire LinuxServer.io ecosystem to minimise space usage, down time and bandwidth +* regular security updates + +Find us at: + +* [Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more! +* [Discord](https://discord.gg/YWrKVTn) - realtime support / chat with the community and the team. +* [Discourse](https://discourse.linuxserver.io) - post on our community forum. +* [Fleet](https://fleet.linuxserver.io) - an online web interface which displays all of our maintained images. +* [GitHub](https://github.com/linuxserver) - view the source for all of our repositories. +* [Open Collective](https://opencollective.com/linuxserver) - please consider helping us by either donating or contributing to our budget + +# [linuxserver/kasm](https://github.com/linuxserver/docker-kasm) + +[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Fkasm?color=94398d&label-color=555555&logo-color=ffffff&style=for-the-badge&package-type=docker)](https://scarf.sh/gateway/linuxserver-ci/docker/linuxserver%2Fkasm) +[![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-kasm.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-kasm) +[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-kasm.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-kasm/releases) +[![GitHub Package Repository](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitHub%20Package&logo=github)](https://github.com/linuxserver/docker-kasm/packages) +[![GitLab Container Registry](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitLab%20Registry&logo=gitlab)](https://gitlab.com/linuxserver.io/docker-kasm/container_registry) +[![Quay.io](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Quay.io)](https://quay.io/repository/linuxserver.io/kasm) +[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/kasm.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/kasm) +[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/kasm.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/kasm) +[![Jenkins Build](https://img.shields.io/jenkins/build?labelColor=555555&logoColor=ffffff&style=for-the-badge&jobUrl=https%3A%2F%2Fci.linuxserver.io%2Fjob%2FDocker-Pipeline-Builders%2Fjob%2Fdocker-kasm%2Fjob%2Fdevelop%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/) +[![LSIO CI](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=CI&query=CI&url=https%3A%2F%2Fci-tests.linuxserver.io%2Flinuxserver%2Fkasm%2Flatest%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/kasm/latest/index.html) + +[Kasm](https://www.kasmweb.com/) Workspaces streams containerized apps and desktops to end-users. The Workspaces platform provides enterprise-class orchestration, data loss prevention, and web streaming technology to enable the delivery of containerized workloads to your browser. + +[![kasm](https://kasm-ci.s3.amazonaws.com/kasm_logo.png)](https://www.kasmweb.com/) + +## Supported Architectures + +We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/). + +Simply pulling `lscr.io/linuxserver/kasm:develop` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. + +The architectures supported by this image are: + +| Architecture | Available | Tag | +| :----: | :----: | ---- | +| x86-64 | ✅ | amd64-\ | +| arm64 | ✅ | arm64v8-\ | +| armhf| ❌ | | + +## Version Tags + +This image provides various versions that are available via tags. Please read the descriptions carefully and exercise caution when using unstable or development tags. + +| Tag | Available | Description | +| :----: | :----: |--- | +| latest | ✅ | Stable Kasm releases | +| develop | ✅ | Tip of develop | + +## Application Setup + +This container uses [Docker in Docker](https://www.docker.com/blog/docker-can-now-run-within-docker/) and requires being run in `privileged` mode. This container also requires an initial setup that runs on port 3000. + +Access the installation wizard at https://`your ip`:3000 and follow the instructions there. Once setup is complete access https://`your ip`:443 and login with the credentials you entered during setup. The default users are: + +* admin@kasm.local +* user@kasm.local + +Currently Synology systems are not supported due to them blocking CPU scheduling in their Kernel. + +## Usage + +Here are some example snippets to help you get started creating a container. + +### docker-compose (recommended, [click here for more info](https://docs.linuxserver.io/general/docker-compose)) + +```yaml +--- +version: "2.1" +services: + kasm: + image: lscr.io/linuxserver/kasm:develop + container_name: kasm + privileged: true + environment: + - KASM_PORT=443 + - TZ=Europe/London + - DOCKER_HUB_USERNAME=USER #optional + - DOCKER_HUB_PASSWORD=PASS #optional + volumes: + - /path/to/data:/opt + - /path/to/profiles:/profiles #optional + ports: + - 3000:3000 + - 443:443 + restart: unless-stopped +``` + +### docker cli ([click here for more info](https://docs.docker.com/engine/reference/commandline/cli/)) + +```bash +docker run -d \ + --name=kasm \ + --privileged \ + -e KASM_PORT=443 \ + -e TZ=Europe/London \ + -e DOCKER_HUB_USERNAME=USER `#optional` \ + -e DOCKER_HUB_PASSWORD=PASS `#optional` \ + -p 3000:3000 \ + -p 443:443 \ + -v /path/to/data:/opt \ + -v /path/to/profiles:/profiles `#optional` \ + --restart unless-stopped \ + lscr.io/linuxserver/kasm:develop +``` + +## Parameters + +Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `:` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container. + +| Parameter | Function | +| :----: | --- | +| `-p 3000` | Kasm Installation wizard. (https) | +| `-p 443` | Kasm Workspaces interface. (https) | +| `-e KASM_PORT=443` | Specify the port you bind to the outside for Kasm Workspaces. | +| `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London. | +| `-e DOCKER_HUB_USERNAME=USER` | Optionally specify a DockerHub Username to pull private images. | +| `-e DOCKER_HUB_PASSWORD=PASS` | Optionally specify a DockerHub password to pull private images. | +| `-v /opt` | Docker and installation storage. | +| `-v /profiles` | Optionally specify a path for persistent profile storage. | + +## Environment variables from files (Docker secrets) + +You can set any environment variable from a file by using a special prepend `FILE__`. + +As an example: + +```bash +-e FILE__PASSWORD=/run/secrets/mysecretpassword +``` + +Will set the environment variable `PASSWORD` based on the contents of the `/run/secrets/mysecretpassword` file. + +## Umask for running applications + +For all of our images we provide the ability to override the default umask settings for services started within the containers using the optional `-e UMASK=022` setting. +Keep in mind umask is not chmod it subtracts from permissions based on it's value it does not add. Please read up [here](https://en.wikipedia.org/wiki/Umask) before asking for support. + +## Docker Mods + +[![Docker Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=kasm&query=%24.mods%5B%27kasm%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=kasm "view available mods for this container.") [![Docker Universal Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=universal&query=%24.mods%5B%27universal%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=universal "view available universal mods.") + +We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to enable additional functionality within the containers. The list of Mods available for this image (if any) as well as universal mods that can be applied to any one of our images can be accessed via the dynamic badges above. + +## Support Info + +* Shell access whilst the container is running: `docker exec -it kasm /bin/bash` +* To monitor the logs of the container in realtime: `docker logs -f kasm` +* container version number + * `docker inspect -f '{{ index .Config.Labels "build_version" }}' kasm` +* image version number + * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/kasm:develop` + +## Updating Info + +Most of our images are static, versioned, and require an image update and container recreation to update the app inside. With some exceptions (ie. nextcloud, plex), we do not recommend or support updating apps inside the container. Please consult the [Application Setup](#application-setup) section above to see if it is recommended for the image. + +Below are the instructions for updating containers: + +### Via Docker Compose + +* Update all images: `docker-compose pull` + * or update a single image: `docker-compose pull kasm` +* Let compose update all containers as necessary: `docker-compose up -d` + * or update a single container: `docker-compose up -d kasm` +* You can also remove the old dangling images: `docker image prune` + +### Via Docker Run + +* Update the image: `docker pull lscr.io/linuxserver/kasm:develop` +* Stop the running container: `docker stop kasm` +* Delete the container: `docker rm kasm` +* Recreate a new container with the same docker run parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and settings will be preserved) +* You can also remove the old dangling images: `docker image prune` + +### Via Watchtower auto-updater (only use if you don't remember the original parameters) + +* Pull the latest image at its tag and replace it with the same env variables in one run: + + ```bash + docker run --rm \ + -v /var/run/docker.sock:/var/run/docker.sock \ + containrrr/watchtower \ + --run-once kasm + ``` + +* You can also remove the old dangling images: `docker image prune` + +**Note:** We do not endorse the use of Watchtower as a solution to automated updates of existing Docker containers. In fact we generally discourage automated updates. However, this is a useful tool for one-time manual updates of containers where you have forgotten the original parameters. In the long term, we highly recommend using [Docker Compose](https://docs.linuxserver.io/general/docker-compose). + +### Image Update Notifications - Diun (Docker Image Update Notifier) + +* We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported. + +## Building locally + +If you want to make local modifications to these images for development purposes or just to customize the logic: + +```bash +git clone https://github.com/linuxserver/docker-kasm.git +cd docker-kasm +docker build \ + --no-cache \ + --pull \ + -t lscr.io/linuxserver/kasm:develop . +``` + +The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` + +```bash +docker run --rm --privileged multiarch/qemu-user-static:register --reset +``` + +Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`. + +## Versions + +* **02.07.22:** - Initial Release. diff --git a/jenkins-vars.yml b/jenkins-vars.yml new file mode 100644 index 0000000..98f80af --- /dev/null +++ b/jenkins-vars.yml @@ -0,0 +1,29 @@ +--- + +# jenkins variables +project_name: docker-kasm +external_type: github_devel +release_type: prerelease +release_tag: develop +ls_branch: develop +repo_vars: + - EXT_GIT_BRANCH = 'develop' + - EXT_USER = 'kasmtech' + - EXT_REPO = 'kasm-install-wizard' + - BUILD_VERSION_ARG = 'KASM_VERSION' + - LS_USER = 'linuxserver' + - LS_REPO = 'docker-kasm' + - CONTAINER_NAME = 'kasm' + - DOCKERHUB_IMAGE = 'linuxserver/kasm' + - DEV_DOCKERHUB_IMAGE = 'lsiodev/kasm' + - PR_DOCKERHUB_IMAGE = 'lspipepr/kasm' + - DIST_IMAGE = 'alpine' + - MULTIARCH='true' + - CI='true' + - CI_WEB='true' + - CI_PORT='3000' + - CI_SSL='true' + - CI_DELAY='120' + - CI_DOCKERENV='TEST=true' + - CI_AUTH='user:password' + - CI_WEBPATH='' diff --git a/readme-vars.yml b/readme-vars.yml new file mode 100644 index 0000000..94e0ecd --- /dev/null +++ b/readme-vars.yml @@ -0,0 +1,88 @@ +# project information +project_name: kasm +project_url: "https://www.kasmweb.com/" +project_logo: "https://kasm-ci.s3.amazonaws.com/kasm_logo.png" +project_blurb: | + [{{ project_name|capitalize }}]({{ project_url }}) Workspaces streams containerized apps and desktops to end-users. The Workspaces platform provides enterprise-class orchestration, data loss prevention, and web streaming technology to enable the delivery of containerized workloads to your browser. + +project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}" + +project_blurb_optional_extras_enabled: false +project_blurb_optional_extras: [] + +# supported architectures +available_architectures: + - { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"} + - { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"} + +# development version +development_versions: true +development_versions_items: + - { tag: "latest", desc: "Stable Kasm releases" } + - { tag: "develop", desc: "Tip of develop" } + +# container parameters +common_param_env_vars_enabled: false +param_container_name: "{{ project_name }}" + +param_usage_include_net: false + +param_usage_include_env: true +param_env_vars: + - { env_var: "KASM_PORT", env_value: "443", desc: "Specify the port you bind to the outside for Kasm Workspaces." } + - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." } + + +param_usage_include_vols: true +param_volumes: + - { vol_path: "/opt", vol_host_path: "/path/to/data", desc: "Docker and installation storage." } + +param_device_map: false +param_devices: [] + +param_usage_include_ports: true +param_ports: + - { external_port: "3000", internal_port: "3000", port_desc: "Kasm Installation wizard. (https)" } + - { external_port: "443", internal_port: "443", port_desc: "Kasm Workspaces interface. (https)" } + +# optional container parameters +opt_param_usage_include_env: true +opt_param_env_vars: + - { env_var: "DOCKER_HUB_USERNAME", env_value: "USER", desc: "Optionally specify a DockerHub Username to pull private images." } + - { env_var: "DOCKER_HUB_PASSWORD", env_value: "PASS", desc: "Optionally specify a DockerHub password to pull private images." } + +opt_param_usage_include_vols: true +opt_param_volumes: + - { vol_path: "/profiles", vol_host_path: "/path/to/profiles", desc: "Optionally specify a path for persistent profile storage." } + +opt_param_usage_include_ports: false +opt_param_ports: [] + +opt_param_device_map: false +opt_param_devices: [] + +cap_add_param: false +cap_add_param_vars: [] + +opt_cap_add_param: false +opt_cap_add_param_vars: [] +optional_block_1: false +optional_block_1_items: "" + +privileged: true + +# application setup block +app_setup_block_enabled: true +app_setup_block: | + This container uses [Docker in Docker](https://www.docker.com/blog/docker-can-now-run-within-docker/) and requires being run in `privileged` mode. This container also requires an initial setup that runs on port 3000. + + Access the installation wizard at https://`your ip`:3000 and follow the instructions there. Once setup is complete access https://`your ip`:443 and login with the credentials you entered during setup. The default users are: + + * admin@kasm.local + * user@kasm.local + + Currently Synology systems are not supported due to them blocking CPU scheduling in their Kernel. + +# changelog +changelogs: + - { date: "02.07.22:", desc: "Initial Release." } diff --git a/root-armhf/etc/cont-init.d/30-disabled b/root-armhf/etc/cont-init.d/30-disabled new file mode 100644 index 0000000..2a7552e --- /dev/null +++ b/root-armhf/etc/cont-init.d/30-disabled @@ -0,0 +1,5 @@ +#!/usr/bin/with-contenv bash + +for i in {1..10}; do + echo "Armhf/Arm32v7 is not supported" +done diff --git a/root/etc/cont-init.d/30-setup b/root/etc/cont-init.d/30-setup new file mode 100644 index 0000000..19f227a --- /dev/null +++ b/root/etc/cont-init.d/30-setup @@ -0,0 +1,20 @@ +#!/usr/bin/with-contenv bash + +# Create directories +if [ ! -d "/opt/docker" ]; then + mkdir -p /opt/docker +fi + +# Login to Dockerhub +if [ ! -z "${DOCKER_HUB_USERNAME}" ]; then + docker login --username $DOCKER_HUB_USERNAME --password $DOCKER_HUB_PASSWORD +fi + +# Generate self cert for wizard +if [ ! -f "/opt/kasm/certs/kasm_wizard.crt" ]; then + mkdir -p /opt/kasm/certs + openssl req -x509 -nodes -days 1825 -newkey rsa:2048 \ + -keyout /opt/kasm/certs/kasm_wizard.key \ + -out /opt/kasm/certs/kasm_wizard.crt \ + -subj "/C=US/ST=VA/L=None/O=None/OU=DoFu/CN=$(hostname)/emailAddress=none@none.none" +fi diff --git a/root/etc/services.d/docker/run b/root/etc/services.d/docker/run new file mode 100644 index 0000000..b59d67d --- /dev/null +++ b/root/etc/services.d/docker/run @@ -0,0 +1,14 @@ +#!/usr/bin/with-contenv bash + +_term() { + if [ -f "/opt/kasm/bin/stop" ]; then + echo "Caught SIGTERM signal!" + echo "Stopping Kasm Containers" + /opt/kasm/bin/stop + pid=$(pidof stop) + # terminate when the stop process dies + tail --pid=${pid} -f /dev/null + fi +} + +exec /usr/local/bin/dockerd-entrypoint.sh -l error --data-root /opt/docker diff --git a/root/etc/services.d/wizard/run b/root/etc/services.d/wizard/run new file mode 100644 index 0000000..b124ad2 --- /dev/null +++ b/root/etc/services.d/wizard/run @@ -0,0 +1,12 @@ +#!/usr/bin/with-contenv bash + +# Wait for docker to be up +while true; do + if [ -S "/var/run/docker.sock" ]; then + break + fi + sleep 1 +done + +cd /wizard +/usr/bin/node index.js diff --git a/root/usr/local/bin/dockerd-entrypoint.sh b/root/usr/local/bin/dockerd-entrypoint.sh new file mode 100755 index 0000000..0f843e0 --- /dev/null +++ b/root/usr/local/bin/dockerd-entrypoint.sh @@ -0,0 +1,196 @@ +#!/bin/sh +set -eu + +_tls_ensure_private() { + local f="$1"; shift + [ -s "$f" ] || openssl genrsa -out "$f" 4096 +} +_tls_san() { + { + ip -oneline address | awk '{ gsub(/\/.+$/, "", $4); print "IP:" $4 }' + { + cat /etc/hostname + echo 'docker' + echo 'localhost' + hostname -f + hostname -s + } | sed 's/^/DNS:/' + [ -z "${DOCKER_TLS_SAN:-}" ] || echo "$DOCKER_TLS_SAN" + } | sort -u | xargs printf '%s,' | sed "s/,\$//" +} +_tls_generate_certs() { + local dir="$1"; shift + + # if ca/key.pem || !ca/cert.pem, generate CA public if necessary + # if ca/key.pem, generate server public + # if ca/key.pem, generate client public + # (regenerating public certs every startup to account for SAN/IP changes and/or expiration) + + # https://github.com/FiloSottile/mkcert/issues/174 + local certValidDays='825' + + if [ -s "$dir/ca/key.pem" ] || [ ! -s "$dir/ca/cert.pem" ]; then + # if we either have a CA private key or do *not* have a CA public key, then we should create/manage the CA + mkdir -p "$dir/ca" + _tls_ensure_private "$dir/ca/key.pem" + openssl req -new -key "$dir/ca/key.pem" \ + -out "$dir/ca/cert.pem" \ + -subj '/CN=docker:dind CA' -x509 -days "$certValidDays" + fi + + if [ -s "$dir/ca/key.pem" ]; then + # if we have a CA private key, we should create/manage a server key + mkdir -p "$dir/server" + _tls_ensure_private "$dir/server/key.pem" + openssl req -new -key "$dir/server/key.pem" \ + -out "$dir/server/csr.pem" \ + -subj '/CN=docker:dind server' + cat > "$dir/server/openssl.cnf" <<-EOF + [ x509_exts ] + subjectAltName = $(_tls_san) + EOF + openssl x509 -req \ + -in "$dir/server/csr.pem" \ + -CA "$dir/ca/cert.pem" \ + -CAkey "$dir/ca/key.pem" \ + -CAcreateserial \ + -out "$dir/server/cert.pem" \ + -days "$certValidDays" \ + -extfile "$dir/server/openssl.cnf" \ + -extensions x509_exts + cp "$dir/ca/cert.pem" "$dir/server/ca.pem" + openssl verify -CAfile "$dir/server/ca.pem" "$dir/server/cert.pem" + fi + + if [ -s "$dir/ca/key.pem" ]; then + # if we have a CA private key, we should create/manage a client key + mkdir -p "$dir/client" + _tls_ensure_private "$dir/client/key.pem" + chmod 0644 "$dir/client/key.pem" # openssl defaults to 0600 for the private key, but this one needs to be shared with arbitrary client contexts + openssl req -new \ + -key "$dir/client/key.pem" \ + -out "$dir/client/csr.pem" \ + -subj '/CN=docker:dind client' + cat > "$dir/client/openssl.cnf" <<-'EOF' + [ x509_exts ] + extendedKeyUsage = clientAuth + EOF + openssl x509 -req \ + -in "$dir/client/csr.pem" \ + -CA "$dir/ca/cert.pem" \ + -CAkey "$dir/ca/key.pem" \ + -CAcreateserial \ + -out "$dir/client/cert.pem" \ + -days "$certValidDays" \ + -extfile "$dir/client/openssl.cnf" \ + -extensions x509_exts + cp "$dir/ca/cert.pem" "$dir/client/ca.pem" + openssl verify -CAfile "$dir/client/ca.pem" "$dir/client/cert.pem" + fi +} + +# no arguments passed +# or first arg is `-f` or `--some-option` +if [ "$#" -eq 0 ] || [ "${1#-}" != "$1" ]; then + # set "dockerSocket" to the default "--host" *unix socket* value (for both standard or rootless) + uid="$(id -u)" + if [ "$uid" = '0' ]; then + dockerSocket='unix:///var/run/docker.sock' + else + # if we're not root, we must be trying to run rootless + : "${XDG_RUNTIME_DIR:=/run/user/$uid}" + dockerSocket="unix://$XDG_RUNTIME_DIR/docker.sock" + fi + case "${DOCKER_HOST:-}" in + unix://*) + dockerSocket="$DOCKER_HOST" + ;; + esac + + # add our default arguments + if [ -n "${DOCKER_TLS_CERTDIR:-}" ] \ + && _tls_generate_certs "$DOCKER_TLS_CERTDIR" \ + && [ -s "$DOCKER_TLS_CERTDIR/server/ca.pem" ] \ + && [ -s "$DOCKER_TLS_CERTDIR/server/cert.pem" ] \ + && [ -s "$DOCKER_TLS_CERTDIR/server/key.pem" ] \ + ; then + # generate certs and use TLS if requested/possible (default in 19.03+) + set -- dockerd \ + --host="$dockerSocket" \ + --host=tcp://0.0.0.0:2376 \ + --tlsverify \ + --tlscacert "$DOCKER_TLS_CERTDIR/server/ca.pem" \ + --tlscert "$DOCKER_TLS_CERTDIR/server/cert.pem" \ + --tlskey "$DOCKER_TLS_CERTDIR/server/key.pem" \ + "$@" + DOCKERD_ROOTLESS_ROOTLESSKIT_FLAGS="${DOCKERD_ROOTLESS_ROOTLESSKIT_FLAGS:-} -p 0.0.0.0:2376:2376/tcp" + else + # TLS disabled (-e DOCKER_TLS_CERTDIR='') or missing certs + set -- dockerd \ + --host="$dockerSocket" \ + "$@" + DOCKERD_ROOTLESS_ROOTLESSKIT_FLAGS="${DOCKERD_ROOTLESS_ROOTLESSKIT_FLAGS:-} -p 0.0.0.0:2375:2375/tcp" + fi +fi + +if [ "$1" = 'dockerd' ]; then + # explicitly remove Docker's default PID file to ensure that it can start properly if it was stopped uncleanly (and thus didn't clean up the PID file) + find /run /var/run -iname 'docker*.pid' -delete || : + + if dockerd --version | grep -qF ' 20.10.'; then + set -- docker-init -- "$@" + fi + + if ! iptables -nL > /dev/null 2>&1; then + # if iptables fails to run, chances are high the necessary kernel modules aren't loaded (perhaps the host is using nftables with the translating "iptables" wrappers, for example) + # https://github.com/docker-library/docker/issues/350 + # https://github.com/moby/moby/issues/26824 + modprobe ip_tables || : + fi + + uid="$(id -u)" + if [ "$uid" != '0' ]; then + # if we're not root, we must be trying to run rootless + if ! command -v rootlesskit > /dev/null; then + echo >&2 "error: attempting to run rootless dockerd but missing 'rootlesskit' (perhaps the 'docker:dind-rootless' image variant is intended?)" + exit 1 + fi + user="$(id -un 2>/dev/null || :)" + if ! grep -qE "^($uid${user:+|$user}):" /etc/subuid || ! grep -qE "^($uid${user:+|$user}):" /etc/subgid; then + echo >&2 "error: attempting to run rootless dockerd but missing necessary entries in /etc/subuid and/or /etc/subgid for $uid" + exit 1 + fi + : "${XDG_RUNTIME_DIR:=/run/user/$uid}" + export XDG_RUNTIME_DIR + if ! mkdir -p "$XDG_RUNTIME_DIR" || [ ! -w "$XDG_RUNTIME_DIR" ] || ! mkdir -p "$HOME/.local/share/docker" || [ ! -w "$HOME/.local/share/docker" ]; then + echo >&2 "error: attempting to run rootless dockerd but need writable HOME ($HOME) and XDG_RUNTIME_DIR ($XDG_RUNTIME_DIR) for user $uid" + exit 1 + fi + if [ -f /proc/sys/kernel/unprivileged_userns_clone ] && unprivClone="$(cat /proc/sys/kernel/unprivileged_userns_clone)" && [ "$unprivClone" != '1' ]; then + echo >&2 "error: attempting to run rootless dockerd but need 'kernel.unprivileged_userns_clone' (/proc/sys/kernel/unprivileged_userns_clone) set to 1" + exit 1 + fi + if [ -f /proc/sys/user/max_user_namespaces ] && maxUserns="$(cat /proc/sys/user/max_user_namespaces)" && [ "$maxUserns" = '0' ]; then + echo >&2 "error: attempting to run rootless dockerd but need 'user.max_user_namespaces' (/proc/sys/user/max_user_namespaces) set to a sufficiently large value" + exit 1 + fi + # TODO overlay support detection? + exec rootlesskit \ + --net="${DOCKERD_ROOTLESS_ROOTLESSKIT_NET:-vpnkit}" \ + --mtu="${DOCKERD_ROOTLESS_ROOTLESSKIT_MTU:-1500}" \ + --disable-host-loopback \ + --port-driver=builtin \ + --copy-up=/etc \ + --copy-up=/run \ + ${DOCKERD_ROOTLESS_ROOTLESSKIT_FLAGS:-} \ + "$@" + elif [ -x '/usr/local/bin/dind' ]; then + # if we have the (mostly defunct now) Docker-in-Docker wrapper script, use it + set -- '/usr/local/bin/dind' "$@" + fi +else + # if it isn't `dockerd` we're trying to run, pass it through `docker-entrypoint.sh` so it gets `DOCKER_HOST` set appropriately too + set -- docker-entrypoint.sh "$@" +fi + +exec "$@" From 4801d37e727c5ebba7e4f9e8f9fa53867b95e42d Mon Sep 17 00:00:00 2001 From: thelamer Date: Tue, 5 Jul 2022 09:28:48 -0400 Subject: [PATCH 003/337] update description --- README.md | 6 ++++-- readme-vars.yml | 8 +++++--- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 518b1ae..d81f90d 100644 --- a/README.md +++ b/README.md @@ -40,9 +40,11 @@ Find us at: [![Jenkins Build](https://img.shields.io/jenkins/build?labelColor=555555&logoColor=ffffff&style=for-the-badge&jobUrl=https%3A%2F%2Fci.linuxserver.io%2Fjob%2FDocker-Pipeline-Builders%2Fjob%2Fdocker-kasm%2Fjob%2Fdevelop%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/) [![LSIO CI](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=CI&query=CI&url=https%3A%2F%2Fci-tests.linuxserver.io%2Flinuxserver%2Fkasm%2Flatest%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/kasm/latest/index.html) -[Kasm](https://www.kasmweb.com/) Workspaces streams containerized apps and desktops to end-users. The Workspaces platform provides enterprise-class orchestration, data loss prevention, and web streaming technology to enable the delivery of containerized workloads to your browser. +[Kasm](https://www.kasmweb.com/?utm_campaign=LinuxServer&utm_source=listing) Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services. Kasm uses devops-enabled Containerized Desktop Infrastructure (CDI) to create on-demand, disposable, docker containers that are accessible via web browser. Example use-cases include Remote Browser Isolation (RBI), Data Loss Prevention (DLP), Desktop as a Service (DaaS), Secure Remote Access Services (RAS), and Open Source Intelligence (OSINT) collections. -[![kasm](https://kasm-ci.s3.amazonaws.com/kasm_logo.png)](https://www.kasmweb.com/) +The rendering of the graphical-based containers is powered by the open-source project [KasmVNC](https://www.kasmweb.com/kasmvnc.html?utm_campaign=LinuxServer&utm_source=kasmvnc). + +[![kasm](https://kasm-ci.s3.amazonaws.com/kasm_wide.png)](https://www.kasmweb.com/?utm_campaign=LinuxServer&utm_source=listing) ## Supported Architectures diff --git a/readme-vars.yml b/readme-vars.yml index 94e0ecd..b48d6e3 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -1,9 +1,11 @@ # project information project_name: kasm -project_url: "https://www.kasmweb.com/" -project_logo: "https://kasm-ci.s3.amazonaws.com/kasm_logo.png" +project_url: "https://www.kasmweb.com/?utm_campaign=LinuxServer&utm_source=listing" +project_logo: "https://kasm-ci.s3.amazonaws.com/kasm_wide.png" project_blurb: | - [{{ project_name|capitalize }}]({{ project_url }}) Workspaces streams containerized apps and desktops to end-users. The Workspaces platform provides enterprise-class orchestration, data loss prevention, and web streaming technology to enable the delivery of containerized workloads to your browser. + [{{ project_name|capitalize }}]({{ project_url }}) Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services. Kasm uses devops-enabled Containerized Desktop Infrastructure (CDI) to create on-demand, disposable, docker containers that are accessible via web browser. Example use-cases include Remote Browser Isolation (RBI), Data Loss Prevention (DLP), Desktop as a Service (DaaS), Secure Remote Access Services (RAS), and Open Source Intelligence (OSINT) collections. + + The rendering of the graphical-based containers is powered by the open-source project [KasmVNC](https://www.kasmweb.com/kasmvnc.html?utm_campaign=LinuxServer&utm_source=kasmvnc). project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}" From c3034be8d03df99fdd38330c2724a231f44a9499 Mon Sep 17 00:00:00 2001 From: thelamer Date: Thu, 7 Jul 2022 20:10:32 -0400 Subject: [PATCH 004/337] update path for develop ingestion --- Dockerfile | 3 +-- Dockerfile.aarch64 | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 23b0717..df604aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -54,8 +54,7 @@ RUN \ mkdir -p /wizard && \ if [ -z ${KASM_VERSION+x} ]; then \ KASM_VERSION=$(curl -sX GET 'https://api.github.com/repos/kasmtech/kasm-install-wizard/releases' \ - | jq -r '.[] | select (.prerelease==true)' \ - | jq -rs 'max_by(.name | split(".") | map(tonumber)) | .name'); \ + | jq -r 'map(select(.prerelease)) | sort_by(.published_at) | last | .tag_name'); \ fi && \ curl -o \ /tmp/wizard.tar.gz -L \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 7d4a8f3..38cf24a 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -54,8 +54,7 @@ RUN \ mkdir -p /wizard && \ if [ -z ${KASM_VERSION+x} ]; then \ KASM_VERSION=$(curl -sX GET 'https://api.github.com/repos/kasmtech/kasm-install-wizard/releases' \ - | jq -r '.[] | select (.prerelease==true)' \ - | jq -rs 'max_by(.name | split(".") | map(tonumber)) | .name'); \ + | jq -r 'map(select(.prerelease)) | sort_by(.published_at) | last | .tag_name'); \ fi && \ curl -o \ /tmp/wizard.tar.gz -L \ From e815ad79d5558046af4653860af6f690c27fcd71 Mon Sep 17 00:00:00 2001 From: thelamer Date: Fri, 8 Jul 2022 10:42:21 -0400 Subject: [PATCH 005/337] swap from using github devel to custom command --- .github/workflows/external_trigger.yml | 2 +- Jenkinsfile | 30 +++++++++----------------- jenkins-vars.yml | 6 ++---- 3 files changed, 13 insertions(+), 25 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 415314d..c446a1e 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -18,7 +18,7 @@ jobs: fi echo "**** External trigger running off of develop branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP\". ****" echo "**** Retrieving external version ****" - EXT_RELEASE=$(curl -u "${{ secrets.CR_USER }}:${{ secrets.CR_PAT }}" -sX GET "https://api.github.com/repos/kasmtech/kasm-install-wizard/releases" | jq -r '.[0] | .tag_name') + EXT_RELEASE=$(curl -u ${{ secrets.CR_USER }}:${{ secrets.CR_PAT }} -sX GET 'https://api.github.com/repos/kasmtech/kasm-install-wizard/releases'| jq -r 'map(select(.prerelease)) | sort_by(.published_at) | last | .tag_name') if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then echo "**** Can't retrieve external version, exiting ****" FAILURE_REASON="Can't retrieve external version for kasm branch develop" diff --git a/Jenkinsfile b/Jenkinsfile index 909090a..6b135db 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,9 +17,6 @@ pipeline { GITLAB_TOKEN=credentials('b6f0f1dd-6952-4cf6-95d1-9c06380283f0') GITLAB_NAMESPACE=credentials('gitlab-namespace-id') SCARF_TOKEN=credentials('scarf_api_key') - EXT_GIT_BRANCH = 'develop' - EXT_USER = 'kasmtech' - EXT_REPO = 'kasm-install-wizard' BUILD_VERSION_ARG = 'KASM_VERSION' LS_USER = 'linuxserver' LS_REPO = 'docker-kasm' @@ -102,21 +99,14 @@ pipeline { /* ######################## External Release Tagging ######################## */ - // If this is a devel github release use the first in an array from github to determine the ext tag - stage("Set ENV github_devel"){ + // If this is a custom command to determine version use that command + stage("Set tag custom bash"){ steps{ script{ env.EXT_RELEASE = sh( - script: '''curl -H "Authorization: token ${GITHUB_TOKEN}" -s https://api.github.com/repos/${EXT_USER}/${EXT_REPO}/releases | jq -r '.[0] | .tag_name' ''', + script: ''' curl -sX GET 'https://api.github.com/repos/kasmtech/kasm-install-wizard/releases'| jq -r 'map(select(.prerelease)) | sort_by(.published_at) | last | .tag_name' ''', returnStdout: true).trim() - } - } - } - // If this is a stable or devel github release generate the link for the build message - stage("Set ENV github_link"){ - steps{ - script{ - env.RELEASE_LINK = 'https://github.com/' + env.EXT_USER + '/' + env.EXT_REPO + '/releases/tag/' + env.EXT_RELEASE + env.RELEASE_LINK = 'custom_command' } } } @@ -464,7 +454,7 @@ pipeline { --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Kasm\" \ - --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/) Workspaces streams containerized apps and desktops to end-users. The Workspaces platform provides enterprise-class orchestration, data loss prevention, and web streaming technology to enable the delivery of containerized workloads to your browser. \" \ + --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/?utm_campaign=LinuxServer&utm_source=listing) Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services. Kasm uses devops-enabled Containerized Desktop Infrastructure (CDI) to create on-demand, disposable, docker containers that are accessible via web browser. Example use-cases include Remote Browser Isolation (RBI), Data Loss Prevention (DLP), Desktop as a Service (DaaS), Secure Remote Access Services (RAS), and Open Source Intelligence (OSINT) collections. The rendering of the graphical-based containers is powered by the open-source project [KasmVNC](https://www.kasmweb.com/kasmvnc.html?utm_campaign=LinuxServer&utm_source=kasmvnc). \" \ --no-cache --pull -t ${IMAGE}:${META_TAG} \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." } @@ -494,7 +484,7 @@ pipeline { --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Kasm\" \ - --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/) Workspaces streams containerized apps and desktops to end-users. The Workspaces platform provides enterprise-class orchestration, data loss prevention, and web streaming technology to enable the delivery of containerized workloads to your browser. \" \ + --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/?utm_campaign=LinuxServer&utm_source=listing) Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services. Kasm uses devops-enabled Containerized Desktop Infrastructure (CDI) to create on-demand, disposable, docker containers that are accessible via web browser. Example use-cases include Remote Browser Isolation (RBI), Data Loss Prevention (DLP), Desktop as a Service (DaaS), Secure Remote Access Services (RAS), and Open Source Intelligence (OSINT) collections. The rendering of the graphical-based containers is powered by the open-source project [KasmVNC](https://www.kasmweb.com/kasmvnc.html?utm_campaign=LinuxServer&utm_source=kasmvnc). \" \ --no-cache --pull -t ${IMAGE}:amd64-${META_TAG} \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." } @@ -521,7 +511,7 @@ pipeline { --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Kasm\" \ - --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/) Workspaces streams containerized apps and desktops to end-users. The Workspaces platform provides enterprise-class orchestration, data loss prevention, and web streaming technology to enable the delivery of containerized workloads to your browser. \" \ + --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/?utm_campaign=LinuxServer&utm_source=listing) Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services. Kasm uses devops-enabled Containerized Desktop Infrastructure (CDI) to create on-demand, disposable, docker containers that are accessible via web browser. Example use-cases include Remote Browser Isolation (RBI), Data Loss Prevention (DLP), Desktop as a Service (DaaS), Secure Remote Access Services (RAS), and Open Source Intelligence (OSINT) collections. The rendering of the graphical-based containers is powered by the open-source project [KasmVNC](https://www.kasmweb.com/kasmvnc.html?utm_campaign=LinuxServer&utm_source=kasmvnc). \" \ --no-cache --pull -f Dockerfile.armhf -t ${IMAGE}:arm32v7-${META_TAG} \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh "docker tag ${IMAGE}:arm32v7-${META_TAG} ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" @@ -555,7 +545,7 @@ pipeline { --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Kasm\" \ - --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/) Workspaces streams containerized apps and desktops to end-users. The Workspaces platform provides enterprise-class orchestration, data loss prevention, and web streaming technology to enable the delivery of containerized workloads to your browser. \" \ + --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/?utm_campaign=LinuxServer&utm_source=listing) Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services. Kasm uses devops-enabled Containerized Desktop Infrastructure (CDI) to create on-demand, disposable, docker containers that are accessible via web browser. Example use-cases include Remote Browser Isolation (RBI), Data Loss Prevention (DLP), Desktop as a Service (DaaS), Secure Remote Access Services (RAS), and Open Source Intelligence (OSINT) collections. The rendering of the graphical-based containers is powered by the open-source project [KasmVNC](https://www.kasmweb.com/kasmvnc.html?utm_campaign=LinuxServer&utm_source=kasmvnc). \" \ --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh "docker tag ${IMAGE}:arm64v8-${META_TAG} ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" @@ -921,11 +911,11 @@ pipeline { "tagger": {"name": "LinuxServer Jenkins","email": "jenkins@linuxserver.io","date": "'${GITHUB_DATE}'"}}' ''' echo "Pushing New release for Tag" sh '''#! /bin/bash - curl -H "Authorization: token ${GITHUB_TOKEN}" -s https://api.github.com/repos/${EXT_USER}/${EXT_REPO}/releases | jq '.[0] |.body' | sed 's:^.\\(.*\\).$:\\1:' > releasebody.json + echo "Updating to ${EXT_RELEASE_CLEAN}" > releasebody.json echo '{"tag_name":"'${META_TAG}'",\ "target_commitish": "develop",\ "name": "'${META_TAG}'",\ - "body": "**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n\\n**'${EXT_REPO}' Changes:**\\n\\n' > start + "body": "**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n\\n**Remote Changes:**\\n\\n' > start printf '","draft": false,"prerelease": true}' >> releasebody.json paste -d'\\0' start releasebody.json > releasebody.json.done curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done''' diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 98f80af..217cb0b 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -2,14 +2,12 @@ # jenkins variables project_name: docker-kasm -external_type: github_devel +external_type: na +custom_version_command: "curl -sX GET 'https://api.github.com/repos/kasmtech/kasm-install-wizard/releases'| jq -r 'map(select(.prerelease)) | sort_by(.published_at) | last | .tag_name'" release_type: prerelease release_tag: develop ls_branch: develop repo_vars: - - EXT_GIT_BRANCH = 'develop' - - EXT_USER = 'kasmtech' - - EXT_REPO = 'kasm-install-wizard' - BUILD_VERSION_ARG = 'KASM_VERSION' - LS_USER = 'linuxserver' - LS_REPO = 'docker-kasm' From 4f9a2a5d36e8dafa58444452cc5cc9503d648300 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 8 Jul 2022 17:00:03 +0200 Subject: [PATCH 006/337] Bot Updating Templated Files --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..df432a4 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.jenkins-external From e06c72f1693d43f78d378c452a43414acb26a8a6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 8 Jul 2022 17:03:10 +0200 Subject: [PATCH 007/337] Bot Updating Package Versions --- package_versions.txt | 96 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100755 package_versions.txt diff --git a/package_versions.txt b/package_versions.txt new file mode 100755 index 0000000..7e78c1f --- /dev/null +++ b/package_versions.txt @@ -0,0 +1,96 @@ +alpine-baselayout-3.2.0-r22 +alpine-baselayout-data-3.2.0-r22 +alpine-keys-2.4-r1 +apk-tools-2.12.9-r3 +bash-5.1.16-r2 +brotli-libs-1.0.9-r6 +btrfs-progs-5.17-r0 +busybox-1.35.0-r14 +c-ares-1.18.1-r0 +ca-certificates-20211220-r0 +ca-certificates-bundle-20211220-r0 +containerd-1.6.6-r0 +coreutils-9.1-r0 +curl-7.83.1-r2 +device-mapper-libs-2.02.187-r2 +docker-20.10.16-r0 +docker-cli-20.10.16-r0 +docker-cli-compose-2.5.0-r1 +docker-engine-20.10.16-r0 +e2fsprogs-1.46.5-r0 +e2fsprogs-extra-1.46.5-r0 +e2fsprogs-libs-1.46.5-r0 +eudev-libs-3.2.11-r0 +expat-2.4.8-r0 +findutils-4.9.0-r0 +fuse-common-3.11.0-r0 +fuse-overlayfs-1.8.2-r0 +fuse3-3.11.0-r0 +fuse3-libs-3.11.0-r0 +gdbm-1.23-r0 +gmp-6.2.1-r2 +icu-data-en-71.1-r2 +icu-libs-71.1-r2 +inih-55-r0 +ip6tables-1.8.8-r1 +iptables-1.8.8-r1 +jq-1.6-r1 +keyutils-libs-1.6.3-r1 +krb5-conf-1.0-r2 +krb5-libs-1.19.3-r0 +libacl-2.3.1-r0 +libattr-2.5.1-r1 +libblkid-2.38-r1 +libbz2-1.0.8-r1 +libc-utils-0.7.2-r3 +libcom_err-1.46.5-r0 +libcrypto1.1-1.1.1p-r0 +libcurl-7.83.1-r2 +libffi-3.4.2-r1 +libgcc-11.2.1_git20220219-r2 +libintl-0.21-r2 +libmnl-1.0.5-r0 +libnftnl-1.2.1-r0 +libproc-3.3.17-r1 +libseccomp-2.5.2-r1 +libssl1.1-1.1.1p-r0 +libstdc++-11.2.1_git20220219-r2 +libtirpc-1.3.2-r0 +libtirpc-conf-1.3.2-r0 +libuuid-2.38-r1 +libverto-0.3.2-r0 +linux-pam-1.5.2-r0 +lzo-2.10-r3 +mpdecimal-2.5.1-r1 +musl-1.2.3-r0 +musl-utils-1.2.3-r0 +ncurses-libs-6.3_p20220521-r0 +ncurses-terminfo-base-6.3_p20220521-r0 +nghttp2-libs-1.47.0-r0 +nodejs-16.15.0-r1 +oniguruma-6.9.8-r0 +openssl-1.1.1q-r0 +pigz-2.7-r0 +procps-3.3.17-r1 +python3-3.10.4-r0 +readline-8.1.2-r0 +runc-1.1.2-r0 +scanelf-1.3.4-r0 +shadow-4.10-r3 +shadow-libs-4.10-r3 +shadow-subids-4.10-r3 +skalibs-2.11.2.0-r0 +sqlite-libs-3.38.5-r0 +ssl_client-1.35.0-r14 +sudo-1.9.10-r0 +tini-static-0.19.0-r0 +tzdata-2022a-r0 +userspace-rcu-0.13.1-r0 +utmps-libs-0.1.2.0-r0 +xfsprogs-5.16.0-r1 +xz-5.2.5-r1 +xz-libs-5.2.5-r1 +zfs-2.1.5-r0 +zfs-libs-2.1.5-r0 +zlib-1.2.12-r1 +zstd-libs-1.5.2-r1 From a3ecfd8044bca721492da758693e978317301d37 Mon Sep 17 00:00:00 2001 From: thelamer Date: Fri, 8 Jul 2022 11:24:09 -0400 Subject: [PATCH 008/337] need wizard kill --- root/etc/services.d/wizard/run | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/root/etc/services.d/wizard/run b/root/etc/services.d/wizard/run index b124ad2..57d7d2b 100644 --- a/root/etc/services.d/wizard/run +++ b/root/etc/services.d/wizard/run @@ -8,5 +8,10 @@ while true; do sleep 1 done +# Don't do anything if wizard is disabled +if [ -f "/opt/NO_WIZARD" ]; then + sleep infinity +fi + cd /wizard /usr/bin/node index.js From 355e9f2050c5217d9d2cb11b9e3148159ffd49db Mon Sep 17 00:00:00 2001 From: thelamer Date: Fri, 8 Jul 2022 13:37:25 -0400 Subject: [PATCH 009/337] add version arg to dockerfiles --- Dockerfile | 1 + Dockerfile.aarch64 | 1 + Dockerfile.armhf | 1 + 3 files changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index df604aa..d1edd74 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,7 @@ FROM ghcr.io/linuxserver/baseimage-alpine:3.16 # set version label ARG BUILD_DATE ARG KASM_VERSION +ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="thelamer" diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 38cf24a..47ef8db 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -3,6 +3,7 @@ FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.16 # set version label ARG BUILD_DATE ARG KASM_VERSION +ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="thelamer" diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 195ac5f..ad72591 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -3,6 +3,7 @@ FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.16 # set version label ARG BUILD_DATE ARG KASM_VERSION +ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="thelamer" From 736d85c718175aa1c4acbb53780aac5f3e5a488c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 17 Jul 2022 14:00:50 +0200 Subject: [PATCH 010/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 7e78c1f..b595645 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -44,7 +44,7 @@ libblkid-2.38-r1 libbz2-1.0.8-r1 libc-utils-0.7.2-r3 libcom_err-1.46.5-r0 -libcrypto1.1-1.1.1p-r0 +libcrypto1.1-1.1.1q-r0 libcurl-7.83.1-r2 libffi-3.4.2-r1 libgcc-11.2.1_git20220219-r2 @@ -53,7 +53,7 @@ libmnl-1.0.5-r0 libnftnl-1.2.1-r0 libproc-3.3.17-r1 libseccomp-2.5.2-r1 -libssl1.1-1.1.1p-r0 +libssl1.1-1.1.1q-r0 libstdc++-11.2.1_git20220219-r2 libtirpc-1.3.2-r0 libtirpc-conf-1.3.2-r0 From 141cee8f80d91e35de43fc407625515335679249 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 20 Jul 2022 23:21:39 +0200 Subject: [PATCH 011/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b595645..0a2cf3b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -5,7 +5,7 @@ apk-tools-2.12.9-r3 bash-5.1.16-r2 brotli-libs-1.0.9-r6 btrfs-progs-5.17-r0 -busybox-1.35.0-r14 +busybox-1.35.0-r15 c-ares-1.18.1-r0 ca-certificates-20211220-r0 ca-certificates-bundle-20211220-r0 @@ -67,7 +67,7 @@ musl-utils-1.2.3-r0 ncurses-libs-6.3_p20220521-r0 ncurses-terminfo-base-6.3_p20220521-r0 nghttp2-libs-1.47.0-r0 -nodejs-16.15.0-r1 +nodejs-16.16.0-r0 oniguruma-6.9.8-r0 openssl-1.1.1q-r0 pigz-2.7-r0 @@ -81,7 +81,7 @@ shadow-libs-4.10-r3 shadow-subids-4.10-r3 skalibs-2.11.2.0-r0 sqlite-libs-3.38.5-r0 -ssl_client-1.35.0-r14 +ssl_client-1.35.0-r15 sudo-1.9.10-r0 tini-static-0.19.0-r0 tzdata-2022a-r0 From 7738942a832c152fe7f8cfdf551e0f495781e64e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 22 Jul 2022 14:48:33 +0200 Subject: [PATCH 012/337] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 0a2cf3b..4cb6fe8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,14 +9,14 @@ busybox-1.35.0-r15 c-ares-1.18.1-r0 ca-certificates-20211220-r0 ca-certificates-bundle-20211220-r0 -containerd-1.6.6-r0 +containerd-1.6.6-r1 coreutils-9.1-r0 curl-7.83.1-r2 device-mapper-libs-2.02.187-r2 -docker-20.10.16-r0 -docker-cli-20.10.16-r0 -docker-cli-compose-2.5.0-r1 -docker-engine-20.10.16-r0 +docker-20.10.16-r1 +docker-cli-20.10.16-r1 +docker-cli-compose-2.5.0-r2 +docker-engine-20.10.16-r1 e2fsprogs-1.46.5-r0 e2fsprogs-extra-1.46.5-r0 e2fsprogs-libs-1.46.5-r0 @@ -74,7 +74,7 @@ pigz-2.7-r0 procps-3.3.17-r1 python3-3.10.4-r0 readline-8.1.2-r0 -runc-1.1.2-r0 +runc-1.1.2-r1 scanelf-1.3.4-r0 shadow-4.10-r3 shadow-libs-4.10-r3 From 404cd562748f8b137ec1d618234dff73407508ad Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 26 Jul 2022 13:22:27 +0200 Subject: [PATCH 013/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4cb6fe8..c52bed0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -72,7 +72,7 @@ oniguruma-6.9.8-r0 openssl-1.1.1q-r0 pigz-2.7-r0 procps-3.3.17-r1 -python3-3.10.4-r0 +python3-3.10.5-r0 readline-8.1.2-r0 runc-1.1.2-r1 scanelf-1.3.4-r0 From dee8e47d0e2fdddaa7b499e44763208072c5e993 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 27 Jul 2022 18:24:51 -0500 Subject: [PATCH 014/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index c52bed0..bd236b8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -5,7 +5,7 @@ apk-tools-2.12.9-r3 bash-5.1.16-r2 brotli-libs-1.0.9-r6 btrfs-progs-5.17-r0 -busybox-1.35.0-r15 +busybox-1.35.0-r16 c-ares-1.18.1-r0 ca-certificates-20211220-r0 ca-certificates-bundle-20211220-r0 @@ -81,7 +81,7 @@ shadow-libs-4.10-r3 shadow-subids-4.10-r3 skalibs-2.11.2.0-r0 sqlite-libs-3.38.5-r0 -ssl_client-1.35.0-r15 +ssl_client-1.35.0-r16 sudo-1.9.10-r0 tini-static-0.19.0-r0 tzdata-2022a-r0 From 5abf50c4f0636fc50002bcdfa4b96a912cbf60d6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 31 Jul 2022 07:00:40 -0500 Subject: [PATCH 015/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index bd236b8..115bd49 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,8 +7,8 @@ brotli-libs-1.0.9-r6 btrfs-progs-5.17-r0 busybox-1.35.0-r16 c-ares-1.18.1-r0 -ca-certificates-20211220-r0 -ca-certificates-bundle-20211220-r0 +ca-certificates-20220614-r0 +ca-certificates-bundle-20220614-r0 containerd-1.6.6-r1 coreutils-9.1-r0 curl-7.83.1-r2 From b6c2f7e645b96fc101ff64b5d1e4c642ac96924e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 2 Aug 2022 21:21:08 +0200 Subject: [PATCH 016/337] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 115bd49..db70050 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -5,18 +5,18 @@ apk-tools-2.12.9-r3 bash-5.1.16-r2 brotli-libs-1.0.9-r6 btrfs-progs-5.17-r0 -busybox-1.35.0-r16 +busybox-1.35.0-r17 c-ares-1.18.1-r0 ca-certificates-20220614-r0 ca-certificates-bundle-20220614-r0 -containerd-1.6.6-r1 +containerd-1.6.6-r2 coreutils-9.1-r0 curl-7.83.1-r2 device-mapper-libs-2.02.187-r2 -docker-20.10.16-r1 -docker-cli-20.10.16-r1 -docker-cli-compose-2.5.0-r2 -docker-engine-20.10.16-r1 +docker-20.10.16-r2 +docker-cli-20.10.16-r2 +docker-cli-compose-2.5.0-r3 +docker-engine-20.10.16-r2 e2fsprogs-1.46.5-r0 e2fsprogs-extra-1.46.5-r0 e2fsprogs-libs-1.46.5-r0 @@ -74,14 +74,14 @@ pigz-2.7-r0 procps-3.3.17-r1 python3-3.10.5-r0 readline-8.1.2-r0 -runc-1.1.2-r1 +runc-1.1.2-r2 scanelf-1.3.4-r0 shadow-4.10-r3 shadow-libs-4.10-r3 shadow-subids-4.10-r3 skalibs-2.11.2.0-r0 sqlite-libs-3.38.5-r0 -ssl_client-1.35.0-r16 +ssl_client-1.35.0-r17 sudo-1.9.10-r0 tini-static-0.19.0-r0 tzdata-2022a-r0 From 1bba57eba03697f6b45463dd344043479f8e3b9d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 7 Aug 2022 05:50:50 +0200 Subject: [PATCH 017/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index db70050..26507ee 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -55,8 +55,8 @@ libproc-3.3.17-r1 libseccomp-2.5.2-r1 libssl1.1-1.1.1q-r0 libstdc++-11.2.1_git20220219-r2 -libtirpc-1.3.2-r0 -libtirpc-conf-1.3.2-r0 +libtirpc-1.3.2-r1 +libtirpc-conf-1.3.2-r1 libuuid-2.38-r1 libverto-0.3.2-r0 linux-pam-1.5.2-r0 From c64c9792e54b809ba2cd7ad4b1833bec4d18f1d4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 14 Aug 2022 07:01:00 -0500 Subject: [PATCH 018/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 26507ee..84d6c14 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -92,5 +92,5 @@ xz-5.2.5-r1 xz-libs-5.2.5-r1 zfs-2.1.5-r0 zfs-libs-2.1.5-r0 -zlib-1.2.12-r1 +zlib-1.2.12-r2 zstd-libs-1.5.2-r1 From 1081009607a8b7a09854c99a930dabfee49505c6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 21 Aug 2022 14:01:08 +0200 Subject: [PATCH 019/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 84d6c14..34c00c5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -50,7 +50,7 @@ libffi-3.4.2-r1 libgcc-11.2.1_git20220219-r2 libintl-0.21-r2 libmnl-1.0.5-r0 -libnftnl-1.2.1-r0 +libnftnl-1.2.3-r0 libproc-3.3.17-r1 libseccomp-2.5.2-r1 libssl1.1-1.1.1q-r0 @@ -92,5 +92,5 @@ xz-5.2.5-r1 xz-libs-5.2.5-r1 zfs-2.1.5-r0 zfs-libs-2.1.5-r0 -zlib-1.2.12-r2 +zlib-1.2.12-r3 zstd-libs-1.5.2-r1 From 340928388c1d0253e6cc1bca5a406da3adb7d61c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 23 Aug 2022 18:34:10 +0200 Subject: [PATCH 020/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 34c00c5..0312892 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -84,7 +84,7 @@ sqlite-libs-3.38.5-r0 ssl_client-1.35.0-r17 sudo-1.9.10-r0 tini-static-0.19.0-r0 -tzdata-2022a-r0 +tzdata-2022c-r0 userspace-rcu-0.13.1-r0 utmps-libs-0.1.2.0-r0 xfsprogs-5.16.0-r1 From f7d100fdef289e7633d12884a37fc130bcd1694c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 4 Sep 2022 07:00:43 -0500 Subject: [PATCH 021/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 0312892..ef57d43 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,7 +11,7 @@ ca-certificates-20220614-r0 ca-certificates-bundle-20220614-r0 containerd-1.6.6-r2 coreutils-9.1-r0 -curl-7.83.1-r2 +curl-7.83.1-r3 device-mapper-libs-2.02.187-r2 docker-20.10.16-r2 docker-cli-20.10.16-r2 @@ -45,7 +45,7 @@ libbz2-1.0.8-r1 libc-utils-0.7.2-r3 libcom_err-1.46.5-r0 libcrypto1.1-1.1.1q-r0 -libcurl-7.83.1-r2 +libcurl-7.83.1-r3 libffi-3.4.2-r1 libgcc-11.2.1_git20220219-r2 libintl-0.21-r2 From 76eb94fb82d493de222ebf17a1c295989073a57a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 9 Sep 2022 11:38:42 -0500 Subject: [PATCH 022/337] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ef57d43..ef0ca8c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,14 +9,14 @@ busybox-1.35.0-r17 c-ares-1.18.1-r0 ca-certificates-20220614-r0 ca-certificates-bundle-20220614-r0 -containerd-1.6.6-r2 +containerd-1.6.6-r3 coreutils-9.1-r0 curl-7.83.1-r3 device-mapper-libs-2.02.187-r2 -docker-20.10.16-r2 -docker-cli-20.10.16-r2 -docker-cli-compose-2.5.0-r3 -docker-engine-20.10.16-r2 +docker-20.10.16-r3 +docker-cli-20.10.16-r3 +docker-cli-compose-2.5.0-r4 +docker-engine-20.10.16-r3 e2fsprogs-1.46.5-r0 e2fsprogs-extra-1.46.5-r0 e2fsprogs-libs-1.46.5-r0 @@ -74,7 +74,7 @@ pigz-2.7-r0 procps-3.3.17-r1 python3-3.10.5-r0 readline-8.1.2-r0 -runc-1.1.2-r2 +runc-1.1.2-r3 scanelf-1.3.4-r0 shadow-4.10-r3 shadow-libs-4.10-r3 From d275d03f20b244e554971d0657ee918bc92818c3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 11 Sep 2022 07:00:44 -0500 Subject: [PATCH 023/337] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ef0ca8c..3e687b2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,14 +9,14 @@ busybox-1.35.0-r17 c-ares-1.18.1-r0 ca-certificates-20220614-r0 ca-certificates-bundle-20220614-r0 -containerd-1.6.6-r3 +containerd-1.6.8-r1 coreutils-9.1-r0 curl-7.83.1-r3 device-mapper-libs-2.02.187-r2 -docker-20.10.16-r3 -docker-cli-20.10.16-r3 +docker-20.10.18-r0 +docker-cli-20.10.18-r0 docker-cli-compose-2.5.0-r4 -docker-engine-20.10.16-r3 +docker-engine-20.10.18-r0 e2fsprogs-1.46.5-r0 e2fsprogs-extra-1.46.5-r0 e2fsprogs-libs-1.46.5-r0 @@ -74,7 +74,7 @@ pigz-2.7-r0 procps-3.3.17-r1 python3-3.10.5-r0 readline-8.1.2-r0 -runc-1.1.2-r3 +runc-1.1.4-r1 scanelf-1.3.4-r0 shadow-4.10-r3 shadow-libs-4.10-r3 From 0ea51e8255a210e24cc3a9b0d9707569d30dfb48 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 13 Sep 2022 18:37:37 +0200 Subject: [PATCH 024/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 3e687b2..25a1030 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,5 +1,5 @@ -alpine-baselayout-3.2.0-r22 -alpine-baselayout-data-3.2.0-r22 +alpine-baselayout-3.2.0-r23 +alpine-baselayout-data-3.2.0-r23 alpine-keys-2.4-r1 apk-tools-2.12.9-r3 bash-5.1.16-r2 From bbd0416112597c6d61a1bafa92d12612b85ecd73 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 16 Sep 2022 17:27:37 +0200 Subject: [PATCH 025/337] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6b135db..5f188b4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -710,7 +710,7 @@ pipeline { -e DO_REGION="ams3" \ -e DO_BUCKET="lsio-ci" \ -t ghcr.io/linuxserver/ci:latest \ - python /ci/ci.py''' + python3 test_build.py''' } } } From 7469071033581b8775db7a295e4e7cde02e98f68 Mon Sep 17 00:00:00 2001 From: TheSpad Date: Thu, 22 Sep 2022 17:23:39 +0100 Subject: [PATCH 026/337] Pin to last v2 base --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- root/etc/services.d/docker/run | 0 root/etc/services.d/wizard/run | 0 5 files changed, 3 insertions(+), 3 deletions(-) mode change 100644 => 100755 root/etc/services.d/docker/run mode change 100644 => 100755 root/etc/services.d/wizard/run diff --git a/Dockerfile b/Dockerfile index d1edd74..3e46821 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/linuxserver/baseimage-alpine:3.16 +FROM ghcr.io/linuxserver/baseimage-alpine:3.16-fb0ed076-ls25 # set version label ARG BUILD_DATE diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 47ef8db..337c340 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,4 +1,4 @@ -FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.16 +FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.16-fb0ed076-ls25 # set version label ARG BUILD_DATE diff --git a/Dockerfile.armhf b/Dockerfile.armhf index ad72591..5e25045 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,4 +1,4 @@ -FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.16 +FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.16-fb0ed076-ls25 # set version label ARG BUILD_DATE diff --git a/root/etc/services.d/docker/run b/root/etc/services.d/docker/run old mode 100644 new mode 100755 diff --git a/root/etc/services.d/wizard/run b/root/etc/services.d/wizard/run old mode 100644 new mode 100755 From 04db9aed9fa62f967b523697cc1a68383bfa848b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 22 Sep 2022 11:58:07 -0500 Subject: [PATCH 027/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 25a1030..7addf1e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -21,7 +21,7 @@ e2fsprogs-1.46.5-r0 e2fsprogs-extra-1.46.5-r0 e2fsprogs-libs-1.46.5-r0 eudev-libs-3.2.11-r0 -expat-2.4.8-r0 +expat-2.4.9-r0 findutils-4.9.0-r0 fuse-common-3.11.0-r0 fuse-overlayfs-1.8.2-r0 From deced70ed63b47f41be0caffd64752771fe711f3 Mon Sep 17 00:00:00 2001 From: TheSpad Date: Fri, 23 Sep 2022 18:22:55 +0100 Subject: [PATCH 028/337] Migrate to s6v3 --- Dockerfile | 3 ++- Dockerfile.aarch64 | 3 ++- Dockerfile.armhf | 2 +- readme-vars.yml | 1 + .../dependencies.d/init-config-kasm | 0 .../dependencies.d/init-config | 0 .../s6-rc.d/init-config-kasm/run} | 0 .../s6-overlay/s6-rc.d/init-config-kasm/type | 1 + .../s6-overlay/s6-rc.d/init-config-kasm/up | 1 + .../s6-rc.d/user/contents.d/init-config-kasm | 0 root/etc/cont-init.d/30-setup | 20 ------------------- .../dependencies.d/init-config-kasm | 0 .../dependencies.d/init-config | 0 .../s6-overlay/s6-rc.d/init-config-kasm/run | 20 +++++++++++++++++++ .../s6-overlay/s6-rc.d/init-config-kasm/type | 1 + .../s6-overlay/s6-rc.d/init-config-kasm/up | 1 + .../dependencies.d/init-config-kasm | 0 .../svc-docker/dependencies.d/init-services | 0 root/etc/s6-overlay/s6-rc.d/svc-docker/run | 14 +++++++++++++ root/etc/s6-overlay/s6-rc.d/svc-docker/type | 1 + .../dependencies.d/init-config-kasm | 0 .../dependencies.d/init-services | 0 .../s6-rc.d/svc-kasm-wizard}/run | 10 +++++----- .../s6-overlay/s6-rc.d/svc-kasm-wizard/type | 1 + .../s6-rc.d/user/contents.d/init-config-kasm | 0 .../s6-rc.d/user/contents.d/svc-docker | 0 .../s6-rc.d/user/contents.d/svc-kasm-wizard | 0 root/etc/services.d/docker/run | 14 ------------- 28 files changed, 51 insertions(+), 42 deletions(-) create mode 100644 root-armhf/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-config-kasm create mode 100644 root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/dependencies.d/init-config rename root-armhf/etc/{cont-init.d/30-disabled => s6-overlay/s6-rc.d/init-config-kasm/run} (100%) mode change 100644 => 100755 create mode 100644 root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/type create mode 100644 root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/up create mode 100644 root-armhf/etc/s6-overlay/s6-rc.d/user/contents.d/init-config-kasm delete mode 100644 root/etc/cont-init.d/30-setup create mode 100644 root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-config-kasm create mode 100644 root/etc/s6-overlay/s6-rc.d/init-config-kasm/dependencies.d/init-config create mode 100755 root/etc/s6-overlay/s6-rc.d/init-config-kasm/run create mode 100644 root/etc/s6-overlay/s6-rc.d/init-config-kasm/type create mode 100644 root/etc/s6-overlay/s6-rc.d/init-config-kasm/up create mode 100644 root/etc/s6-overlay/s6-rc.d/svc-docker/dependencies.d/init-config-kasm create mode 100644 root/etc/s6-overlay/s6-rc.d/svc-docker/dependencies.d/init-services create mode 100755 root/etc/s6-overlay/s6-rc.d/svc-docker/run create mode 100644 root/etc/s6-overlay/s6-rc.d/svc-docker/type create mode 100644 root/etc/s6-overlay/s6-rc.d/svc-kasm-wizard/dependencies.d/init-config-kasm create mode 100644 root/etc/s6-overlay/s6-rc.d/svc-kasm-wizard/dependencies.d/init-services rename root/etc/{services.d/wizard => s6-overlay/s6-rc.d/svc-kasm-wizard}/run (66%) create mode 100644 root/etc/s6-overlay/s6-rc.d/svc-kasm-wizard/type create mode 100644 root/etc/s6-overlay/s6-rc.d/user/contents.d/init-config-kasm create mode 100644 root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-docker create mode 100644 root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-kasm-wizard delete mode 100755 root/etc/services.d/docker/run diff --git a/Dockerfile b/Dockerfile index 3e46821..407b000 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/linuxserver/baseimage-alpine:3.16-fb0ed076-ls25 +FROM ghcr.io/linuxserver/baseimage-alpine:3.16 # set version label ARG BUILD_DATE @@ -9,6 +9,7 @@ LABEL maintainer="thelamer" # Env ENV DOCKER_TLS_CERTDIR="" +ENV TINI_SUBREAPER=true # Container setup RUN \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 337c340..45b2768 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,4 +1,4 @@ -FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.16-fb0ed076-ls25 +FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.16 # set version label ARG BUILD_DATE @@ -9,6 +9,7 @@ LABEL maintainer="thelamer" # Env ENV DOCKER_TLS_CERTDIR="" +ENV TINI_SUBREAPER=true # Container setup RUN \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 5e25045..ad72591 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,4 +1,4 @@ -FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.16-fb0ed076-ls25 +FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.16 # set version label ARG BUILD_DATE diff --git a/readme-vars.yml b/readme-vars.yml index b48d6e3..1babd09 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -87,4 +87,5 @@ app_setup_block: | # changelog changelogs: + - { date: "23.09.22:", desc: "Migrate to s6v3." } - { date: "02.07.22:", desc: "Initial Release." } diff --git a/root-armhf/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-config-kasm b/root-armhf/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-config-kasm new file mode 100644 index 0000000..e69de29 diff --git a/root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/dependencies.d/init-config b/root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/dependencies.d/init-config new file mode 100644 index 0000000..e69de29 diff --git a/root-armhf/etc/cont-init.d/30-disabled b/root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/run old mode 100644 new mode 100755 similarity index 100% rename from root-armhf/etc/cont-init.d/30-disabled rename to root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/run diff --git a/root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/type b/root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/type new file mode 100644 index 0000000..bdd22a1 --- /dev/null +++ b/root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/type @@ -0,0 +1 @@ +oneshot diff --git a/root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/up b/root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/up new file mode 100644 index 0000000..cd5b530 --- /dev/null +++ b/root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/up @@ -0,0 +1 @@ +/etc/s6-overlay/s6-rc.d/init-config-kasm/run diff --git a/root-armhf/etc/s6-overlay/s6-rc.d/user/contents.d/init-config-kasm b/root-armhf/etc/s6-overlay/s6-rc.d/user/contents.d/init-config-kasm new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/cont-init.d/30-setup b/root/etc/cont-init.d/30-setup deleted file mode 100644 index 19f227a..0000000 --- a/root/etc/cont-init.d/30-setup +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/with-contenv bash - -# Create directories -if [ ! -d "/opt/docker" ]; then - mkdir -p /opt/docker -fi - -# Login to Dockerhub -if [ ! -z "${DOCKER_HUB_USERNAME}" ]; then - docker login --username $DOCKER_HUB_USERNAME --password $DOCKER_HUB_PASSWORD -fi - -# Generate self cert for wizard -if [ ! -f "/opt/kasm/certs/kasm_wizard.crt" ]; then - mkdir -p /opt/kasm/certs - openssl req -x509 -nodes -days 1825 -newkey rsa:2048 \ - -keyout /opt/kasm/certs/kasm_wizard.key \ - -out /opt/kasm/certs/kasm_wizard.crt \ - -subj "/C=US/ST=VA/L=None/O=None/OU=DoFu/CN=$(hostname)/emailAddress=none@none.none" -fi diff --git a/root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-config-kasm b/root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-config-kasm new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/s6-overlay/s6-rc.d/init-config-kasm/dependencies.d/init-config b/root/etc/s6-overlay/s6-rc.d/init-config-kasm/dependencies.d/init-config new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/s6-overlay/s6-rc.d/init-config-kasm/run b/root/etc/s6-overlay/s6-rc.d/init-config-kasm/run new file mode 100755 index 0000000..8874fb8 --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/init-config-kasm/run @@ -0,0 +1,20 @@ +#!/usr/bin/with-contenv bash + +# Create directories +if [ ! -d "/opt/docker" ]; then + mkdir -p /opt/docker +fi + +# Login to Dockerhub +if [ -n "${DOCKER_HUB_USERNAME}" ]; then + docker login --username $DOCKER_HUB_USERNAME --password $DOCKER_HUB_PASSWORD +fi + +# Generate self cert for wizard +if [ ! -f "/opt/kasm/certs/kasm_wizard.crt" ]; then + mkdir -p /opt/kasm/certs + openssl req -x509 -nodes -days 1825 -newkey rsa:2048 \ + -keyout /opt/kasm/certs/kasm_wizard.key \ + -out /opt/kasm/certs/kasm_wizard.crt \ + -subj "/C=US/ST=VA/L=None/O=None/OU=DoFu/CN=$(hostname)/emailAddress=none@none.none" +fi diff --git a/root/etc/s6-overlay/s6-rc.d/init-config-kasm/type b/root/etc/s6-overlay/s6-rc.d/init-config-kasm/type new file mode 100644 index 0000000..bdd22a1 --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/init-config-kasm/type @@ -0,0 +1 @@ +oneshot diff --git a/root/etc/s6-overlay/s6-rc.d/init-config-kasm/up b/root/etc/s6-overlay/s6-rc.d/init-config-kasm/up new file mode 100644 index 0000000..cd5b530 --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/init-config-kasm/up @@ -0,0 +1 @@ +/etc/s6-overlay/s6-rc.d/init-config-kasm/run diff --git a/root/etc/s6-overlay/s6-rc.d/svc-docker/dependencies.d/init-config-kasm b/root/etc/s6-overlay/s6-rc.d/svc-docker/dependencies.d/init-config-kasm new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/s6-overlay/s6-rc.d/svc-docker/dependencies.d/init-services b/root/etc/s6-overlay/s6-rc.d/svc-docker/dependencies.d/init-services new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/s6-overlay/s6-rc.d/svc-docker/run b/root/etc/s6-overlay/s6-rc.d/svc-docker/run new file mode 100755 index 0000000..710a540 --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/svc-docker/run @@ -0,0 +1,14 @@ +#!/usr/bin/with-contenv bash + +_term() { + if [ -f "/opt/kasm/bin/stop" ]; then + echo "Caught SIGTERM signal!" + echo "Stopping Kasm Containers" + /opt/kasm/bin/stop + pid=$(pidof stop) + # terminate when the stop process dies + tail --pid=${pid} -f /dev/null + fi +} + +exec /usr/local/bin/dockerd-entrypoint.sh -l error --data-root /opt/docker diff --git a/root/etc/s6-overlay/s6-rc.d/svc-docker/type b/root/etc/s6-overlay/s6-rc.d/svc-docker/type new file mode 100644 index 0000000..5883cff --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/svc-docker/type @@ -0,0 +1 @@ +longrun diff --git a/root/etc/s6-overlay/s6-rc.d/svc-kasm-wizard/dependencies.d/init-config-kasm b/root/etc/s6-overlay/s6-rc.d/svc-kasm-wizard/dependencies.d/init-config-kasm new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/s6-overlay/s6-rc.d/svc-kasm-wizard/dependencies.d/init-services b/root/etc/s6-overlay/s6-rc.d/svc-kasm-wizard/dependencies.d/init-services new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/services.d/wizard/run b/root/etc/s6-overlay/s6-rc.d/svc-kasm-wizard/run similarity index 66% rename from root/etc/services.d/wizard/run rename to root/etc/s6-overlay/s6-rc.d/svc-kasm-wizard/run index 57d7d2b..c50e440 100755 --- a/root/etc/services.d/wizard/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-kasm-wizard/run @@ -2,15 +2,15 @@ # Wait for docker to be up while true; do - if [ -S "/var/run/docker.sock" ]; then - break - fi - sleep 1 + if [ -S "/var/run/docker.sock" ]; then + break + fi + sleep 1 done # Don't do anything if wizard is disabled if [ -f "/opt/NO_WIZARD" ]; then - sleep infinity + sleep infinity fi cd /wizard diff --git a/root/etc/s6-overlay/s6-rc.d/svc-kasm-wizard/type b/root/etc/s6-overlay/s6-rc.d/svc-kasm-wizard/type new file mode 100644 index 0000000..5883cff --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/svc-kasm-wizard/type @@ -0,0 +1 @@ +longrun diff --git a/root/etc/s6-overlay/s6-rc.d/user/contents.d/init-config-kasm b/root/etc/s6-overlay/s6-rc.d/user/contents.d/init-config-kasm new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-docker b/root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-docker new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-kasm-wizard b/root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-kasm-wizard new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/services.d/docker/run b/root/etc/services.d/docker/run deleted file mode 100755 index b59d67d..0000000 --- a/root/etc/services.d/docker/run +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/with-contenv bash - -_term() { - if [ -f "/opt/kasm/bin/stop" ]; then - echo "Caught SIGTERM signal!" - echo "Stopping Kasm Containers" - /opt/kasm/bin/stop - pid=$(pidof stop) - # terminate when the stop process dies - tail --pid=${pid} -f /dev/null - fi -} - -exec /usr/local/bin/dockerd-entrypoint.sh -l error --data-root /opt/docker From 1946bbb92f96222c189b2d2bb076d6bfc1afb5aa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 1 Oct 2022 19:27:34 +0200 Subject: [PATCH 029/337] Bot Updating Templated Files --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d81f90d..955419b 100644 --- a/README.md +++ b/README.md @@ -237,4 +237,5 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **23.09.22:** - Migrate to s6v3. * **02.07.22:** - Initial Release. From d40847b3289b4f86633e3b2ef09eb23547c0d5d9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 9 Oct 2022 14:00:57 +0200 Subject: [PATCH 030/337] Bot Updating Package Versions --- package_versions.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 7addf1e..33fc38e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,14 +9,14 @@ busybox-1.35.0-r17 c-ares-1.18.1-r0 ca-certificates-20220614-r0 ca-certificates-bundle-20220614-r0 -containerd-1.6.8-r1 +containerd-1.6.8-r2 coreutils-9.1-r0 curl-7.83.1-r3 device-mapper-libs-2.02.187-r2 -docker-20.10.18-r0 -docker-cli-20.10.18-r0 -docker-cli-compose-2.5.0-r4 -docker-engine-20.10.18-r0 +docker-20.10.18-r1 +docker-cli-20.10.18-r1 +docker-cli-compose-2.5.0-r5 +docker-engine-20.10.18-r1 e2fsprogs-1.46.5-r0 e2fsprogs-extra-1.46.5-r0 e2fsprogs-libs-1.46.5-r0 @@ -67,14 +67,14 @@ musl-utils-1.2.3-r0 ncurses-libs-6.3_p20220521-r0 ncurses-terminfo-base-6.3_p20220521-r0 nghttp2-libs-1.47.0-r0 -nodejs-16.16.0-r0 +nodejs-16.17.1-r0 oniguruma-6.9.8-r0 openssl-1.1.1q-r0 pigz-2.7-r0 procps-3.3.17-r1 python3-3.10.5-r0 readline-8.1.2-r0 -runc-1.1.4-r1 +runc-1.1.4-r2 scanelf-1.3.4-r0 shadow-4.10-r3 shadow-libs-4.10-r3 From 9d746de3a62c9a3d9cf8604940f9fe5d2b0eccd4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 20 Oct 2022 23:21:43 -0500 Subject: [PATCH 031/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 33fc38e..c4d756f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,10 +13,10 @@ containerd-1.6.8-r2 coreutils-9.1-r0 curl-7.83.1-r3 device-mapper-libs-2.02.187-r2 -docker-20.10.18-r1 -docker-cli-20.10.18-r1 +docker-20.10.20-r0 +docker-cli-20.10.20-r0 docker-cli-compose-2.5.0-r5 -docker-engine-20.10.18-r1 +docker-engine-20.10.20-r0 e2fsprogs-1.46.5-r0 e2fsprogs-extra-1.46.5-r0 e2fsprogs-libs-1.46.5-r0 From 95981a48ae0d4fca40e799fe6c971ecb3195d65a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 25 Oct 2022 20:02:39 +0200 Subject: [PATCH 032/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c4d756f..c5fe486 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -15,7 +15,7 @@ curl-7.83.1-r3 device-mapper-libs-2.02.187-r2 docker-20.10.20-r0 docker-cli-20.10.20-r0 -docker-cli-compose-2.5.0-r5 +docker-cli-compose-2.12.2-r0 docker-engine-20.10.20-r0 e2fsprogs-1.46.5-r0 e2fsprogs-extra-1.46.5-r0 From a437f24d2186c39e8eaaae079114cb4cd2671d7a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 25 Oct 2022 21:45:19 +0200 Subject: [PATCH 033/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c5fe486..10791f7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -21,7 +21,7 @@ e2fsprogs-1.46.5-r0 e2fsprogs-extra-1.46.5-r0 e2fsprogs-libs-1.46.5-r0 eudev-libs-3.2.11-r0 -expat-2.4.9-r0 +expat-2.5.0-r0 findutils-4.9.0-r0 fuse-common-3.11.0-r0 fuse-overlayfs-1.8.2-r0 From 85e0bcb2126d807076f27911f9a792f85a9abdb7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 4 Nov 2022 16:23:22 -0500 Subject: [PATCH 034/337] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 10791f7..bdc513a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,7 +11,7 @@ ca-certificates-20220614-r0 ca-certificates-bundle-20220614-r0 containerd-1.6.8-r2 coreutils-9.1-r0 -curl-7.83.1-r3 +curl-7.83.1-r4 device-mapper-libs-2.02.187-r2 docker-20.10.20-r0 docker-cli-20.10.20-r0 @@ -45,7 +45,7 @@ libbz2-1.0.8-r1 libc-utils-0.7.2-r3 libcom_err-1.46.5-r0 libcrypto1.1-1.1.1q-r0 -libcurl-7.83.1-r3 +libcurl-7.83.1-r4 libffi-3.4.2-r1 libgcc-11.2.1_git20220219-r2 libintl-0.21-r2 @@ -62,14 +62,14 @@ libverto-0.3.2-r0 linux-pam-1.5.2-r0 lzo-2.10-r3 mpdecimal-2.5.1-r1 -musl-1.2.3-r0 +musl-1.2.3-r1 musl-utils-1.2.3-r0 ncurses-libs-6.3_p20220521-r0 ncurses-terminfo-base-6.3_p20220521-r0 nghttp2-libs-1.47.0-r0 nodejs-16.17.1-r0 oniguruma-6.9.8-r0 -openssl-1.1.1q-r0 +openssl-1.1.1s-r0 pigz-2.7-r0 procps-3.3.17-r1 python3-3.10.5-r0 @@ -82,7 +82,7 @@ shadow-subids-4.10-r3 skalibs-2.11.2.0-r0 sqlite-libs-3.38.5-r0 ssl_client-1.35.0-r17 -sudo-1.9.10-r0 +sudo-1.9.12-r1 tini-static-0.19.0-r0 tzdata-2022c-r0 userspace-rcu-0.13.1-r0 From 1a5fcda94026dab95cfbd107540fdb746152fae8 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sat, 5 Nov 2022 15:39:43 -0700 Subject: [PATCH 035/337] Rebase to Jammy, document and add support for GPUs and Gamepads --- .github/workflows/external_trigger.yml | 2 +- Dockerfile | 66 ++++++++++++++------------ Dockerfile.aarch64 | 66 ++++++++++++++------------ Jenkinsfile | 4 +- README.md | 19 ++++++++ jenkins-vars.yml | 4 +- readme-vars.yml | 17 ++++++- root/gpuinfo.sh | 2 + 8 files changed, 114 insertions(+), 66 deletions(-) create mode 100755 root/gpuinfo.sh diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index c446a1e..3154bea 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -18,7 +18,7 @@ jobs: fi echo "**** External trigger running off of develop branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP\". ****" echo "**** Retrieving external version ****" - EXT_RELEASE=$(curl -u ${{ secrets.CR_USER }}:${{ secrets.CR_PAT }} -sX GET 'https://api.github.com/repos/kasmtech/kasm-install-wizard/releases'| jq -r 'map(select(.prerelease)) | sort_by(.published_at) | last | .tag_name') + EXT_RELEASE=$(curl -sX GET https://kasm-ci.s3.amazonaws.com/dev-version.txt) if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then echo "**** Can't retrieve external version, exiting ****" FAILURE_REASON="Can't retrieve external version for kasm branch develop" diff --git a/Dockerfile b/Dockerfile index 407b000..176b135 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/linuxserver/baseimage-alpine:3.16 +FROM ghcr.io/linuxserver/baseimage-ubuntu:jammy # set version label ARG BUILD_DATE @@ -11,40 +11,46 @@ LABEL maintainer="thelamer" ENV DOCKER_TLS_CERTDIR="" ENV TINI_SUBREAPER=true +#Add needed nvidia environment variables for https://github.com/NVIDIA/nvidia-docker +ENV NVIDIA_DRIVER_CAPABILITIES="compute,graphics,video,utility" + # Container setup RUN \ - echo "**** install build packages ****" && \ - apk add --no-cache --virtual=build-dependencies \ - alpine-sdk \ - npm && \ echo "**** install packages ****" && \ - apk add --no-cache \ - bash \ + curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - && \ + echo "deb [arch=amd64] https://download.docker.com/linux/ubuntu jammy stable" > \ + /etc/apt/sources.list.d/docker.list && \ + curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey | \ + gpg --dearmor -o /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg && \ + curl -s -L https://nvidia.github.io/libnvidia-container/ubuntu22.04/libnvidia-container.list | \ + sed 's#deb https://#deb [signed-by=/usr/share/keyrings/nvidia-container-toolkit-keyring.gpg] https://#g' | \ + tee /etc/apt/sources.list.d/nvidia-container-toolkit.list && \ + curl -fsSL https://deb.nodesource.com/setup_16.x | bash - && \ + apt-get install -y --no-install-recommends \ btrfs-progs \ - ca-certificates \ - coreutils \ - curl \ - docker \ - docker-cli-compose \ + containerd.io \ + docker-ce \ + docker-ce-cli \ + docker-compose-plugin \ + drm-info \ e2fsprogs \ - e2fsprogs-extra \ - findutils \ fuse-overlayfs \ - ip6tables \ + g++ \ + gcc \ iptables \ jq \ + make \ nodejs \ + nvidia-docker2 \ openssl \ pigz \ python3 \ - shadow-uidmap \ sudo \ - xfsprogs \ - xz \ - zfs && \ + uidmap \ + xfsprogs && \ echo "**** dind setup ****" && \ - addgroup -S dockremap && \ - adduser -S -G dockremap dockremap && \ + useradd -U dockremap && \ + usermod -G dockremap dockremap && \ echo 'dockremap:165536:65536' >> /etc/subuid && \ echo 'dockremap:165536:65536' >> /etc/subgid && \ curl -o \ @@ -55,12 +61,11 @@ RUN \ echo "**** setup wizard ****" && \ mkdir -p /wizard && \ if [ -z ${KASM_VERSION+x} ]; then \ - KASM_VERSION=$(curl -sX GET 'https://api.github.com/repos/kasmtech/kasm-install-wizard/releases' \ - | jq -r 'map(select(.prerelease)) | sort_by(.published_at) | last | .tag_name'); \ + KASM_VERSION=$(curl -sX GET https://kasm-ci.s3.amazonaws.com/dev-version.txt); \ fi && \ curl -o \ /tmp/wizard.tar.gz -L \ - "https://github.com/kasmtech/kasm-install-wizard/archive/refs/tags/${KASM_VERSION}.tar.gz" && \ + "https://github.com/kasmtech/kasm-install-wizard/tarball/feature/KASM-3512-gpu-option" && \ tar xf \ /tmp/wizard.tar.gz -C \ /wizard --strip-components=1 && \ @@ -75,18 +80,19 @@ RUN \ / && \ echo "**** copy assets ****" && \ cp \ - /kasm_release/www/img/thumbnails/*.png \ + /kasm_release/www/img/thumbnails/*.png /kasm_release/www/img/thumbnails/*.svg \ /wizard/public/img/thumbnails/ && \ cp \ /kasm_release/conf/database/seed_data/default_images_a* \ /wizard/ && \ echo "**** cleanup ****" && \ - apk del --purge \ - build-dependencies && \ + apt-get remove -y g++ gcc make && \ + apt-get -y autoremove && \ + apt-get clean && \ rm -rf \ - /root/.npm \ - /root/.cache \ - /tmp/* + /tmp/* \ + /var/lib/apt/lists/* \ + /var/tmp/* # add init files COPY root/ / diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 45b2768..ae310b8 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,4 +1,4 @@ -FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.16 +FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-jammy # set version label ARG BUILD_DATE @@ -11,40 +11,46 @@ LABEL maintainer="thelamer" ENV DOCKER_TLS_CERTDIR="" ENV TINI_SUBREAPER=true +#Add needed nvidia environment variables for https://github.com/NVIDIA/nvidia-docker +ENV NVIDIA_DRIVER_CAPABILITIES="compute,graphics,video,utility" + # Container setup RUN \ - echo "**** install build packages ****" && \ - apk add --no-cache --virtual=build-dependencies \ - alpine-sdk \ - npm && \ echo "**** install packages ****" && \ - apk add --no-cache \ - bash \ + curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - && \ + echo "deb [arch=arm64] https://download.docker.com/linux/ubuntu jammy stable" > \ + /etc/apt/sources.list.d/docker.list && \ + curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey | \ + gpg --dearmor -o /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg && \ + curl -s -L https://nvidia.github.io/libnvidia-container/ubuntu22.04/libnvidia-container.list | \ + sed 's#deb https://#deb [signed-by=/usr/share/keyrings/nvidia-container-toolkit-keyring.gpg] https://#g' | \ + tee /etc/apt/sources.list.d/nvidia-container-toolkit.list && \ + curl -fsSL https://deb.nodesource.com/setup_16.x | bash - && \ + apt-get install -y --no-install-recommends \ btrfs-progs \ - ca-certificates \ - coreutils \ - curl \ - docker \ - docker-cli-compose \ + containerd.io \ + docker-ce \ + docker-ce-cli \ + docker-compose-plugin \ + drm-info \ e2fsprogs \ - e2fsprogs-extra \ - findutils \ fuse-overlayfs \ - ip6tables \ + g++ \ + gcc \ iptables \ jq \ + make \ nodejs \ + nvidia-docker2 \ openssl \ pigz \ python3 \ - shadow-uidmap \ sudo \ - xfsprogs \ - xz \ - zfs && \ + uidmap \ + xfsprogs && \ echo "**** dind setup ****" && \ - addgroup -S dockremap && \ - adduser -S -G dockremap dockremap && \ + useradd -U dockremap && \ + usermod -G dockremap dockremap && \ echo 'dockremap:165536:65536' >> /etc/subuid && \ echo 'dockremap:165536:65536' >> /etc/subgid && \ curl -o \ @@ -55,12 +61,11 @@ RUN \ echo "**** setup wizard ****" && \ mkdir -p /wizard && \ if [ -z ${KASM_VERSION+x} ]; then \ - KASM_VERSION=$(curl -sX GET 'https://api.github.com/repos/kasmtech/kasm-install-wizard/releases' \ - | jq -r 'map(select(.prerelease)) | sort_by(.published_at) | last | .tag_name'); \ + KASM_VERSION=$(curl -sX GET https://kasm-ci.s3.amazonaws.com/dev-version.txt); \ fi && \ curl -o \ /tmp/wizard.tar.gz -L \ - "https://github.com/kasmtech/kasm-install-wizard/archive/refs/tags/${KASM_VERSION}.tar.gz" && \ + "https://github.com/kasmtech/kasm-install-wizard/tarball/feature/KASM-3512-gpu-option" && \ tar xf \ /tmp/wizard.tar.gz -C \ /wizard --strip-components=1 && \ @@ -75,18 +80,19 @@ RUN \ / && \ echo "**** copy assets ****" && \ cp \ - /kasm_release/www/img/thumbnails/*.png \ + /kasm_release/www/img/thumbnails/*.png /kasm_release/www/img/thumbnails/*.svg \ /wizard/public/img/thumbnails/ && \ cp \ /kasm_release/conf/database/seed_data/default_images_a* \ /wizard/ && \ echo "**** cleanup ****" && \ - apk del --purge \ - build-dependencies && \ + apt-get remove -y g++ gcc make && \ + apt-get -y autoremove && \ + apt-get clean && \ rm -rf \ - /root/.npm \ - /root/.cache \ - /tmp/* + /tmp/* \ + /var/lib/apt/lists/* \ + /var/tmp/* # add init files COPY root/ / diff --git a/Jenkinsfile b/Jenkinsfile index 5f188b4..72dcda1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -24,7 +24,7 @@ pipeline { DOCKERHUB_IMAGE = 'linuxserver/kasm' DEV_DOCKERHUB_IMAGE = 'lsiodev/kasm' PR_DOCKERHUB_IMAGE = 'lspipepr/kasm' - DIST_IMAGE = 'alpine' + DIST_IMAGE = 'ubuntu' MULTIARCH='true' CI='true' CI_WEB='true' @@ -104,7 +104,7 @@ pipeline { steps{ script{ env.EXT_RELEASE = sh( - script: ''' curl -sX GET 'https://api.github.com/repos/kasmtech/kasm-install-wizard/releases'| jq -r 'map(select(.prerelease)) | sort_by(.published_at) | last | .tag_name' ''', + script: ''' curl -sX GET https://kasm-ci.s3.amazonaws.com/dev-version.txt ''', returnStdout: true).trim() env.RELEASE_LINK = 'custom_command' } diff --git a/README.md b/README.md index 955419b..82d090f 100644 --- a/README.md +++ b/README.md @@ -80,6 +80,18 @@ Access the installation wizard at https://`your ip`:3000 and follow the instruct Currently Synology systems are not supported due to them blocking CPU scheduling in their Kernel. +### GPU Support + +During installation an option will be presented to force all Workspace containers to mount in and use a specific GPU. This option is meant for non NVIDIA GPUs only, if using an NVIDIA card please use the native support built into Kasm Workspaces and ensure you are running this container with the NVIDIA container runtime. + +### Gamepad support + +In order to properly create virtual Gamepads you will need to mount from your host `/dev/input` and `/run/udev/data`. Please see [HERE](https://www.kasmweb.com/docs/develop/guide/gamepad_passthrough.html) for instructions on enabling gamepad support. + +### Persistant profiles + +In order to use persistant profiles in Workspaces you will need to mount in a folder to use from your host to `/profiles`. From there when configuring a workspace you can set the `Persistant Profile Path` to IE `/profiles/ubuntu-focal/{username}/`, more infomation can be found [HERE](https://www.kasmweb.com/docs/latest/how_to/persistent_profiles.html). + ## Usage Here are some example snippets to help you get started creating a container. @@ -102,6 +114,8 @@ services: volumes: - /path/to/data:/opt - /path/to/profiles:/profiles #optional + - /dev/input:/dev/input #optional + - /run/udev/data:/run/udev/data #optional ports: - 3000:3000 - 443:443 @@ -122,6 +136,8 @@ docker run -d \ -p 443:443 \ -v /path/to/data:/opt \ -v /path/to/profiles:/profiles `#optional` \ + -v /dev/input:/dev/input `#optional` \ + -v /run/udev/data:/run/udev/data `#optional` \ --restart unless-stopped \ lscr.io/linuxserver/kasm:develop ``` @@ -140,6 +156,8 @@ Container images are configured using parameters passed at runtime (such as thos | `-e DOCKER_HUB_PASSWORD=PASS` | Optionally specify a DockerHub password to pull private images. | | `-v /opt` | Docker and installation storage. | | `-v /profiles` | Optionally specify a path for persistent profile storage. | +| `-v /dev/input` | Optional for gamepad support. | +| `-v /run/udev/data` | Optional for gamepad support. | ## Environment variables from files (Docker secrets) @@ -237,5 +255,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **05.11.22:** - Rebase to Jammy, add support for GPUs, add support for Gamepads. * **23.09.22:** - Migrate to s6v3. * **02.07.22:** - Initial Release. diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 217cb0b..f2949c8 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -3,7 +3,7 @@ # jenkins variables project_name: docker-kasm external_type: na -custom_version_command: "curl -sX GET 'https://api.github.com/repos/kasmtech/kasm-install-wizard/releases'| jq -r 'map(select(.prerelease)) | sort_by(.published_at) | last | .tag_name'" +custom_version_command: "curl -sX GET https://kasm-ci.s3.amazonaws.com/dev-version.txt" release_type: prerelease release_tag: develop ls_branch: develop @@ -15,7 +15,7 @@ repo_vars: - DOCKERHUB_IMAGE = 'linuxserver/kasm' - DEV_DOCKERHUB_IMAGE = 'lsiodev/kasm' - PR_DOCKERHUB_IMAGE = 'lspipepr/kasm' - - DIST_IMAGE = 'alpine' + - DIST_IMAGE = 'ubuntu' - MULTIARCH='true' - CI='true' - CI_WEB='true' diff --git a/readme-vars.yml b/readme-vars.yml index 1babd09..96ec0cd 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -56,6 +56,8 @@ opt_param_env_vars: opt_param_usage_include_vols: true opt_param_volumes: - { vol_path: "/profiles", vol_host_path: "/path/to/profiles", desc: "Optionally specify a path for persistent profile storage." } + - { vol_path: "/dev/input", vol_host_path: "/dev/input", desc: "Optional for gamepad support." } + - { vol_path: "/run/udev/data", vol_host_path: "/run/udev/data", desc: "Optional for gamepad support." } opt_param_usage_include_ports: false opt_param_ports: [] @@ -83,9 +85,22 @@ app_setup_block: | * admin@kasm.local * user@kasm.local - Currently Synology systems are not supported due to them blocking CPU scheduling in their Kernel. + Currently Synology systems are not supported due to them blocking CPU scheduling in their Kernel. + + ### GPU Support + + During installation an option will be presented to force all Workspace containers to mount in and use a specific GPU. This option is meant for non NVIDIA GPUs only, if using an NVIDIA card please use the native support built into Kasm Workspaces and ensure you are running this container with the NVIDIA container runtime. + + ### Gamepad support + + In order to properly create virtual Gamepads you will need to mount from your host `/dev/input` and `/run/udev/data`. Please see [HERE](https://www.kasmweb.com/docs/develop/guide/gamepad_passthrough.html) for instructions on enabling gamepad support. + + ### Persistant profiles + + In order to use persistant profiles in Workspaces you will need to mount in a folder to use from your host to `/profiles`. From there when configuring a workspace you can set the `Persistant Profile Path` to IE `/profiles/ubuntu-focal/{username}/`, more infomation can be found [HERE](https://www.kasmweb.com/docs/latest/how_to/persistent_profiles.html). # changelog changelogs: + - { date: "05.11.22:", desc: "Rebase to Jammy, add support for GPUs, add support for Gamepads." } - { date: "23.09.22:", desc: "Migrate to s6v3." } - { date: "02.07.22:", desc: "Initial Release." } diff --git a/root/gpuinfo.sh b/root/gpuinfo.sh new file mode 100755 index 0000000..984df4e --- /dev/null +++ b/root/gpuinfo.sh @@ -0,0 +1,2 @@ +#! /bin/bash +drm_info -j 2>/dev/null| jq -c 'with_entries(.value |= .driver.desc)' From 13a2acb91fda8ba29bea3ef125aa9c217afcf517 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 8 Nov 2022 10:39:43 -0600 Subject: [PATCH 036/337] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index bdc513a..66f9ae6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -44,7 +44,7 @@ libblkid-2.38-r1 libbz2-1.0.8-r1 libc-utils-0.7.2-r3 libcom_err-1.46.5-r0 -libcrypto1.1-1.1.1q-r0 +libcrypto1.1-1.1.1s-r0 libcurl-7.83.1-r4 libffi-3.4.2-r1 libgcc-11.2.1_git20220219-r2 @@ -53,7 +53,7 @@ libmnl-1.0.5-r0 libnftnl-1.2.3-r0 libproc-3.3.17-r1 libseccomp-2.5.2-r1 -libssl1.1-1.1.1q-r0 +libssl1.1-1.1.1s-r0 libstdc++-11.2.1_git20220219-r2 libtirpc-1.3.2-r1 libtirpc-conf-1.3.2-r1 @@ -63,7 +63,7 @@ linux-pam-1.5.2-r0 lzo-2.10-r3 mpdecimal-2.5.1-r1 musl-1.2.3-r1 -musl-utils-1.2.3-r0 +musl-utils-1.2.3-r1 ncurses-libs-6.3_p20220521-r0 ncurses-terminfo-base-6.3_p20220521-r0 nghttp2-libs-1.47.0-r0 @@ -84,7 +84,7 @@ sqlite-libs-3.38.5-r0 ssl_client-1.35.0-r17 sudo-1.9.12-r1 tini-static-0.19.0-r0 -tzdata-2022c-r0 +tzdata-2022f-r1 userspace-rcu-0.13.1-r0 utmps-libs-0.1.2.0-r0 xfsprogs-5.16.0-r1 From 2a4243a6d615d59ea00e9915187318b697796167 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 10 Nov 2022 17:37:19 +0100 Subject: [PATCH 037/337] Bot Updating Templated Files --- .github/workflows/external_trigger.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index c446a1e..97d21bb 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -48,8 +48,12 @@ jobs: | jq -r '.config.digest') image_info=$(curl -sL \ --header "Authorization: Bearer ${token}" \ - "https://ghcr.io/v2/${image}/blobs/${digest}" \ - | jq -r '.container_config') + "https://ghcr.io/v2/${image}/blobs/${digest}") + if [[ $(echo $image_info | jq -r '.container_config') == "null" ]]; then + image_info=$(echo $image_info | jq -r '.config') + else + image_info=$(echo $image_info | jq -r '.container_config') + fi IMAGE_RELEASE=$(echo ${image_info} | jq -r '.Labels.build_version' | awk '{print $3}') IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}') if [ -z "${IMAGE_VERSION}" ]; then From efd36861bff892ca746a02ac2e7ca8fa77a4f38c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 10 Nov 2022 17:39:50 +0100 Subject: [PATCH 038/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 66f9ae6..eb489aa 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -72,7 +72,7 @@ oniguruma-6.9.8-r0 openssl-1.1.1s-r0 pigz-2.7-r0 procps-3.3.17-r1 -python3-3.10.5-r0 +python3-3.10.8-r0 readline-8.1.2-r0 runc-1.1.4-r2 scanelf-1.3.4-r0 From 5715ae0f654069bbfba26eb67ad0f2750b8164a9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 13 Nov 2022 13:01:14 +0100 Subject: [PATCH 039/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index eb489aa..7d09f33 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -62,7 +62,7 @@ libverto-0.3.2-r0 linux-pam-1.5.2-r0 lzo-2.10-r3 mpdecimal-2.5.1-r1 -musl-1.2.3-r1 +musl-1.2.3-r2 musl-utils-1.2.3-r1 ncurses-libs-6.3_p20220521-r0 ncurses-terminfo-base-6.3_p20220521-r0 From 9a7cace9ac2eccf93a384d6f2ee0d090e54760ff Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 15 Nov 2022 14:41:25 +0100 Subject: [PATCH 040/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7d09f33..8fa5c75 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -63,7 +63,7 @@ linux-pam-1.5.2-r0 lzo-2.10-r3 mpdecimal-2.5.1-r1 musl-1.2.3-r2 -musl-utils-1.2.3-r1 +musl-utils-1.2.3-r2 ncurses-libs-6.3_p20220521-r0 ncurses-terminfo-base-6.3_p20220521-r0 nghttp2-libs-1.47.0-r0 From 62a4b95cc46d28647e744c28bd6ff3cc94d807e5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 22 Nov 2022 10:34:40 -0600 Subject: [PATCH 041/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8fa5c75..328cd3e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ iptables-1.8.8-r1 jq-1.6-r1 keyutils-libs-1.6.3-r1 krb5-conf-1.0-r2 -krb5-libs-1.19.3-r0 +krb5-libs-1.19.4-r0 libacl-2.3.1-r0 libattr-2.5.1-r1 libblkid-2.38-r1 From 1133cbc5160e59a49ade3d065969df2cf295a671 Mon Sep 17 00:00:00 2001 From: "ryan.kuba" Date: Thu, 24 Nov 2022 12:54:25 -0500 Subject: [PATCH 042/337] Slight tweak to ingestion and install docs for now tested nvidia support --- .github/workflows/external_trigger.yml | 8 ++++++-- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- README.md | 2 +- readme-vars.yml | 2 +- 5 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 3154bea..70ee77e 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -48,8 +48,12 @@ jobs: | jq -r '.config.digest') image_info=$(curl -sL \ --header "Authorization: Bearer ${token}" \ - "https://ghcr.io/v2/${image}/blobs/${digest}" \ - | jq -r '.container_config') + "https://ghcr.io/v2/${image}/blobs/${digest}") + if [[ $(echo $image_info | jq -r '.container_config') == "null" ]]; then + image_info=$(echo $image_info | jq -r '.config') + else + image_info=$(echo $image_info | jq -r '.container_config') + fi IMAGE_RELEASE=$(echo ${image_info} | jq -r '.Labels.build_version' | awk '{print $3}') IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}') if [ -z "${IMAGE_VERSION}" ]; then diff --git a/Dockerfile b/Dockerfile index 176b135..a279b9f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -65,7 +65,7 @@ RUN \ fi && \ curl -o \ /tmp/wizard.tar.gz -L \ - "https://github.com/kasmtech/kasm-install-wizard/tarball/feature/KASM-3512-gpu-option" && \ + "https://github.com/kasmtech/kasm-install-wizard/archive/refs/tags/${KASM_VERSION}.tar.gz" && \ tar xf \ /tmp/wizard.tar.gz -C \ /wizard --strip-components=1 && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index ae310b8..49c4fed 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -65,7 +65,7 @@ RUN \ fi && \ curl -o \ /tmp/wizard.tar.gz -L \ - "https://github.com/kasmtech/kasm-install-wizard/tarball/feature/KASM-3512-gpu-option" && \ + "https://github.com/kasmtech/kasm-install-wizard/archive/refs/tags/${KASM_VERSION}.tar.gz" && \ tar xf \ /tmp/wizard.tar.gz -C \ /wizard --strip-components=1 && \ diff --git a/README.md b/README.md index 82d090f..d5653ac 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ Currently Synology systems are not supported due to them blocking CPU scheduling ### GPU Support -During installation an option will be presented to force all Workspace containers to mount in and use a specific GPU. This option is meant for non NVIDIA GPUs only, if using an NVIDIA card please use the native support built into Kasm Workspaces and ensure you are running this container with the NVIDIA container runtime. +During installation an option will be presented to force all Workspace containers to mount in and use a specific GPU. If using an NVIDIA GPU you will need to pass `-e NVIDIA_VISIBLE_DEVICES=all` or `--gpus all` and have the [NVIDIA Container Runtime](https://github.com/NVIDIA/nvidia-container-runtime) installed on the host. Also if using NVIDIA, Kasm Workspaces has [native NVIDIA support](https://www.kasmweb.com/docs/latest/how_to/gpu.html) so you can optionally opt to simply use that instead of he manual override during installation. ### Gamepad support diff --git a/readme-vars.yml b/readme-vars.yml index 96ec0cd..2e179c8 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -89,7 +89,7 @@ app_setup_block: | ### GPU Support - During installation an option will be presented to force all Workspace containers to mount in and use a specific GPU. This option is meant for non NVIDIA GPUs only, if using an NVIDIA card please use the native support built into Kasm Workspaces and ensure you are running this container with the NVIDIA container runtime. + During installation an option will be presented to force all Workspace containers to mount in and use a specific GPU. If using an NVIDIA GPU you will need to pass `-e NVIDIA_VISIBLE_DEVICES=all` or `--gpus all` and have the [NVIDIA Container Runtime](https://github.com/NVIDIA/nvidia-container-runtime) installed on the host. Also if using NVIDIA, Kasm Workspaces has [native NVIDIA support](https://www.kasmweb.com/docs/latest/how_to/gpu.html) so you can optionally opt to simply use that instead of he manual override during installation. ### Gamepad support From 7c9d9bcaba897b863f4f03a3607c182739b533ec Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 24 Nov 2022 12:21:32 -0600 Subject: [PATCH 043/337] Bot Updating Package Versions --- package_versions.txt | 287 ++++++++++++++++++++++++++++--------------- 1 file changed, 191 insertions(+), 96 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 328cd3e..f950a79 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,96 +1,191 @@ -alpine-baselayout-3.2.0-r23 -alpine-baselayout-data-3.2.0-r23 -alpine-keys-2.4-r1 -apk-tools-2.12.9-r3 -bash-5.1.16-r2 -brotli-libs-1.0.9-r6 -btrfs-progs-5.17-r0 -busybox-1.35.0-r17 -c-ares-1.18.1-r0 -ca-certificates-20220614-r0 -ca-certificates-bundle-20220614-r0 -containerd-1.6.8-r2 -coreutils-9.1-r0 -curl-7.83.1-r4 -device-mapper-libs-2.02.187-r2 -docker-20.10.20-r0 -docker-cli-20.10.20-r0 -docker-cli-compose-2.12.2-r0 -docker-engine-20.10.20-r0 -e2fsprogs-1.46.5-r0 -e2fsprogs-extra-1.46.5-r0 -e2fsprogs-libs-1.46.5-r0 -eudev-libs-3.2.11-r0 -expat-2.5.0-r0 -findutils-4.9.0-r0 -fuse-common-3.11.0-r0 -fuse-overlayfs-1.8.2-r0 -fuse3-3.11.0-r0 -fuse3-libs-3.11.0-r0 -gdbm-1.23-r0 -gmp-6.2.1-r2 -icu-data-en-71.1-r2 -icu-libs-71.1-r2 -inih-55-r0 -ip6tables-1.8.8-r1 -iptables-1.8.8-r1 -jq-1.6-r1 -keyutils-libs-1.6.3-r1 -krb5-conf-1.0-r2 -krb5-libs-1.19.4-r0 -libacl-2.3.1-r0 -libattr-2.5.1-r1 -libblkid-2.38-r1 -libbz2-1.0.8-r1 -libc-utils-0.7.2-r3 -libcom_err-1.46.5-r0 -libcrypto1.1-1.1.1s-r0 -libcurl-7.83.1-r4 -libffi-3.4.2-r1 -libgcc-11.2.1_git20220219-r2 -libintl-0.21-r2 -libmnl-1.0.5-r0 -libnftnl-1.2.3-r0 -libproc-3.3.17-r1 -libseccomp-2.5.2-r1 -libssl1.1-1.1.1s-r0 -libstdc++-11.2.1_git20220219-r2 -libtirpc-1.3.2-r1 -libtirpc-conf-1.3.2-r1 -libuuid-2.38-r1 -libverto-0.3.2-r0 -linux-pam-1.5.2-r0 -lzo-2.10-r3 -mpdecimal-2.5.1-r1 -musl-1.2.3-r2 -musl-utils-1.2.3-r2 -ncurses-libs-6.3_p20220521-r0 -ncurses-terminfo-base-6.3_p20220521-r0 -nghttp2-libs-1.47.0-r0 -nodejs-16.17.1-r0 -oniguruma-6.9.8-r0 -openssl-1.1.1s-r0 -pigz-2.7-r0 -procps-3.3.17-r1 -python3-3.10.8-r0 -readline-8.1.2-r0 -runc-1.1.4-r2 -scanelf-1.3.4-r0 -shadow-4.10-r3 -shadow-libs-4.10-r3 -shadow-subids-4.10-r3 -skalibs-2.11.2.0-r0 -sqlite-libs-3.38.5-r0 -ssl_client-1.35.0-r17 -sudo-1.9.12-r1 -tini-static-0.19.0-r0 -tzdata-2022f-r1 -userspace-rcu-0.13.1-r0 -utmps-libs-0.1.2.0-r0 -xfsprogs-5.16.0-r1 -xz-5.2.5-r1 -xz-libs-5.2.5-r1 -zfs-2.1.5-r0 -zfs-libs-2.1.5-r0 -zlib-1.2.12-r3 -zstd-libs-1.5.2-r1 +adduser3.118ubuntu5 +apt2.4.8 +apt-utils2.4.8 +base-files12ubuntu4.2 +base-passwd3.5.52build1 +bash5.1-6ubuntu1 +bsdutils1:2.37.2-4ubuntu3 +btrfs-progs5.16.2-1 +ca-certificates20211016 +containerd.io1.6.10-1 +coreutils8.32-4.1ubuntu1 +curl7.81.0-1ubuntu1.6 +dash0.5.11+git20210903+057cd650a4ed-3build1 +debconf1.5.79ubuntu1 +debianutils5.5-1ubuntu2 +diffutils1:3.8-0ubuntu2 +dirmngr2.2.27-3ubuntu2.1 +distro-info-data0.52ubuntu0.2 +docker-ce5:20.10.21~3-0~ubuntu-jammy +docker-ce-cli5:20.10.21~3-0~ubuntu-jammy +docker-compose-plugin2.12.2~ubuntu-jammy +dpkg1.21.1ubuntu2.1 +drm-info2.2.0-2 +e2fsprogs1.46.5-2ubuntu1.1 +findutils4.8.0-1ubuntu3 +fuse33.10.5-1build1 +fuse-overlayfs1.7.1-1 +gcc-12-base12.1.0-2ubuntu1~22.04 +gnupg2.2.27-3ubuntu2.1 +gnupg-l10n2.2.27-3ubuntu2.1 +gnupg-utils2.2.27-3ubuntu2.1 +gpg2.2.27-3ubuntu2.1 +gpg-agent2.2.27-3ubuntu2.1 +gpgconf2.2.27-3ubuntu2.1 +gpgsm2.2.27-3ubuntu2.1 +gpgv2.2.27-3ubuntu2.1 +gpg-wks-client2.2.27-3ubuntu2.1 +gpg-wks-server2.2.27-3ubuntu2.1 +grep3.7-1build1 +gzip1.10-4ubuntu4.1 +hostname3.23ubuntu2 +init-system-helpers1.62 +iptables1.8.7-1ubuntu5 +jq1.6-2.1ubuntu3 +libacl12.3.1-1 +libapt-pkg6.02.4.8 +libassuan02.5.5-1build1 +libattr11:2.5.1-1build1 +libaudit11:3.0.7-1build1 +libaudit-common1:3.0.7-1build1 +libblkid12.37.2-4ubuntu3 +libbrotli11.0.9-2build6 +libbsd00.11.5-1 +libbz2-1.01.0.8-5build1 +libc62.35-0ubuntu3.1 +libcap21:2.44-1build3 +libcap-ng00.7.9-2.2build3 +libc-bin2.35-0ubuntu3.1 +libcom-err21.46.5-2ubuntu1.1 +libcrypt11:4.4.27-1 +libcurl47.81.0-1ubuntu1.6 +libdb5.35.3.28+dfsg1-0.8ubuntu3 +libdebconfclient00.261ubuntu1 +libdevmapper1.02.12:1.02.175-2.1ubuntu4 +libdrm22.4.110-1ubuntu1 +libdrm-common2.4.110-1ubuntu1 +libedit23.1-20210910-1build1 +libexpat12.4.7-1ubuntu0.2 +libext2fs21.46.5-2ubuntu1.1 +libffi83.4.2-4 +libfuse3-33.10.5-1build1 +libgcc-s112.1.0-2ubuntu1~22.04 +libgcrypt201.9.4-3ubuntu3 +libgmp102:6.2.1+dfsg-3ubuntu1 +libgnutls303.7.3-4ubuntu1.1 +libgpg-error01.43-3 +libgssapi-krb5-21.19.2-2 +libhogweed63.7.3-1build2 +libicu7070.1-2 +libidn2-02.3.2-2build1 +libinih153-1ubuntu3 +libip4tc21.8.7-1ubuntu5 +libip6tc21.8.7-1ubuntu5 +libjq11.6-2.1ubuntu3 +libjson-c50.15-3~ubuntu1.22.04.1 +libk5crypto31.19.2-2 +libkeyutils11.6.1-2ubuntu3 +libkrb5-31.19.2-2 +libkrb5support01.19.2-2 +libksba81.6.0-2ubuntu0.1 +libldap-2.5-02.5.13+dfsg-0ubuntu0.22.04.1 +libldap-common2.5.13+dfsg-0ubuntu0.22.04.1 +liblz4-11.9.3-2build2 +liblzma55.2.5-2ubuntu1 +liblzo2-22.10-2build3 +libmd01.0.4-1build1 +libmnl01.0.4-3build2 +libmount12.37.2-4ubuntu3 +libmpdec32.5.1-2build2 +libncurses66.3-2 +libncursesw66.3-2 +libnetfilter-conntrack31.0.9-1 +libnettle83.7.3-1build2 +libnfnetlink01.0.1-3build3 +libnftnl111.2.1-1build1 +libnghttp2-141.43.0-1build3 +libnpth01.6-3build2 +libnsl21.3.0-2build2 +libnvidia-container11.11.0-1 +libnvidia-container-tools1.11.0-1 +libonig56.9.7.1-2build1 +libp11-kit00.24.0-6build1 +libpam0g1.4.0-11ubuntu2 +libpam-modules1.4.0-11ubuntu2 +libpam-modules-bin1.4.0-11ubuntu2 +libpam-runtime1.4.0-11ubuntu2 +libpcre2-8-010.39-3ubuntu0.1 +libpcre32:8.39-13ubuntu0.22.04.1 +libprocps82:3.3.17-6ubuntu2 +libpsl50.21.0-1.2build2 +libpython3.10-minimal3.10.6-1~22.04.1 +libpython3.10-stdlib3.10.6-1~22.04.1 +libpython3-stdlib3.10.6-1~22.04 +libreadline88.1.2-1 +librtmp12.4+20151223.gitfa8646d.1-2build4 +libsasl2-22.1.27+dfsg2-3ubuntu1 +libsasl2-modules2.1.27+dfsg2-3ubuntu1 +libsasl2-modules-db2.1.27+dfsg2-3ubuntu1 +libseccomp22.5.3-2ubuntu2 +libselinux13.3-1build2 +libsemanage23.3-1build2 +libsemanage-common3.3-1build2 +libsepol23.3-1build1 +libsmartcols12.37.2-4ubuntu3 +libsqlite3-03.37.2-2ubuntu0.1 +libss21.46.5-2ubuntu1.1 +libssh-40.9.6-2build1 +libssl33.0.2-0ubuntu1.7 +libstdc++612.1.0-2ubuntu1~22.04 +libsystemd0249.11-0ubuntu3.6 +libtasn1-64.18.0-4build1 +libtinfo66.3-2 +libtirpc31.3.2-2ubuntu0.1 +libtirpc-common1.3.2-2ubuntu0.1 +libudev1249.11-0ubuntu3.6 +libunistring21.0-1 +libuuid12.37.2-4ubuntu3 +libxtables121.8.7-1ubuntu5 +libxxhash00.8.1-1 +libzstd11.4.8+dfsg-3build1 +locales2.35-0ubuntu3.1 +login1:4.8.1-2ubuntu2 +logsave1.46.5-2ubuntu1.1 +lsb-base11.1.0ubuntu4 +lsb-release11.1.0ubuntu4 +mawk1.3.4.20200120-3 +media-types7.0.0 +mount2.37.2-4ubuntu3 +ncurses-base6.3-2 +ncurses-bin6.3-2 +netbase6.3 +netcat1.218-4ubuntu1 +netcat-openbsd1.218-4ubuntu1 +nodejs16.18.1-deb-1nodesource1 +nvidia-container-toolkit1.11.0-1 +nvidia-container-toolkit-base1.11.0-1 +nvidia-docker22.11.0-1 +openssl3.0.2-0ubuntu1.7 +passwd1:4.8.1-2ubuntu2 +perl-base5.34.0-3ubuntu1.1 +pigz2.6-1 +pinentry-curses1.1.1-1build2 +procps2:3.3.17-6ubuntu2 +publicsuffix20211207.1025-1 +python3.103.10.6-1~22.04.1 +python3.10-minimal3.10.6-1~22.04.1 +python33.10.6-1~22.04 +python3-minimal3.10.6-1~22.04 +readline-common8.1.2-1 +sed4.8-1ubuntu2 +sensible-utils0.0.17 +sudo1.9.9-1ubuntu2.1 +sysvinit-utils3.01-1ubuntu1 +tar1.34+dfsg-1build3 +tzdata2022f-0ubuntu0.22.04.1 +ubuntu-keyring2021.03.26 +uidmap1:4.8.1-2ubuntu2 +usrmerge25ubuntu2 +util-linux2.37.2-4ubuntu3 +xfsprogs5.13.0-1ubuntu2 +zlib1g1:1.2.11.dfsg-2ubuntu9.2 From cc152c39c959538e503b21e068407d217b05ceaf Mon Sep 17 00:00:00 2001 From: "ryan.kuba" Date: Sun, 27 Nov 2022 20:52:03 -0500 Subject: [PATCH 044/337] Update docker logic and point branch to upgrade feature --- Dockerfile | 7 +++++-- Dockerfile.aarch64 | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index a279b9f..7248622 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,8 @@ ENV DOCKER_TLS_CERTDIR="" ENV TINI_SUBREAPER=true #Add needed nvidia environment variables for https://github.com/NVIDIA/nvidia-docker -ENV NVIDIA_DRIVER_CAPABILITIES="compute,graphics,video,utility" +ENV NVIDIA_DRIVER_CAPABILITIES="compute,graphics,video,utility" \ + VERSION="develop" # Container setup RUN \ @@ -63,9 +64,10 @@ RUN \ if [ -z ${KASM_VERSION+x} ]; then \ KASM_VERSION=$(curl -sX GET https://kasm-ci.s3.amazonaws.com/dev-version.txt); \ fi && \ + echo "${KASM_VERSION}" > /version.txt && \ curl -o \ /tmp/wizard.tar.gz -L \ - "https://github.com/kasmtech/kasm-install-wizard/archive/refs/tags/${KASM_VERSION}.tar.gz" && \ + "https://github.com/kasmtech/kasm-install-wizard/tarball/feature/KASM-2903-upgrade-support" && \ tar xf \ /tmp/wizard.tar.gz -C \ /wizard --strip-components=1 && \ @@ -78,6 +80,7 @@ RUN \ tar xf \ /tmp/kasm.tar.gz -C \ / && \ + sed -i 's/-N -e -H/-N -B -e -H/g' /kasm_release/upgrade.sh && \ echo "**** copy assets ****" && \ cp \ /kasm_release/www/img/thumbnails/*.png /kasm_release/www/img/thumbnails/*.svg \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 49c4fed..a9fc21a 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -12,7 +12,8 @@ ENV DOCKER_TLS_CERTDIR="" ENV TINI_SUBREAPER=true #Add needed nvidia environment variables for https://github.com/NVIDIA/nvidia-docker -ENV NVIDIA_DRIVER_CAPABILITIES="compute,graphics,video,utility" +ENV NVIDIA_DRIVER_CAPABILITIES="compute,graphics,video,utility" \ + VERSION="develop" # Container setup RUN \ @@ -63,9 +64,10 @@ RUN \ if [ -z ${KASM_VERSION+x} ]; then \ KASM_VERSION=$(curl -sX GET https://kasm-ci.s3.amazonaws.com/dev-version.txt); \ fi && \ + echo "${KASM_VERSION}" > /version.txt && \ curl -o \ /tmp/wizard.tar.gz -L \ - "https://github.com/kasmtech/kasm-install-wizard/archive/refs/tags/${KASM_VERSION}.tar.gz" && \ + "https://github.com/kasmtech/kasm-install-wizard/tarball/feature/KASM-2903-upgrade-support" && \ tar xf \ /tmp/wizard.tar.gz -C \ /wizard --strip-components=1 && \ @@ -78,6 +80,7 @@ RUN \ tar xf \ /tmp/kasm.tar.gz -C \ / && \ + sed -i 's/-N -e -H/-N -B -e -H/g' /kasm_release/upgrade.sh && \ echo "**** copy assets ****" && \ cp \ /kasm_release/www/img/thumbnails/*.png /kasm_release/www/img/thumbnails/*.svg \ From 9ebd2e1ef59a233ffba6c5ccf46935089a2e344b Mon Sep 17 00:00:00 2001 From: "ryan.kuba" Date: Wed, 30 Nov 2022 15:22:23 -0800 Subject: [PATCH 045/337] revert manual pinning for PR into develop --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7248622..0bbf840 100644 --- a/Dockerfile +++ b/Dockerfile @@ -67,7 +67,7 @@ RUN \ echo "${KASM_VERSION}" > /version.txt && \ curl -o \ /tmp/wizard.tar.gz -L \ - "https://github.com/kasmtech/kasm-install-wizard/tarball/feature/KASM-2903-upgrade-support" && \ + "https://github.com/kasmtech/kasm-install-wizard/archive/refs/tags/${KASM_VERSION}.tar.gz" && \ tar xf \ /tmp/wizard.tar.gz -C \ /wizard --strip-components=1 && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index a9fc21a..e990e33 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -67,7 +67,7 @@ RUN \ echo "${KASM_VERSION}" > /version.txt && \ curl -o \ /tmp/wizard.tar.gz -L \ - "https://github.com/kasmtech/kasm-install-wizard/tarball/feature/KASM-2903-upgrade-support" && \ + "https://github.com/kasmtech/kasm-install-wizard/archive/refs/tags/${KASM_VERSION}.tar.gz" && \ tar xf \ /tmp/wizard.tar.gz -C \ /wizard --strip-components=1 && \ From 0a8d47bb5e5d84498e9cbb6772efc593c98a53e3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 1 Dec 2022 14:59:33 +0100 Subject: [PATCH 046/337] Bot Updating Templated Files --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 72dcda1..ee983c9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -56,7 +56,7 @@ pipeline { env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.PULL_REQUEST = env.CHANGE_ID - env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.md ./.github/ISSUE_TEMPLATE/issue.feature.md ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml' + env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml' } script{ env.LS_RELEASE_NUMBER = sh( @@ -277,7 +277,7 @@ pipeline { echo "Jenkinsfile is up to date." fi # Stage 2 - Delete old templates - OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md" + OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md\n.github/ISSUE_TEMPLATE/issue.bug.md\n.github/ISSUE_TEMPLATE/issue.feature.md" for i in ${OLD_TEMPLATES}; do if [[ -f "${i}" ]]; then TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}" From 3fde5c812a0c2194ad4ca46ba57206e9029aadd2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 1 Dec 2022 15:00:52 +0100 Subject: [PATCH 047/337] Bot Updating Templated Files --- .github/ISSUE_TEMPLATE/issue.bug.md | 40 ------------------------- .github/ISSUE_TEMPLATE/issue.feature.md | 25 ---------------- 2 files changed, 65 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/issue.bug.md delete mode 100644 .github/ISSUE_TEMPLATE/issue.feature.md diff --git a/.github/ISSUE_TEMPLATE/issue.bug.md b/.github/ISSUE_TEMPLATE/issue.bug.md deleted file mode 100644 index 24ba71e..0000000 --- a/.github/ISSUE_TEMPLATE/issue.bug.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve - ---- -[linuxserverurl]: https://linuxserver.io -[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl] - - - - - ------------------------------- - -## Expected Behavior - - -## Current Behavior - - -## Steps to Reproduce - - -1. -2. -3. -4. - -## Environment -**OS:** -**CPU architecture:** x86_64/arm32/arm64 -**How docker service was installed:** - - - -## Command used to create docker container (run/create/compose/screenshot) - - -## Docker logs - diff --git a/.github/ISSUE_TEMPLATE/issue.feature.md b/.github/ISSUE_TEMPLATE/issue.feature.md deleted file mode 100644 index 20a91fd..0000000 --- a/.github/ISSUE_TEMPLATE/issue.feature.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project - ---- -[linuxserverurl]: https://linuxserver.io -[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl] - - - - - - - - ------------------------------- - -## Desired Behavior - - -## Current Behavior - - -## Alternatives Considered - From 7e1c5c6a9d047599c2f0f693276d035435ca557c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 1 Dec 2022 15:02:07 +0100 Subject: [PATCH 048/337] Bot Updating Templated Files --- .github/ISSUE_TEMPLATE/issue.bug.yml | 76 +++++++++++++++++++ .github/ISSUE_TEMPLATE/issue.feature.yml | 31 ++++++++ .github/workflows/external_trigger.yml | 2 +- .../workflows/external_trigger_scheduler.yml | 2 +- .github/workflows/greetings.yml | 2 +- .github/workflows/package_trigger.yml | 2 +- .../workflows/package_trigger_scheduler.yml | 2 +- .github/workflows/stale.yml | 2 +- 8 files changed, 113 insertions(+), 6 deletions(-) create mode 100755 .github/ISSUE_TEMPLATE/issue.bug.yml create mode 100755 .github/ISSUE_TEMPLATE/issue.feature.yml diff --git a/.github/ISSUE_TEMPLATE/issue.bug.yml b/.github/ISSUE_TEMPLATE/issue.bug.yml new file mode 100755 index 0000000..ce3d19a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/issue.bug.yml @@ -0,0 +1,76 @@ +# Based on the issue template +name: Bug report +description: Create a report to help us improve +title: "[BUG] " +labels: [Bug] +body: + - type: checkboxes + attributes: + label: Is there an existing issue for this? + description: Please search to see if an issue already exists for the bug you encountered. + options: + - label: I have searched the existing issues + required: true + - type: textarea + attributes: + label: Current Behavior + description: Tell us what happens instead of the expected behavior. + validations: + required: true + - type: textarea + attributes: + label: Expected Behavior + description: Tell us what should happen. + validations: + required: false + - type: textarea + attributes: + label: Steps To Reproduce + description: Steps to reproduce the behavior. + placeholder: | + 1. In this environment... + 2. With this config... + 3. Run '...' + 4. See error... + validations: + required: true + - type: textarea + attributes: + label: Environment + description: | + examples: + - **OS**: Ubuntu 20.04 + - **How docker service was installed**: distro's packagemanager + value: | + - OS: + - How docker service was installed: + render: markdown + validations: + required: false + - type: dropdown + attributes: + label: CPU architecture + options: + - x86-64 + - arm64 + validations: + required: true + - type: textarea + attributes: + label: Docker creation + description: | + Command used to create docker container + Provide your docker create/run command or compose yaml snippet, or a screenshot of settings if using a gui to create the container + render: bash + validations: + required: true + - type: textarea + attributes: + description: | + Provide a full docker log, output of "docker logs linuxserver.io" + label: Container logs + placeholder: | + Output of `docker logs linuxserver.io` + render: bash + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/issue.feature.yml b/.github/ISSUE_TEMPLATE/issue.feature.yml new file mode 100755 index 0000000..099dcdb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/issue.feature.yml @@ -0,0 +1,31 @@ +# Based on the issue template +name: Feature request +description: Suggest an idea for this project +title: "[FEAT] <title>" +labels: [enhancement] +body: + - type: checkboxes + attributes: + label: Is this a new feature request? + description: Please search to see if a feature request already exists. + options: + - label: I have searched the existing issues + required: true + - type: textarea + attributes: + label: Wanted change + description: Tell us what you want to happen. + validations: + required: true + - type: textarea + attributes: + label: Reason for change + description: Justify your request, why do you want it, what is the benefit. + validations: + required: true + - type: textarea + attributes: + label: Proposed code change + description: Do you have a potential code change in mind? + validations: + required: false diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 70ee77e..7397b30 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -7,7 +7,7 @@ jobs: external-trigger-develop: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.3 + - uses: actions/checkout@v3.1.0 - name: External Trigger if: github.ref == 'refs/heads/develop' diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml index 5ac47cb..a93ce4b 100644 --- a/.github/workflows/external_trigger_scheduler.yml +++ b/.github/workflows/external_trigger_scheduler.yml @@ -9,7 +9,7 @@ jobs: external-trigger-scheduler: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: '0' diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 7280bf2..18f11d9 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -8,6 +8,6 @@ jobs: steps: - uses: actions/first-interaction@v1 with: - issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-kasm/blob/develop/.github/ISSUE_TEMPLATE/issue.bug.md) or [feature](https://github.com/linuxserver/docker-kasm/blob/develop/.github/ISSUE_TEMPLATE/issue.feature.md) issue templates!' + issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-kasm/blob/develop/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-kasm/blob/develop/.github/ISSUE_TEMPLATE/issue.feature.yml) issue templates!' pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-kasm/blob/develop/.github/PULL_REQUEST_TEMPLATE.md)!' repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/package_trigger.yml b/.github/workflows/package_trigger.yml index e2651d3..cbd3176 100644 --- a/.github/workflows/package_trigger.yml +++ b/.github/workflows/package_trigger.yml @@ -7,7 +7,7 @@ jobs: package-trigger-develop: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.3 + - uses: actions/checkout@v3.1.0 - name: Package Trigger if: github.ref == 'refs/heads/develop' diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index 9a7744f..5fe5aac 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -9,7 +9,7 @@ jobs: package-trigger-scheduler: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: '0' diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 3b3846e..73dfe45 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/stale@v3 + - uses: actions/stale@v6.0.1 with: stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions." stale-pr-message: "This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions." From 298851db8b6d27d7c3628afb1435fd441085aba5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 1 Dec 2022 15:05:30 +0100 Subject: [PATCH 049/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f950a79..b9908ba 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,7 +184,7 @@ sysvinit-utils3.01-1ubuntu1 tar1.34+dfsg-1build3 tzdata2022f-0ubuntu0.22.04.1 ubuntu-keyring2021.03.26 -uidmap1:4.8.1-2ubuntu2 +uidmap1:4.8.1-2ubuntu2.1 usrmerge25ubuntu2 util-linux2.37.2-4ubuntu3 xfsprogs5.13.0-1ubuntu2 From bb78bc724e7220cea9f739d0d15f1604911c648a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 11 Dec 2022 06:01:35 -0600 Subject: [PATCH 050/337] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b9908ba..bad94e9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -6,8 +6,8 @@ base-passwd3.5.52build1 bash5.1-6ubuntu1 bsdutils1:2.37.2-4ubuntu3 btrfs-progs5.16.2-1 -ca-certificates20211016 -containerd.io1.6.10-1 +ca-certificates20211016ubuntu0.22.04.1 +containerd.io1.6.12-1 coreutils8.32-4.1ubuntu1 curl7.81.0-1ubuntu1.6 dash0.5.11+git20210903+057cd650a4ed-3build1 @@ -118,8 +118,8 @@ libpcre2-8-010.39-3ubuntu0.1 libpcre32:8.39-13ubuntu0.22.04.1 libprocps82:3.3.17-6ubuntu2 libpsl50.21.0-1.2build2 -libpython3.10-minimal3.10.6-1~22.04.1 -libpython3.10-stdlib3.10.6-1~22.04.1 +libpython3.10-minimal3.10.6-1~22.04.2 +libpython3.10-stdlib3.10.6-1~22.04.2 libpython3-stdlib3.10.6-1~22.04 libreadline88.1.2-1 librtmp12.4+20151223.gitfa8646d.1-2build4 @@ -149,7 +149,7 @@ libxtables121.8.7-1ubuntu5 libxxhash00.8.1-1 libzstd11.4.8+dfsg-3build1 locales2.35-0ubuntu3.1 -login1:4.8.1-2ubuntu2 +login1:4.8.1-2ubuntu2.1 logsave1.46.5-2ubuntu1.1 lsb-base11.1.0ubuntu4 lsb-release11.1.0ubuntu4 @@ -166,14 +166,14 @@ nvidia-container-toolkit1.11.0-1 nvidia-container-toolkit-base1.11.0-1 nvidia-docker22.11.0-1 openssl3.0.2-0ubuntu1.7 -passwd1:4.8.1-2ubuntu2 +passwd1:4.8.1-2ubuntu2.1 perl-base5.34.0-3ubuntu1.1 pigz2.6-1 pinentry-curses1.1.1-1build2 procps2:3.3.17-6ubuntu2 publicsuffix20211207.1025-1 -python3.103.10.6-1~22.04.1 -python3.10-minimal3.10.6-1~22.04.1 +python3.103.10.6-1~22.04.2 +python3.10-minimal3.10.6-1~22.04.2 python33.10.6-1~22.04 python3-minimal3.10.6-1~22.04 readline-common8.1.2-1 From 5e0af0fe14cb2889e504c5bd08b4c994d9bf465a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 14 Dec 2022 20:18:52 +0100 Subject: [PATCH 051/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index bad94e9..0b85ace 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -182,7 +182,7 @@ sensible-utils0.0.17 sudo1.9.9-1ubuntu2.1 sysvinit-utils3.01-1ubuntu1 tar1.34+dfsg-1build3 -tzdata2022f-0ubuntu0.22.04.1 +tzdata2022g-0ubuntu0.22.04.1 ubuntu-keyring2021.03.26 uidmap1:4.8.1-2ubuntu2.1 usrmerge25ubuntu2 From 413f539d47b0819d78eb4d4756ec12da13634911 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 16 Dec 2022 11:19:19 -0600 Subject: [PATCH 052/337] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 0b85ace..787ab56 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,7 +7,7 @@ bash5.1-6ubuntu1 bsdutils1:2.37.2-4ubuntu3 btrfs-progs5.16.2-1 ca-certificates20211016ubuntu0.22.04.1 -containerd.io1.6.12-1 +containerd.io1.6.13-1 coreutils8.32-4.1ubuntu1 curl7.81.0-1ubuntu1.6 dash0.5.11+git20210903+057cd650a4ed-3build1 @@ -16,9 +16,9 @@ debianutils5.5-1ubuntu2 diffutils1:3.8-0ubuntu2 dirmngr2.2.27-3ubuntu2.1 distro-info-data0.52ubuntu0.2 -docker-ce5:20.10.21~3-0~ubuntu-jammy -docker-ce-cli5:20.10.21~3-0~ubuntu-jammy -docker-compose-plugin2.12.2~ubuntu-jammy +docker-ce5:20.10.22~3-0~ubuntu-jammy +docker-ce-cli5:20.10.22~3-0~ubuntu-jammy +docker-compose-plugin2.14.1~ubuntu-jammy dpkg1.21.1ubuntu2.1 drm-info2.2.0-2 e2fsprogs1.46.5-2ubuntu1.1 From 6d193ec70e11779ea9b9eaccf929d58f4b29d4c0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 19 Dec 2022 17:22:28 -0600 Subject: [PATCH 053/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 787ab56..fc87ff1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,7 +7,7 @@ bash5.1-6ubuntu1 bsdutils1:2.37.2-4ubuntu3 btrfs-progs5.16.2-1 ca-certificates20211016ubuntu0.22.04.1 -containerd.io1.6.13-1 +containerd.io1.6.14-1 coreutils8.32-4.1ubuntu1 curl7.81.0-1ubuntu1.6 dash0.5.11+git20210903+057cd650a4ed-3build1 @@ -161,7 +161,7 @@ ncurses-bin6.3-2 netbase6.3 netcat1.218-4ubuntu1 netcat-openbsd1.218-4ubuntu1 -nodejs16.18.1-deb-1nodesource1 +nodejs16.19.0-deb-1nodesource1 nvidia-container-toolkit1.11.0-1 nvidia-container-toolkit-base1.11.0-1 nvidia-docker22.11.0-1 From 322404ceb8d1ac0e6e3b4d2c47ce04337657c745 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Jan 2023 02:45:33 +0100 Subject: [PATCH 054/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fc87ff1..9de0572 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,7 +7,7 @@ bash5.1-6ubuntu1 bsdutils1:2.37.2-4ubuntu3 btrfs-progs5.16.2-1 ca-certificates20211016ubuntu0.22.04.1 -containerd.io1.6.14-1 +containerd.io1.6.15-1 coreutils8.32-4.1ubuntu1 curl7.81.0-1ubuntu1.6 dash0.5.11+git20210903+057cd650a4ed-3build1 From 8773ba31cae2043058b1624597bec009a5210584 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Jan 2023 21:23:09 +0100 Subject: [PATCH 055/337] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9de0572..ac47c9f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,7 @@ btrfs-progs5.16.2-1 ca-certificates20211016ubuntu0.22.04.1 containerd.io1.6.15-1 coreutils8.32-4.1ubuntu1 -curl7.81.0-1ubuntu1.6 +curl7.81.0-1ubuntu1.7 dash0.5.11+git20210903+057cd650a4ed-3build1 debconf1.5.79ubuntu1 debianutils5.5-1ubuntu2 @@ -58,7 +58,7 @@ libcap-ng00.7.9-2.2build3 libc-bin2.35-0ubuntu3.1 libcom-err21.46.5-2ubuntu1.1 libcrypt11:4.4.27-1 -libcurl47.81.0-1ubuntu1.6 +libcurl47.81.0-1ubuntu1.7 libdb5.35.3.28+dfsg1-0.8ubuntu3 libdebconfclient00.261ubuntu1 libdevmapper1.02.12:1.02.175-2.1ubuntu4 @@ -87,7 +87,7 @@ libk5crypto31.19.2-2 libkeyutils11.6.1-2ubuntu3 libkrb5-31.19.2-2 libkrb5support01.19.2-2 -libksba81.6.0-2ubuntu0.1 +libksba81.6.0-2ubuntu0.2 libldap-2.5-02.5.13+dfsg-0ubuntu0.22.04.1 libldap-common2.5.13+dfsg-0ubuntu0.22.04.1 liblz4-11.9.3-2build2 @@ -123,9 +123,9 @@ libpython3.10-stdlib3.10.6-1~22.04.2 libpython3-stdlib3.10.6-1~22.04 libreadline88.1.2-1 librtmp12.4+20151223.gitfa8646d.1-2build4 -libsasl2-22.1.27+dfsg2-3ubuntu1 -libsasl2-modules2.1.27+dfsg2-3ubuntu1 -libsasl2-modules-db2.1.27+dfsg2-3ubuntu1 +libsasl2-22.1.27+dfsg2-3ubuntu1.1 +libsasl2-modules2.1.27+dfsg2-3ubuntu1.1 +libsasl2-modules-db2.1.27+dfsg2-3ubuntu1.1 libseccomp22.5.3-2ubuntu2 libselinux13.3-1build2 libsemanage23.3-1build2 From 528827e82cb4e1747b5d4c36175887405b94c203 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 18 Jan 2023 20:52:17 -0600 Subject: [PATCH 056/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ac47c9f..4af50c5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -179,7 +179,7 @@ python3-minimal3.10.6-1~22.04 readline-common8.1.2-1 sed4.8-1ubuntu2 sensible-utils0.0.17 -sudo1.9.9-1ubuntu2.1 +sudo1.9.9-1ubuntu2.2 sysvinit-utils3.01-1ubuntu1 tar1.34+dfsg-1build3 tzdata2022g-0ubuntu0.22.04.1 From 93abaa69d09094cfd99d4c1ac974d25a51aff75f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 20 Jan 2023 01:20:53 -0600 Subject: [PATCH 057/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 4af50c5..f58fb55 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -16,9 +16,9 @@ debianutils5.5-1ubuntu2 diffutils1:3.8-0ubuntu2 dirmngr2.2.27-3ubuntu2.1 distro-info-data0.52ubuntu0.2 -docker-ce5:20.10.22~3-0~ubuntu-jammy -docker-ce-cli5:20.10.22~3-0~ubuntu-jammy -docker-compose-plugin2.14.1~ubuntu-jammy +docker-ce5:20.10.23~3-0~ubuntu-jammy +docker-ce-cli5:20.10.23~3-0~ubuntu-jammy +docker-compose-plugin2.15.1-1~ubuntu.22.04~jammy dpkg1.21.1ubuntu2.1 drm-info2.2.0-2 e2fsprogs1.46.5-2ubuntu1.1 From 20a5558c1c8b6882a8920d43074a1f60a1a23f47 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 1 Feb 2023 13:19:11 -0600 Subject: [PATCH 058/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index f58fb55..d28f7c9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,7 +7,7 @@ bash5.1-6ubuntu1 bsdutils1:2.37.2-4ubuntu3 btrfs-progs5.16.2-1 ca-certificates20211016ubuntu0.22.04.1 -containerd.io1.6.15-1 +containerd.io1.6.16-1 coreutils8.32-4.1ubuntu1 curl7.81.0-1ubuntu1.7 dash0.5.11+git20210903+057cd650a4ed-3build1 @@ -62,8 +62,8 @@ libcurl47.81.0-1ubuntu1.7 libdb5.35.3.28+dfsg1-0.8ubuntu3 libdebconfclient00.261ubuntu1 libdevmapper1.02.12:1.02.175-2.1ubuntu4 -libdrm22.4.110-1ubuntu1 -libdrm-common2.4.110-1ubuntu1 +libdrm22.4.113-2~ubuntu0.22.04.1 +libdrm-common2.4.113-2~ubuntu0.22.04.1 libedit23.1-20210910-1build1 libexpat12.4.7-1ubuntu0.2 libext2fs21.46.5-2ubuntu1.1 From 8b217bec1031c99ac18e5677070c82cbe7c06b95 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 2 Feb 2023 21:23:46 +0100 Subject: [PATCH 059/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d28f7c9..c6c679f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -16,8 +16,8 @@ debianutils5.5-1ubuntu2 diffutils1:3.8-0ubuntu2 dirmngr2.2.27-3ubuntu2.1 distro-info-data0.52ubuntu0.2 -docker-ce5:20.10.23~3-0~ubuntu-jammy -docker-ce-cli5:20.10.23~3-0~ubuntu-jammy +docker-ce5:23.0.0-1~ubuntu.22.04~jammy +docker-ce-cli5:23.0.0-1~ubuntu.22.04~jammy docker-compose-plugin2.15.1-1~ubuntu.22.04~jammy dpkg1.21.1ubuntu2.1 drm-info2.2.0-2 From b706c75bbae20a7e1b8c1236396cf74c5c479a56 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 4 Feb 2023 17:27:52 +0100 Subject: [PATCH 060/337] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index c6c679f..c6bf11f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -106,8 +106,8 @@ libnftnl111.2.1-1build1 libnghttp2-141.43.0-1build3 libnpth01.6-3build2 libnsl21.3.0-2build2 -libnvidia-container11.11.0-1 -libnvidia-container-tools1.11.0-1 +libnvidia-container11.12.0-1 +libnvidia-container-tools1.12.0-1 libonig56.9.7.1-2build1 libp11-kit00.24.0-6build1 libpam0g1.4.0-11ubuntu2 @@ -162,9 +162,9 @@ netbase6.3 netcat1.218-4ubuntu1 netcat-openbsd1.218-4ubuntu1 nodejs16.19.0-deb-1nodesource1 -nvidia-container-toolkit1.11.0-1 -nvidia-container-toolkit-base1.11.0-1 -nvidia-docker22.11.0-1 +nvidia-container-toolkit1.12.0-1 +nvidia-container-toolkit-base1.12.0-1 +nvidia-docker22.12.0-1 openssl3.0.2-0ubuntu1.7 passwd1:4.8.1-2ubuntu2.1 perl-base5.34.0-3ubuntu1.1 From c4f0e29aae10347d58bc308e8533c38f9fd9fd67 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 7 Feb 2023 23:21:50 +0100 Subject: [PATCH 061/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c6bf11f..412ff8a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -165,7 +165,7 @@ nodejs16.19.0-deb-1nodesource1 nvidia-container-toolkit1.12.0-1 nvidia-container-toolkit-base1.12.0-1 nvidia-docker22.12.0-1 -openssl3.0.2-0ubuntu1.7 +openssl3.0.2-0ubuntu1.8 passwd1:4.8.1-2ubuntu2.1 perl-base5.34.0-3ubuntu1.1 pigz2.6-1 From 2ac8c9ad58257853375c4af5e6d1a04fa1d5c341 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 11 Feb 2023 15:17:26 +0100 Subject: [PATCH 062/337] Bot Updating Templated Files --- Jenkinsfile | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ee983c9..e9aab70 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -56,7 +56,7 @@ pipeline { env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.PULL_REQUEST = env.CHANGE_ID - env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml' + env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/call_invalid_helper.yml ./.github/workflows/permissions.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml' } script{ env.LS_RELEASE_NUMBER = sh( @@ -66,7 +66,7 @@ pipeline { script{ env.LS_TAG_NUMBER = sh( script: '''#! /bin/bash - tagsha=$(git rev-list -n 1 ${LS_RELEASE} 2>/dev/null) + tagsha=$(git rev-list -n 1 develop-${LS_RELEASE} 2>/dev/null) if [ "${tagsha}" == "${COMMIT_SHA}" ]; then echo ${LS_RELEASE_NUMBER} elif [ -z "${GIT_COMMIT}" ]; then @@ -805,19 +805,19 @@ pipeline { echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin if [ "${CI}" == "false" ]; then docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} - docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v7-${META_TAG} + docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} fi for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do docker tag ${IMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} - docker tag ${IMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} - docker tag ${IMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-develop - docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-develop - docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-develop docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} + docker tag ${IMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} + docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-develop docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} + docker tag ${IMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} + docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-develop docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} if [ -n "${SEMVER}" ]; then docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${SEMVER} @@ -825,13 +825,13 @@ pipeline { docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${SEMVER} fi docker push ${MANIFESTIMAGE}:amd64-${META_TAG} - docker push ${MANIFESTIMAGE}:arm32v7-${META_TAG} - docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG} - docker push ${MANIFESTIMAGE}:amd64-develop - docker push ${MANIFESTIMAGE}:arm32v7-develop - docker push ${MANIFESTIMAGE}:arm64v8-develop docker push ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} + docker push ${MANIFESTIMAGE}:amd64-develop + docker push ${MANIFESTIMAGE}:arm32v7-${META_TAG} + docker push ${MANIFESTIMAGE}:arm32v7-develop docker push ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} + docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG} + docker push ${MANIFESTIMAGE}:arm64v8-develop docker push ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} if [ -n "${SEMVER}" ]; then docker push ${MANIFESTIMAGE}:amd64-${SEMVER} @@ -977,12 +977,12 @@ pipeline { sh 'echo "build aborted"' } else if (currentBuild.currentResult == "SUCCESS"){ - sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://wiki.jenkins-ci.org/download/attachments/2916393/headshot.png","embeds": [{"color": 1681177,\ + sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jenkins-avatar.png","embeds": [{"color": 1681177,\ "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**ShellCheck Results:** '${SHELLCHECK_URL}'\\n**Status:** Success\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\ "username": "Jenkins"}' ${BUILDS_DISCORD} ''' } else { - sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://wiki.jenkins-ci.org/download/attachments/2916393/headshot.png","embeds": [{"color": 16711680,\ + sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jenkins-avatar.png","embeds": [{"color": 16711680,\ "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**ShellCheck Results:** '${SHELLCHECK_URL}'\\n**Status:** failure\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\ "username": "Jenkins"}' ${BUILDS_DISCORD} ''' } From 91d1f7d8682b104b6ea290e2fe040bedc801d97d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 11 Feb 2023 15:18:44 +0100 Subject: [PATCH 063/337] Bot Updating Templated Files --- .editorconfig | 2 +- .github/workflows/call_invalid_helper.yml | 12 ++++++++++++ .github/workflows/greetings.yml | 2 +- .github/workflows/permissions.yml | 9 +++++++++ README.md | 12 +++++++----- 5 files changed, 30 insertions(+), 7 deletions(-) create mode 100755 .github/workflows/call_invalid_helper.yml create mode 100755 .github/workflows/permissions.yml diff --git a/.editorconfig b/.editorconfig index a92f7df..5f150f3 100644 --- a/.editorconfig +++ b/.editorconfig @@ -15,6 +15,6 @@ trim_trailing_whitespace = false indent_style = space indent_size = 2 -[{**.sh,root/etc/cont-init.d/**,root/etc/services.d/**}] +[{**.sh,root/etc/s6-overlay/s6-rc.d/**,root/etc/cont-init.d/**,root/etc/services.d/**}] indent_style = space indent_size = 4 diff --git a/.github/workflows/call_invalid_helper.yml b/.github/workflows/call_invalid_helper.yml new file mode 100755 index 0000000..773767c --- /dev/null +++ b/.github/workflows/call_invalid_helper.yml @@ -0,0 +1,12 @@ +name: Comment on invalid interaction +on: + issues: + types: + - labeled +jobs: + add-comment-on-invalid: + if: github.event.label.name == 'invalid' + permissions: + issues: write + uses: linuxserver/github-workflows/.github/workflows/invalid-interaction-helper.yml@v1 + secrets: inherit diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 18f11d9..81ea2a9 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -8,6 +8,6 @@ jobs: steps: - uses: actions/first-interaction@v1 with: - issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-kasm/blob/develop/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-kasm/blob/develop/.github/ISSUE_TEMPLATE/issue.feature.yml) issue templates!' + issue-message: 'Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.' pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-kasm/blob/develop/.github/PULL_REQUEST_TEMPLATE.md)!' repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/permissions.yml b/.github/workflows/permissions.yml new file mode 100755 index 0000000..2df6b61 --- /dev/null +++ b/.github/workflows/permissions.yml @@ -0,0 +1,9 @@ +name: Permission check +on: + pull_request: + paths: + - '**/run' + - '**/finish' +jobs: + permission_check: + uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1 diff --git a/README.md b/README.md index d5653ac..5587570 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ The architectures supported by this image are: | :----: | :----: | ---- | | x86-64 | ✅ | amd64-\<version tag\> | | arm64 | ✅ | arm64v8-\<version tag\> | -| armhf| ❌ | | +| armhf | ❌ | | ## Version Tags @@ -68,7 +68,6 @@ This image provides various versions that are available via tags. Please read th | :----: | :----: |--- | | latest | ✅ | Stable Kasm releases | | develop | ✅ | Tip of develop | - ## Application Setup This container uses [Docker in Docker](https://www.docker.com/blog/docker-can-now-run-within-docker/) and requires being run in `privileged` mode. This container also requires an initial setup that runs on port 3000. @@ -92,6 +91,11 @@ In order to properly create virtual Gamepads you will need to mount from your ho In order to use persistant profiles in Workspaces you will need to mount in a folder to use from your host to `/profiles`. From there when configuring a workspace you can set the `Persistant Profile Path` to IE `/profiles/ubuntu-focal/{username}/`, more infomation can be found [HERE](https://www.kasmweb.com/docs/latest/how_to/persistent_profiles.html). +### Strict reverse proxies + +This image uses a self-signed certificate by default. This naturally means the scheme is `https`. +If you are using a reverse proxy which validates certificates, you need to [disable this check for the container](https://docs.linuxserver.io/faq#strict-proxy). + ## Usage Here are some example snippets to help you get started creating a container. @@ -108,7 +112,6 @@ services: privileged: true environment: - KASM_PORT=443 - - TZ=Europe/London - DOCKER_HUB_USERNAME=USER #optional - DOCKER_HUB_PASSWORD=PASS #optional volumes: @@ -129,7 +132,6 @@ docker run -d \ --name=kasm \ --privileged \ -e KASM_PORT=443 \ - -e TZ=Europe/London \ -e DOCKER_HUB_USERNAME=USER `#optional` \ -e DOCKER_HUB_PASSWORD=PASS `#optional` \ -p 3000:3000 \ @@ -140,6 +142,7 @@ docker run -d \ -v /run/udev/data:/run/udev/data `#optional` \ --restart unless-stopped \ lscr.io/linuxserver/kasm:develop + ``` ## Parameters @@ -151,7 +154,6 @@ Container images are configured using parameters passed at runtime (such as thos | `-p 3000` | Kasm Installation wizard. (https) | | `-p 443` | Kasm Workspaces interface. (https) | | `-e KASM_PORT=443` | Specify the port you bind to the outside for Kasm Workspaces. | -| `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London. | | `-e DOCKER_HUB_USERNAME=USER` | Optionally specify a DockerHub Username to pull private images. | | `-e DOCKER_HUB_PASSWORD=PASS` | Optionally specify a DockerHub password to pull private images. | | `-v /opt` | Docker and installation storage. | From 5de237b0d069ded4128df273751169cebca41f5d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 11 Feb 2023 15:21:56 +0100 Subject: [PATCH 064/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 412ff8a..d792e0c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -16,9 +16,9 @@ debianutils5.5-1ubuntu2 diffutils1:3.8-0ubuntu2 dirmngr2.2.27-3ubuntu2.1 distro-info-data0.52ubuntu0.2 -docker-ce5:23.0.0-1~ubuntu.22.04~jammy -docker-ce-cli5:23.0.0-1~ubuntu.22.04~jammy -docker-compose-plugin2.15.1-1~ubuntu.22.04~jammy +docker-ce5:23.0.1-1~ubuntu.22.04~jammy +docker-ce-cli5:23.0.1-1~ubuntu.22.04~jammy +docker-compose-plugin2.16.0-1~ubuntu.22.04~jammy dpkg1.21.1ubuntu2.1 drm-info2.2.0-2 e2fsprogs1.46.5-2ubuntu1.1 From 81bc32b95ef9545f70d31d7fa5ec8e58c2286b71 Mon Sep 17 00:00:00 2001 From: TheSpad <git@spad.co.uk> Date: Sat, 11 Feb 2023 14:34:00 +0000 Subject: [PATCH 065/337] Remove dummy armhf build - develop --- Dockerfile | 2 + Dockerfile.aarch64 | 2 + Dockerfile.armhf | 11 --- Jenkinsfile | 69 ++----------------- jenkins-vars.yml | 1 + .../dependencies.d/init-config-kasm | 0 .../dependencies.d/init-config | 0 .../s6-overlay/s6-rc.d/init-config-kasm/run | 5 -- .../s6-overlay/s6-rc.d/init-config-kasm/type | 1 - .../s6-overlay/s6-rc.d/init-config-kasm/up | 1 - .../s6-rc.d/user/contents.d/init-config-kasm | 0 11 files changed, 12 insertions(+), 80 deletions(-) delete mode 100644 Dockerfile.armhf delete mode 100644 root-armhf/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-config-kasm delete mode 100644 root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/dependencies.d/init-config delete mode 100755 root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/run delete mode 100644 root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/type delete mode 100644 root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/up delete mode 100644 root-armhf/etc/s6-overlay/s6-rc.d/user/contents.d/init-config-kasm diff --git a/Dockerfile b/Dockerfile index 0bbf840..b7f0b45 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,5 @@ +# syntax=docker/dockerfile:1 + FROM ghcr.io/linuxserver/baseimage-ubuntu:jammy # set version label diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index e990e33..5ef1b6e 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,3 +1,5 @@ +# syntax=docker/dockerfile:1 + FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-jammy # set version label diff --git a/Dockerfile.armhf b/Dockerfile.armhf deleted file mode 100644 index ad72591..0000000 --- a/Dockerfile.armhf +++ /dev/null @@ -1,11 +0,0 @@ -FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.16 - -# set version label -ARG BUILD_DATE -ARG KASM_VERSION -ARG VERSION -LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -LABEL maintainer="thelamer" - -# add init files -COPY root-armhf/ / diff --git a/Jenkinsfile b/Jenkinsfile index e9aab70..9d42a8f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -157,7 +157,7 @@ pipeline { env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/' + env.CONTAINER_NAME env.QUAYIMAGE = 'quay.io/linuxserver.io/' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { - env.CI_TAGS = 'amd64-develop-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm32v7-develop-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm64v8-develop-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + env.CI_TAGS = 'amd64-develop-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm64v8-develop-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER } else { env.CI_TAGS = 'develop-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER } @@ -180,7 +180,7 @@ pipeline { env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/lsiodev-' + env.CONTAINER_NAME env.QUAYIMAGE = 'quay.io/linuxserver.io/lsiodev-' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { - env.CI_TAGS = 'amd64-develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm32v7-develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm64v8-develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + env.CI_TAGS = 'amd64-develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm64v8-develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA } else { env.CI_TAGS = 'develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA } @@ -203,7 +203,7 @@ pipeline { env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/lspipepr-' + env.CONTAINER_NAME env.QUAYIMAGE = 'quay.io/linuxserver.io/lspipepr-' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { - env.CI_TAGS = 'amd64-develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm32v7-develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm64v8-develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + env.CI_TAGS = 'amd64-develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm64v8-develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST } else { env.CI_TAGS = 'develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST } @@ -489,40 +489,6 @@ pipeline { --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." } } - stage('Build ARMHF') { - agent { - label 'ARMHF' - } - steps { - echo "Running on node: ${NODE_NAME}" - echo 'Logging into Github' - sh '''#! /bin/bash - echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin - ''' - sh "docker build \ - --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ - --label \"org.opencontainers.image.authors=linuxserver.io\" \ - --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-kasm/packages\" \ - --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-kasm\" \ - --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-kasm\" \ - --label \"org.opencontainers.image.version=${EXT_RELEASE_CLEAN}-ls${LS_TAG_NUMBER}\" \ - --label \"org.opencontainers.image.revision=${COMMIT_SHA}\" \ - --label \"org.opencontainers.image.vendor=linuxserver.io\" \ - --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ - --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ - --label \"org.opencontainers.image.title=Kasm\" \ - --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/?utm_campaign=LinuxServer&utm_source=listing) Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services. Kasm uses devops-enabled Containerized Desktop Infrastructure (CDI) to create on-demand, disposable, docker containers that are accessible via web browser. Example use-cases include Remote Browser Isolation (RBI), Data Loss Prevention (DLP), Desktop as a Service (DaaS), Secure Remote Access Services (RAS), and Open Source Intelligence (OSINT) collections. The rendering of the graphical-based containers is powered by the open-source project [KasmVNC](https://www.kasmweb.com/kasmvnc.html?utm_campaign=LinuxServer&utm_source=kasmvnc). \" \ - --no-cache --pull -f Dockerfile.armhf -t ${IMAGE}:arm32v7-${META_TAG} \ - --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." - sh "docker tag ${IMAGE}:arm32v7-${META_TAG} ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" - retry(5) { - sh "docker push ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" - } - sh '''docker rmi \ - ${IMAGE}:arm32v7-${META_TAG} \ - ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} || :''' - } - } stage('Build ARM64') { agent { label 'ARM64' @@ -686,9 +652,7 @@ pipeline { set -e docker pull ghcr.io/linuxserver/ci:latest if [ "${MULTIARCH}" == "true" ]; then - docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} - docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v7-${META_TAG} docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} fi docker run --rm \ @@ -804,8 +768,6 @@ pipeline { echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin if [ "${CI}" == "false" ]; then - docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} - docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v7-${META_TAG} docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} fi @@ -813,47 +775,35 @@ pipeline { docker tag ${IMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-develop docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} - docker tag ${IMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} - docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-develop - docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} docker tag ${IMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-develop docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} if [ -n "${SEMVER}" ]; then docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${SEMVER} - docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${SEMVER} docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${SEMVER} fi docker push ${MANIFESTIMAGE}:amd64-${META_TAG} docker push ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} docker push ${MANIFESTIMAGE}:amd64-develop - docker push ${MANIFESTIMAGE}:arm32v7-${META_TAG} - docker push ${MANIFESTIMAGE}:arm32v7-develop - docker push ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG} docker push ${MANIFESTIMAGE}:arm64v8-develop docker push ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} if [ -n "${SEMVER}" ]; then docker push ${MANIFESTIMAGE}:amd64-${SEMVER} - docker push ${MANIFESTIMAGE}:arm32v7-${SEMVER} docker push ${MANIFESTIMAGE}:arm64v8-${SEMVER} fi docker manifest push --purge ${MANIFESTIMAGE}:develop || : - docker manifest create ${MANIFESTIMAGE}:develop ${MANIFESTIMAGE}:amd64-develop ${MANIFESTIMAGE}:arm32v7-develop ${MANIFESTIMAGE}:arm64v8-develop - docker manifest annotate ${MANIFESTIMAGE}:develop ${MANIFESTIMAGE}:arm32v7-develop --os linux --arch arm + docker manifest create ${MANIFESTIMAGE}:develop ${MANIFESTIMAGE}:amd64-develop ${MANIFESTIMAGE}:arm64v8-develop docker manifest annotate ${MANIFESTIMAGE}:develop ${MANIFESTIMAGE}:arm64v8-develop --os linux --arch arm64 --variant v8 docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} || : - docker manifest create ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} - docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} --os linux --arch arm + docker manifest create ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} --os linux --arch arm64 --variant v8 docker manifest push --purge ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} || : - docker manifest create ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} - docker manifest annotate ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} --os linux --arch arm + docker manifest create ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} docker manifest annotate ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} --os linux --arch arm64 --variant v8 if [ -n "${SEMVER}" ]; then docker manifest push --purge ${MANIFESTIMAGE}:${SEMVER} || : - docker manifest create ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm32v7-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} - docker manifest annotate ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:arm32v7-${SEMVER} --os linux --arch arm + docker manifest create ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} docker manifest annotate ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} --os linux --arch arm64 --variant v8 fi docker manifest push --purge ${MANIFESTIMAGE}:develop @@ -871,21 +821,16 @@ pipeline { ${DELETEIMAGE}:amd64-${META_TAG} \ ${DELETEIMAGE}:amd64-develop \ ${DELETEIMAGE}:amd64-${EXT_RELEASE_TAG} \ - ${DELETEIMAGE}:arm32v7-${META_TAG} \ - ${DELETEIMAGE}:arm32v7-develop \ - ${DELETEIMAGE}:arm32v7-${EXT_RELEASE_TAG} \ ${DELETEIMAGE}:arm64v8-${META_TAG} \ ${DELETEIMAGE}:arm64v8-develop \ ${DELETEIMAGE}:arm64v8-${EXT_RELEASE_TAG} || : if [ -n "${SEMVER}" ]; then docker rmi \ ${DELETEIMAGE}:amd64-${SEMVER} \ - ${DELETEIMAGE}:arm32v7-${SEMVER} \ ${DELETEIMAGE}:arm64v8-${SEMVER} || : fi done docker rmi \ - ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} \ ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || : ''' } diff --git a/jenkins-vars.yml b/jenkins-vars.yml index f2949c8..c84e0a0 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -7,6 +7,7 @@ custom_version_command: "curl -sX GET https://kasm-ci.s3.amazonaws.com/dev-versi release_type: prerelease release_tag: develop ls_branch: develop +build_armhf: false repo_vars: - BUILD_VERSION_ARG = 'KASM_VERSION' - LS_USER = 'linuxserver' diff --git a/root-armhf/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-config-kasm b/root-armhf/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-config-kasm deleted file mode 100644 index e69de29..0000000 diff --git a/root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/dependencies.d/init-config b/root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/dependencies.d/init-config deleted file mode 100644 index e69de29..0000000 diff --git a/root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/run b/root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/run deleted file mode 100755 index 2a7552e..0000000 --- a/root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/run +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/with-contenv bash - -for i in {1..10}; do - echo "Armhf/Arm32v7 is not supported" -done diff --git a/root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/type b/root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/type deleted file mode 100644 index bdd22a1..0000000 --- a/root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/type +++ /dev/null @@ -1 +0,0 @@ -oneshot diff --git a/root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/up b/root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/up deleted file mode 100644 index cd5b530..0000000 --- a/root-armhf/etc/s6-overlay/s6-rc.d/init-config-kasm/up +++ /dev/null @@ -1 +0,0 @@ -/etc/s6-overlay/s6-rc.d/init-config-kasm/run diff --git a/root-armhf/etc/s6-overlay/s6-rc.d/user/contents.d/init-config-kasm b/root-armhf/etc/s6-overlay/s6-rc.d/user/contents.d/init-config-kasm deleted file mode 100644 index e69de29..0000000 From cb5cd9bc541e530daa104c997b26fa92a8a6768c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 19 Feb 2023 13:02:16 +0100 Subject: [PATCH 066/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d792e0c..6544b41 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,7 +7,7 @@ bash5.1-6ubuntu1 bsdutils1:2.37.2-4ubuntu3 btrfs-progs5.16.2-1 ca-certificates20211016ubuntu0.22.04.1 -containerd.io1.6.16-1 +containerd.io1.6.18-1 coreutils8.32-4.1ubuntu1 curl7.81.0-1ubuntu1.7 dash0.5.11+git20210903+057cd650a4ed-3build1 @@ -161,7 +161,7 @@ ncurses-bin6.3-2 netbase6.3 netcat1.218-4ubuntu1 netcat-openbsd1.218-4ubuntu1 -nodejs16.19.0-deb-1nodesource1 +nodejs16.19.1-deb-1nodesource1 nvidia-container-toolkit1.12.0-1 nvidia-container-toolkit-base1.12.0-1 nvidia-docker22.12.0-1 From be40e569df98277cdc092333c7239b1d596ace16 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 22 Feb 2023 08:21:46 -0600 Subject: [PATCH 067/337] Bot Updating Package Versions --- package_versions.txt | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6544b41..633d264 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,7 +1,7 @@ adduser3.118ubuntu5 apt2.4.8 apt-utils2.4.8 -base-files12ubuntu4.2 +base-files12ubuntu4.3 base-passwd3.5.52build1 bash5.1-6ubuntu1 bsdutils1:2.37.2-4ubuntu3 @@ -74,7 +74,7 @@ libgcrypt201.9.4-3ubuntu3 libgmp102:6.2.1+dfsg-3ubuntu1 libgnutls303.7.3-4ubuntu1.1 libgpg-error01.43-3 -libgssapi-krb5-21.19.2-2 +libgssapi-krb5-21.19.2-2ubuntu0.1 libhogweed63.7.3-1build2 libicu7070.1-2 libidn2-02.3.2-2build1 @@ -83,10 +83,10 @@ libip4tc21.8.7-1ubuntu5 libip6tc21.8.7-1ubuntu5 libjq11.6-2.1ubuntu3 libjson-c50.15-3~ubuntu1.22.04.1 -libk5crypto31.19.2-2 +libk5crypto31.19.2-2ubuntu0.1 libkeyutils11.6.1-2ubuntu3 -libkrb5-31.19.2-2 -libkrb5support01.19.2-2 +libkrb5-31.19.2-2ubuntu0.1 +libkrb5support01.19.2-2ubuntu0.1 libksba81.6.0-2ubuntu0.2 libldap-2.5-02.5.13+dfsg-0ubuntu0.22.04.1 libldap-common2.5.13+dfsg-0ubuntu0.22.04.1 @@ -110,10 +110,10 @@ libnvidia-container11.12.0-1 libnvidia-container-tools1.12.0-1 libonig56.9.7.1-2build1 libp11-kit00.24.0-6build1 -libpam0g1.4.0-11ubuntu2 -libpam-modules1.4.0-11ubuntu2 -libpam-modules-bin1.4.0-11ubuntu2 -libpam-runtime1.4.0-11ubuntu2 +libpam0g1.4.0-11ubuntu2.3 +libpam-modules1.4.0-11ubuntu2.3 +libpam-modules-bin1.4.0-11ubuntu2.3 +libpam-runtime1.4.0-11ubuntu2.3 libpcre2-8-010.39-3ubuntu0.1 libpcre32:8.39-13ubuntu0.22.04.1 libprocps82:3.3.17-6ubuntu2 @@ -135,7 +135,7 @@ libsmartcols12.37.2-4ubuntu3 libsqlite3-03.37.2-2ubuntu0.1 libss21.46.5-2ubuntu1.1 libssh-40.9.6-2build1 -libssl33.0.2-0ubuntu1.7 +libssl33.0.2-0ubuntu1.8 libstdc++612.1.0-2ubuntu1~22.04 libsystemd0249.11-0ubuntu3.6 libtasn1-64.18.0-4build1 From 2be26a11fbe9b06152130d633a9b5e15acef84b8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 28 Feb 2023 06:26:25 +0100 Subject: [PATCH 068/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 633d264..b50f677 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,7 @@ btrfs-progs5.16.2-1 ca-certificates20211016ubuntu0.22.04.1 containerd.io1.6.18-1 coreutils8.32-4.1ubuntu1 -curl7.81.0-1ubuntu1.7 +curl7.81.0-1ubuntu1.8 dash0.5.11+git20210903+057cd650a4ed-3build1 debconf1.5.79ubuntu1 debianutils5.5-1ubuntu2 @@ -58,7 +58,7 @@ libcap-ng00.7.9-2.2build3 libc-bin2.35-0ubuntu3.1 libcom-err21.46.5-2ubuntu1.1 libcrypt11:4.4.27-1 -libcurl47.81.0-1ubuntu1.7 +libcurl47.81.0-1ubuntu1.8 libdb5.35.3.28+dfsg1-0.8ubuntu3 libdebconfclient00.261ubuntu1 libdevmapper1.02.12:1.02.175-2.1ubuntu4 From 7d334189896a86c1211c55589de1599d13a30424 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 2 Mar 2023 15:20:21 +0100 Subject: [PATCH 069/337] Bot Updating Templated Files --- Jenkinsfile | 41 +++++++++++++++-------------------------- 1 file changed, 15 insertions(+), 26 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9d42a8f..9e459eb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -442,7 +442,8 @@ pipeline { } steps { echo "Running on node: ${NODE_NAME}" - sh "docker build \ + sh "sed -r -i 's|(^FROM .*)|\\1\\n\\nENV LSIO_FIRST_PARTY=true|g' Dockerfile" + sh "docker buildx build \ --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ --label \"org.opencontainers.image.authors=linuxserver.io\" \ --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-kasm/packages\" \ @@ -455,7 +456,7 @@ pipeline { --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Kasm\" \ --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/?utm_campaign=LinuxServer&utm_source=listing) Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services. Kasm uses devops-enabled Containerized Desktop Infrastructure (CDI) to create on-demand, disposable, docker containers that are accessible via web browser. Example use-cases include Remote Browser Isolation (RBI), Data Loss Prevention (DLP), Desktop as a Service (DaaS), Secure Remote Access Services (RAS), and Open Source Intelligence (OSINT) collections. The rendering of the graphical-based containers is powered by the open-source project [KasmVNC](https://www.kasmweb.com/kasmvnc.html?utm_campaign=LinuxServer&utm_source=kasmvnc). \" \ - --no-cache --pull -t ${IMAGE}:${META_TAG} \ + --no-cache --pull -t ${IMAGE}:${META_TAG} --platform=linux/amd64 \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." } } @@ -472,7 +473,8 @@ pipeline { stage('Build X86') { steps { echo "Running on node: ${NODE_NAME}" - sh "docker build \ + sh "sed -r -i 's|(^FROM .*)|\\1\\n\\nENV LSIO_FIRST_PARTY=true|g' Dockerfile" + sh "docker buildx build \ --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ --label \"org.opencontainers.image.authors=linuxserver.io\" \ --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-kasm/packages\" \ @@ -485,7 +487,7 @@ pipeline { --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Kasm\" \ --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/?utm_campaign=LinuxServer&utm_source=listing) Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services. Kasm uses devops-enabled Containerized Desktop Infrastructure (CDI) to create on-demand, disposable, docker containers that are accessible via web browser. Example use-cases include Remote Browser Isolation (RBI), Data Loss Prevention (DLP), Desktop as a Service (DaaS), Secure Remote Access Services (RAS), and Open Source Intelligence (OSINT) collections. The rendering of the graphical-based containers is powered by the open-source project [KasmVNC](https://www.kasmweb.com/kasmvnc.html?utm_campaign=LinuxServer&utm_source=kasmvnc). \" \ - --no-cache --pull -t ${IMAGE}:amd64-${META_TAG} \ + --no-cache --pull -t ${IMAGE}:amd64-${META_TAG} --platform=linux/amd64 \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." } } @@ -499,7 +501,8 @@ pipeline { sh '''#! /bin/bash echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin ''' - sh "docker build \ + sh "sed -r -i 's|(^FROM .*)|\\1\\n\\nENV LSIO_FIRST_PARTY=true|g' Dockerfile.aarch64" + sh "docker buildx build \ --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ --label \"org.opencontainers.image.authors=linuxserver.io\" \ --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-kasm/packages\" \ @@ -512,7 +515,7 @@ pipeline { --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Kasm\" \ --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/?utm_campaign=LinuxServer&utm_source=listing) Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services. Kasm uses devops-enabled Containerized Desktop Infrastructure (CDI) to create on-demand, disposable, docker containers that are accessible via web browser. Example use-cases include Remote Browser Isolation (RBI), Data Loss Prevention (DLP), Desktop as a Service (DaaS), Secure Remote Access Services (RAS), and Open Source Intelligence (OSINT) collections. The rendering of the graphical-based containers is powered by the open-source project [KasmVNC](https://www.kasmweb.com/kasmvnc.html?utm_campaign=LinuxServer&utm_source=kasmvnc). \" \ - --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} \ + --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} --platform=linux/arm64 \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh "docker tag ${IMAGE}:arm64v8-${META_TAG} ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" retry(5) { @@ -541,26 +544,12 @@ pipeline { else LOCAL_CONTAINER=${IMAGE}:${META_TAG} fi - if [ "${DIST_IMAGE}" == "alpine" ]; then - docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\ - apk info -v > /tmp/package_versions.txt && \ - sort -o /tmp/package_versions.txt /tmp/package_versions.txt && \ - chmod 777 /tmp/package_versions.txt' - elif [ "${DIST_IMAGE}" == "ubuntu" ]; then - docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\ - apt list -qq --installed | sed "s#/.*now ##g" | cut -d" " -f1 > /tmp/package_versions.txt && \ - sort -o /tmp/package_versions.txt /tmp/package_versions.txt && \ - chmod 777 /tmp/package_versions.txt' - elif [ "${DIST_IMAGE}" == "fedora" ]; then - docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\ - rpm -qa > /tmp/package_versions.txt && \ - sort -o /tmp/package_versions.txt /tmp/package_versions.txt && \ - chmod 777 /tmp/package_versions.txt' - elif [ "${DIST_IMAGE}" == "arch" ]; then - docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\ - pacman -Q > /tmp/package_versions.txt && \ - chmod 777 /tmp/package_versions.txt' - fi + touch ${TEMPDIR}/package_versions.txt + docker run --rm \ + -v /var/run/docker.sock:/var/run/docker.sock:ro \ + -v ${TEMPDIR}:/tmp \ + ghcr.io/anchore/syft:latest \ + ${LOCAL_CONTAINER} -o table=/tmp/package_versions.txt NEW_PACKAGE_TAG=$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 ) echo "Package tag sha from current packages in buit container is ${NEW_PACKAGE_TAG} comparing to old ${PACKAGE_TAG} from github" if [ "${NEW_PACKAGE_TAG}" != "${PACKAGE_TAG}" ]; then From c4e595d3a6ccec076f8e71a49127db70ed3fd35e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 2 Mar 2023 15:24:39 +0100 Subject: [PATCH 070/337] Bot Updating Package Versions --- package_versions.txt | 948 ++++++++++++++++++++++++++++++++++--------- 1 file changed, 757 insertions(+), 191 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b50f677..0bd1c7a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,191 +1,757 @@ -adduser3.118ubuntu5 -apt2.4.8 -apt-utils2.4.8 -base-files12ubuntu4.3 -base-passwd3.5.52build1 -bash5.1-6ubuntu1 -bsdutils1:2.37.2-4ubuntu3 -btrfs-progs5.16.2-1 -ca-certificates20211016ubuntu0.22.04.1 -containerd.io1.6.18-1 -coreutils8.32-4.1ubuntu1 -curl7.81.0-1ubuntu1.8 -dash0.5.11+git20210903+057cd650a4ed-3build1 -debconf1.5.79ubuntu1 -debianutils5.5-1ubuntu2 -diffutils1:3.8-0ubuntu2 -dirmngr2.2.27-3ubuntu2.1 -distro-info-data0.52ubuntu0.2 -docker-ce5:23.0.1-1~ubuntu.22.04~jammy -docker-ce-cli5:23.0.1-1~ubuntu.22.04~jammy -docker-compose-plugin2.16.0-1~ubuntu.22.04~jammy -dpkg1.21.1ubuntu2.1 -drm-info2.2.0-2 -e2fsprogs1.46.5-2ubuntu1.1 -findutils4.8.0-1ubuntu3 -fuse33.10.5-1build1 -fuse-overlayfs1.7.1-1 -gcc-12-base12.1.0-2ubuntu1~22.04 -gnupg2.2.27-3ubuntu2.1 -gnupg-l10n2.2.27-3ubuntu2.1 -gnupg-utils2.2.27-3ubuntu2.1 -gpg2.2.27-3ubuntu2.1 -gpg-agent2.2.27-3ubuntu2.1 -gpgconf2.2.27-3ubuntu2.1 -gpgsm2.2.27-3ubuntu2.1 -gpgv2.2.27-3ubuntu2.1 -gpg-wks-client2.2.27-3ubuntu2.1 -gpg-wks-server2.2.27-3ubuntu2.1 -grep3.7-1build1 -gzip1.10-4ubuntu4.1 -hostname3.23ubuntu2 -init-system-helpers1.62 -iptables1.8.7-1ubuntu5 -jq1.6-2.1ubuntu3 -libacl12.3.1-1 -libapt-pkg6.02.4.8 -libassuan02.5.5-1build1 -libattr11:2.5.1-1build1 -libaudit11:3.0.7-1build1 -libaudit-common1:3.0.7-1build1 -libblkid12.37.2-4ubuntu3 -libbrotli11.0.9-2build6 -libbsd00.11.5-1 -libbz2-1.01.0.8-5build1 -libc62.35-0ubuntu3.1 -libcap21:2.44-1build3 -libcap-ng00.7.9-2.2build3 -libc-bin2.35-0ubuntu3.1 -libcom-err21.46.5-2ubuntu1.1 -libcrypt11:4.4.27-1 -libcurl47.81.0-1ubuntu1.8 -libdb5.35.3.28+dfsg1-0.8ubuntu3 -libdebconfclient00.261ubuntu1 -libdevmapper1.02.12:1.02.175-2.1ubuntu4 -libdrm22.4.113-2~ubuntu0.22.04.1 -libdrm-common2.4.113-2~ubuntu0.22.04.1 -libedit23.1-20210910-1build1 -libexpat12.4.7-1ubuntu0.2 -libext2fs21.46.5-2ubuntu1.1 -libffi83.4.2-4 -libfuse3-33.10.5-1build1 -libgcc-s112.1.0-2ubuntu1~22.04 -libgcrypt201.9.4-3ubuntu3 -libgmp102:6.2.1+dfsg-3ubuntu1 -libgnutls303.7.3-4ubuntu1.1 -libgpg-error01.43-3 -libgssapi-krb5-21.19.2-2ubuntu0.1 -libhogweed63.7.3-1build2 -libicu7070.1-2 -libidn2-02.3.2-2build1 -libinih153-1ubuntu3 -libip4tc21.8.7-1ubuntu5 -libip6tc21.8.7-1ubuntu5 -libjq11.6-2.1ubuntu3 -libjson-c50.15-3~ubuntu1.22.04.1 -libk5crypto31.19.2-2ubuntu0.1 -libkeyutils11.6.1-2ubuntu3 -libkrb5-31.19.2-2ubuntu0.1 -libkrb5support01.19.2-2ubuntu0.1 -libksba81.6.0-2ubuntu0.2 -libldap-2.5-02.5.13+dfsg-0ubuntu0.22.04.1 -libldap-common2.5.13+dfsg-0ubuntu0.22.04.1 -liblz4-11.9.3-2build2 -liblzma55.2.5-2ubuntu1 -liblzo2-22.10-2build3 -libmd01.0.4-1build1 -libmnl01.0.4-3build2 -libmount12.37.2-4ubuntu3 -libmpdec32.5.1-2build2 -libncurses66.3-2 -libncursesw66.3-2 -libnetfilter-conntrack31.0.9-1 -libnettle83.7.3-1build2 -libnfnetlink01.0.1-3build3 -libnftnl111.2.1-1build1 -libnghttp2-141.43.0-1build3 -libnpth01.6-3build2 -libnsl21.3.0-2build2 -libnvidia-container11.12.0-1 -libnvidia-container-tools1.12.0-1 -libonig56.9.7.1-2build1 -libp11-kit00.24.0-6build1 -libpam0g1.4.0-11ubuntu2.3 -libpam-modules1.4.0-11ubuntu2.3 -libpam-modules-bin1.4.0-11ubuntu2.3 -libpam-runtime1.4.0-11ubuntu2.3 -libpcre2-8-010.39-3ubuntu0.1 -libpcre32:8.39-13ubuntu0.22.04.1 -libprocps82:3.3.17-6ubuntu2 -libpsl50.21.0-1.2build2 -libpython3.10-minimal3.10.6-1~22.04.2 -libpython3.10-stdlib3.10.6-1~22.04.2 -libpython3-stdlib3.10.6-1~22.04 -libreadline88.1.2-1 -librtmp12.4+20151223.gitfa8646d.1-2build4 -libsasl2-22.1.27+dfsg2-3ubuntu1.1 -libsasl2-modules2.1.27+dfsg2-3ubuntu1.1 -libsasl2-modules-db2.1.27+dfsg2-3ubuntu1.1 -libseccomp22.5.3-2ubuntu2 -libselinux13.3-1build2 -libsemanage23.3-1build2 -libsemanage-common3.3-1build2 -libsepol23.3-1build1 -libsmartcols12.37.2-4ubuntu3 -libsqlite3-03.37.2-2ubuntu0.1 -libss21.46.5-2ubuntu1.1 -libssh-40.9.6-2build1 -libssl33.0.2-0ubuntu1.8 -libstdc++612.1.0-2ubuntu1~22.04 -libsystemd0249.11-0ubuntu3.6 -libtasn1-64.18.0-4build1 -libtinfo66.3-2 -libtirpc31.3.2-2ubuntu0.1 -libtirpc-common1.3.2-2ubuntu0.1 -libudev1249.11-0ubuntu3.6 -libunistring21.0-1 -libuuid12.37.2-4ubuntu3 -libxtables121.8.7-1ubuntu5 -libxxhash00.8.1-1 -libzstd11.4.8+dfsg-3build1 -locales2.35-0ubuntu3.1 -login1:4.8.1-2ubuntu2.1 -logsave1.46.5-2ubuntu1.1 -lsb-base11.1.0ubuntu4 -lsb-release11.1.0ubuntu4 -mawk1.3.4.20200120-3 -media-types7.0.0 -mount2.37.2-4ubuntu3 -ncurses-base6.3-2 -ncurses-bin6.3-2 -netbase6.3 -netcat1.218-4ubuntu1 -netcat-openbsd1.218-4ubuntu1 -nodejs16.19.1-deb-1nodesource1 -nvidia-container-toolkit1.12.0-1 -nvidia-container-toolkit-base1.12.0-1 -nvidia-docker22.12.0-1 -openssl3.0.2-0ubuntu1.8 -passwd1:4.8.1-2ubuntu2.1 -perl-base5.34.0-3ubuntu1.1 -pigz2.6-1 -pinentry-curses1.1.1-1build2 -procps2:3.3.17-6ubuntu2 -publicsuffix20211207.1025-1 -python3.103.10.6-1~22.04.2 -python3.10-minimal3.10.6-1~22.04.2 -python33.10.6-1~22.04 -python3-minimal3.10.6-1~22.04 -readline-common8.1.2-1 -sed4.8-1ubuntu2 -sensible-utils0.0.17 -sudo1.9.9-1ubuntu2.2 -sysvinit-utils3.01-1ubuntu1 -tar1.34+dfsg-1build3 -tzdata2022g-0ubuntu0.22.04.1 -ubuntu-keyring2021.03.26 -uidmap1:4.8.1-2ubuntu2.1 -usrmerge25ubuntu2 -util-linux2.37.2-4ubuntu3 -xfsprogs5.13.0-1ubuntu2 -zlib1g1:1.2.11.dfsg-2ubuntu9.2 +NAME VERSION TYPE +1to2 1.0.0 npm +@balena/dockerignore 1.0.2 npm +@colors/colors 1.5.0 npm +@gar/promisify 1.1.3 npm +@isaacs/string-locale-compare 1.1.0 npm +@npmcli/arborist 5.6.3 npm +@npmcli/ci-detect 2.0.0 npm +@npmcli/config 4.2.2 npm +@npmcli/disparity-colors 2.0.0 npm +@npmcli/fs 2.1.2 npm +@npmcli/git 3.0.2 npm +@npmcli/installed-package-contents 1.0.7 npm +@npmcli/map-workspaces 2.0.4 npm +@npmcli/metavuln-calculator 3.1.1 npm +@npmcli/move-file 2.0.1 npm +@npmcli/name-from-folder 1.0.1 npm +@npmcli/node-gyp 2.0.0 npm +@npmcli/package-json 2.0.0 npm +@npmcli/promise-spawn 3.0.0 npm +@npmcli/query 1.2.0 npm +@npmcli/run-script 4.2.1 npm +@socket.io/component-emitter 3.1.0 npm +@tootallnate/once 2.0.0 npm +@types/cookie 0.4.1 npm +@types/cors 2.8.13 npm +@types/node 18.14.4 npm +abbrev 1.1.1 npm +accepts 1.3.8 npm +adduser 3.118ubuntu5 deb +agent-base 6.0.2 npm +agentkeepalive 4.2.1 npm +aggregate-error 3.1.0 npm +ansi-regex 5.0.1 npm +ansi-styles 4.3.0 npm +aproba 2.0.0 npm +apt 2.4.8 deb +apt-utils 2.4.8 deb +archy 1.0.0 npm +are-we-there-yet 3.0.1 npm +argparse 2.0.1 npm +array-flatten 1.1.1 npm +asap 2.0.6 npm +asn1 0.2.6 npm +balanced-match 1.0.2 npm +base-files 12ubuntu4.3 deb +base-passwd 3.5.52build1 deb +base64-js 1.5.1 npm +base64id 2.0.0 npm +bash 5.1-6ubuntu1 deb +bcrypt-pbkdf 1.0.2 npm +bin-links 3.0.3 npm +binary-extensions 2.2.0 npm +bl 4.1.0 npm +body-parser 1.20.1 npm +brace-expansion 1.1.11 npm +brace-expansion 2.0.1 npm +bsdutils 1:2.37.2-4ubuntu3 deb +btrfs-progs 5.16.2-1 deb +buffer 5.7.1 npm +buildcheck 0.0.3 npm +builtins 5.0.1 npm +bytes 3.1.2 npm +ca-certificates 20211016ubuntu0.22.04.1 deb +cacache 16.1.3 npm +call-bind 1.0.2 npm +chalk 4.1.2 npm +chownr 1.1.4 npm +chownr 2.0.0 npm +cidr-regex 3.1.1 npm +clean-stack 2.2.0 npm +cli-columns 4.0.0 npm +cli-table3 0.6.2 npm +clone 1.0.4 npm +cmd-shim 5.0.0 npm +color-convert 2.0.1 npm +color-name 1.1.4 npm +color-support 1.1.3 npm +columnify 1.6.0 npm +common-ancestor-path 1.0.1 npm +concat-map 0.0.1 npm +console-control-strings 1.1.0 npm +containerd.io 1.6.18-1 deb +content-disposition 0.5.4 npm +content-type 1.0.5 npm +cookie 0.4.2 npm +cookie 0.5.0 npm +cookie-signature 1.0.6 npm +corepack 0.15.1 npm +coreutils 8.32-4.1ubuntu1 deb +cors 2.8.5 npm +cpu-features 0.0.4 npm +cssesc 3.0.0 npm +curl 7.81.0-1ubuntu1.8 deb +dash 0.5.11+git20210903+057cd650a4ed-3build1 deb +debconf 1.5.79ubuntu1 deb +debianutils 5.5-1ubuntu2 deb +debug 2.6.9 npm +debug 4.3.4 npm +debuglog 1.0.1 npm +defaults 1.0.3 npm +delegates 1.0.0 npm +depd 1.1.2 npm +depd 2.0.0 npm +destroy 1.2.0 npm +dezalgo 1.0.4 npm +diff 5.1.0 npm +diffutils 1:3.8-0ubuntu2 deb +dirmngr 2.2.27-3ubuntu2.1 deb +distro-info-data 0.52ubuntu0.2 deb +docker-ce 5:23.0.1-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:23.0.1-1~ubuntu.22.04~jammy deb +docker-compose-plugin 2.16.0-1~ubuntu.22.04~jammy deb +docker-modem 3.0.6 npm +dockerode 3.3.4 npm +dpkg 1.21.1ubuntu2.1 deb +drm-info 2.2.0-2 deb +e2fsprogs 1.46.5-2ubuntu1.1 deb +ee-first 1.1.1 npm +emoji-regex 8.0.0 npm +encodeurl 1.0.2 npm +encoding 0.1.13 npm +end-of-stream 1.4.4 npm +engine.io 6.4.1 npm +engine.io-parser 5.0.6 npm +env-paths 2.2.1 npm +err-code 2.0.3 npm +escape-html 1.0.3 npm +etag 1.8.1 npm +express 4.18.2 npm +fastest-levenshtein 1.0.12 npm +finalhandler 1.2.0 npm +findutils 4.8.0-1ubuntu3 deb +forwarded 0.2.0 npm +fresh 0.5.2 npm +fs-constants 1.0.0 npm +fs-minipass 2.1.0 npm +fs.realpath 1.0.0 npm +function-bind 1.1.1 npm +fuse-overlayfs 1.7.1-1 deb +fuse3 3.10.5-1build1 deb +gauge 4.0.4 npm +gcc-12-base 12.1.0-2ubuntu1~22.04 deb +get-intrinsic 1.2.0 npm +github.com/AlecAivazis/survey/v2 v2.3.6 go-module +github.com/BurntSushi/toml v1.0.0 go-module +github.com/Microsoft/hcsshim v0.9.6 go-module +github.com/NVIDIA/go-nvml v0.11.6-0.0.20220823120812-7e2082095e82 go-module +github.com/NVIDIA/nvidia-container-toolkit (devel) go-module +github.com/a8m/envsubst v1.3.0 go-module +github.com/aws/aws-sdk-go-v2 v1.16.3 go-module +github.com/aws/aws-sdk-go-v2/config v1.15.5 go-module +github.com/aws/aws-sdk-go-v2/credentials v1.12.0 go-module +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.4 go-module +github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.10 go-module +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.4 go-module +github.com/aws/aws-sdk-go-v2/internal/ini v1.3.11 go-module +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.4 go-module +github.com/aws/aws-sdk-go-v2/service/sso v1.11.4 go-module +github.com/aws/aws-sdk-go-v2/service/sts v1.16.4 go-module +github.com/aws/smithy-go v1.11.2 go-module +github.com/beorn7/perks v1.0.1 go-module +github.com/blang/semver v3.5.1+incompatible go-module +github.com/buger/goterm v1.0.4 go-module +github.com/cenkalti/backoff/v4 v4.1.2 go-module +github.com/cespare/xxhash/v2 v2.1.2 go-module +github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module +github.com/cilium/ebpf v0.7.0 go-module +github.com/compose-spec/compose-go v1.9.0 go-module +github.com/container-orchestrated-devices/container-device-interface v0.5.4-0.20230111111500-5b3b5d81179a go-module +github.com/containerd/aufs v1.0.0 go-module +github.com/containerd/btrfs v1.0.0 go-module +github.com/containerd/cgroups v1.0.4 go-module +github.com/containerd/console v1.0.3 go-module +github.com/containerd/containerd v0.0.0-20230215225028-2456e983eb9e go-module +github.com/containerd/containerd v1.6.16 go-module +github.com/containerd/continuity v0.3.0 go-module +github.com/containerd/fifo v1.0.0 go-module +github.com/containerd/go-cni v1.1.6 go-module +github.com/containerd/go-runc v1.0.0 go-module +github.com/containerd/imgcrypt v1.1.4 go-module +github.com/containerd/nri v0.1.0 go-module +github.com/containerd/ttrpc v1.1.0 go-module +github.com/containerd/typeurl v1.0.2 go-module +github.com/containerd/zfs v1.0.0 go-module +github.com/containernetworking/cni v1.1.1 go-module +github.com/containernetworking/plugins v1.1.1 go-module +github.com/containers/ocicrypt v1.1.3 go-module +github.com/coreos/go-systemd/v22 v22.3.2 go-module +github.com/cpuguy83/go-md2man/v2 v2.0.0 go-module +github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module +github.com/cpuguy83/go-md2man/v2 v2.0.1 go-module +github.com/cyphar/filepath-securejoin v0.2.3 go-module +github.com/davecgh/go-spew v1.1.1 go-module +github.com/distribution/distribution/v3 v3.0.0-20221201083218-92d136e113cf go-module +github.com/docker/buildx v0.10.2 go-module +github.com/docker/cli v23.0.0+incompatible go-module +github.com/docker/compose/v2 (devel) go-module +github.com/docker/distribution v2.8.1+incompatible go-module +github.com/docker/docker v23.0.0+incompatible go-module +github.com/docker/docker-credential-helpers v0.7.0 go-module +github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module +github.com/docker/go-connections v0.4.0 go-module +github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module +github.com/docker/go-metrics v0.0.1 go-module +github.com/docker/go-units v0.4.0 go-module +github.com/docker/go-units v0.5.0 go-module +github.com/elliotchance/orderedmap v1.4.0 go-module +github.com/emicklei/go-restful v2.9.5+incompatible go-module +github.com/fatih/color v1.13.0 go-module +github.com/felixge/httpsnoop v1.0.2 go-module +github.com/fsnotify/fsnotify v1.4.9 go-module +github.com/fsnotify/fsnotify v1.5.4 go-module +github.com/fvbommel/sortorder v1.0.2 go-module +github.com/go-logr/logr v1.2.2 go-module +github.com/go-logr/logr v1.2.3 go-module +github.com/go-logr/stdr v1.2.2 go-module +github.com/goccy/go-yaml v1.9.5 go-module +github.com/godbus/dbus/v5 v5.0.6 go-module +github.com/gofrs/flock v0.8.1 go-module +github.com/gogo/googleapis v1.3.2 go-module +github.com/gogo/googleapis v1.4.1 go-module +github.com/gogo/protobuf v1.3.2 go-module +github.com/golang/mock v1.6.0 go-module +github.com/golang/protobuf v1.5.2 go-module +github.com/google/go-cmp v0.5.6 go-module +github.com/google/go-cmp v0.5.9 go-module +github.com/google/gofuzz v1.2.0 go-module +github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module +github.com/google/uuid v1.2.0 go-module +github.com/googleapis/gnostic v0.5.5 go-module +github.com/gorilla/mux v1.8.0 go-module +github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module +github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module +github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module +github.com/hashicorp/errwrap v1.1.0 go-module +github.com/hashicorp/go-multierror v1.1.1 go-module +github.com/hashicorp/go-version v1.6.0 go-module +github.com/imdario/mergo v0.3.12 go-module +github.com/imdario/mergo v0.3.13 go-module +github.com/intel/goresctrl v0.2.0 go-module +github.com/jinzhu/copier v0.3.5 go-module +github.com/jonboulle/clockwork v0.3.1-0.20230117163003-a89700cec744 go-module +github.com/json-iterator/go v1.1.12 go-module +github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module +github.com/klauspost/compress v1.11.13 go-module +github.com/klauspost/compress v1.15.12 go-module +github.com/magiconair/properties v1.8.6 go-module +github.com/mattn/go-colorable v0.1.12 go-module +github.com/mattn/go-isatty v0.0.14 go-module +github.com/mattn/go-isatty v0.0.16 go-module +github.com/mattn/go-runewidth v0.0.14 go-module +github.com/mattn/go-shellwords v1.0.12 go-module +github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module +github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module +github.com/miekg/pkcs11 v1.1.1 go-module +github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module +github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible go-module +github.com/mitchellh/mapstructure v1.5.0 go-module +github.com/moby/buildkit v0.11.2 go-module +github.com/moby/locker v1.0.1 go-module +github.com/moby/patternmatcher v0.5.0 go-module +github.com/moby/spdystream v0.2.0 go-module +github.com/moby/sys/mountinfo v0.5.0 go-module +github.com/moby/sys/mountinfo v0.6.2 go-module +github.com/moby/sys/sequential v0.5.0 go-module +github.com/moby/sys/signal v0.6.0 go-module +github.com/moby/sys/signal v0.7.0 go-module +github.com/moby/sys/symlink v0.2.0 go-module +github.com/moby/term v0.0.0-20221128092401-c43b287e0e0f go-module +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module +github.com/modern-go/reflect2 v1.0.2 go-module +github.com/morikuni/aec v1.0.0 go-module +github.com/mrunalp/fileutils v0.5.0 go-module +github.com/opencontainers/go-digest v1.0.0 go-module +github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799 go-module +github.com/opencontainers/image-spec v1.1.0-rc2 go-module +github.com/opencontainers/runc v0.0.0-20220824004513-5fd4c4d14413 go-module +github.com/opencontainers/runc v1.1.2 go-module +github.com/opencontainers/runc v1.1.3 go-module +github.com/opencontainers/runc v1.1.4 go-module +github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module +github.com/opencontainers/runtime-spec v1.0.3-0.20220825212826-86290f6a00fb go-module +github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module +github.com/opencontainers/selinux v1.10.0 go-module +github.com/opencontainers/selinux v1.10.1 go-module +github.com/pelletier/go-toml v1.9.4 go-module +github.com/pelletier/go-toml v1.9.5 go-module +github.com/pkg/errors v0.9.1 go-module +github.com/pmezard/go-difflib v1.0.0 go-module +github.com/prometheus/client_golang v1.11.1 go-module +github.com/prometheus/client_golang v1.14.0 go-module +github.com/prometheus/client_model v0.2.0 go-module +github.com/prometheus/client_model v0.3.0 go-module +github.com/prometheus/common v0.30.0 go-module +github.com/prometheus/common v0.37.0 go-module +github.com/prometheus/procfs v0.7.3 go-module +github.com/prometheus/procfs v0.8.0 go-module +github.com/rivo/uniseg v0.2.0 go-module +github.com/russross/blackfriday/v2 v2.0.1 go-module +github.com/russross/blackfriday/v2 v2.1.0 go-module +github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 go-module +github.com/serialx/hashring v0.0.0-20190422032157-8b2912629002 go-module +github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module +github.com/sirupsen/logrus v1.8.1 go-module +github.com/sirupsen/logrus v1.9.0 go-module +github.com/spf13/cobra v1.4.0 go-module +github.com/spf13/cobra v1.6.1 go-module +github.com/spf13/pflag v1.0.5 go-module +github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 go-module +github.com/stretchr/testify v1.8.1 go-module +github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module +github.com/tchap/go-patricia v2.2.6+incompatible go-module +github.com/theupdateframework/notary v0.7.0 go-module +github.com/tilt-dev/fsnotify v1.4.8-0.20220602155310-fff9c274a375 go-module +github.com/timtadh/data-structures v0.5.3 go-module +github.com/timtadh/lexmachine v0.2.2 go-module +github.com/tonistiigi/fsutil v0.0.0-20230105215944-fb433841cbfa go-module +github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module +github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f go-module +github.com/urfave/cli v1.22.1 go-module +github.com/urfave/cli/v2 v2.3.0 go-module +github.com/vishvananda/netlink v1.1.0 go-module +github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5 go-module +github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df go-module +github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f go-module +github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb go-module +github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module +github.com/xeipuuv/gojsonschema v1.2.0 go-module +gitlab.com/nvidia/cloud-native/go-nvlib v0.0.0-20230119114711-6fe07bb33342 go-module +glob 7.2.3 npm +glob 8.0.3 npm +gnupg 2.2.27-3ubuntu2.1 deb +gnupg-l10n 2.2.27-3ubuntu2.1 deb +gnupg-utils 2.2.27-3ubuntu2.1 deb +go.etcd.io/bbolt v1.3.6 go-module +go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.28.0 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.29.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.29.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.29.0 go-module +go.opentelemetry.io/otel v1.13.0 go-module +go.opentelemetry.io/otel v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.4.1 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.4.1 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.4.1 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.4.1 go-module +go.opentelemetry.io/otel/internal/metric v0.27.0 go-module +go.opentelemetry.io/otel/metric v0.27.0 go-module +go.opentelemetry.io/otel/sdk v1.3.0 go-module +go.opentelemetry.io/otel/sdk v1.4.1 go-module +go.opentelemetry.io/otel/trace v1.13.0 go-module +go.opentelemetry.io/otel/trace v1.3.0 go-module +go.opentelemetry.io/proto/otlp v0.11.0 go-module +go.opentelemetry.io/proto/otlp v0.12.0 go-module +golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd go-module +golang.org/x/crypto v0.2.0 go-module +golang.org/x/mod v0.5.0 go-module +golang.org/x/net v0.0.0-20201224014010-6772e930b67b go-module +golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module +golang.org/x/net v0.0.0-20220722155237-a158d28d115b go-module +golang.org/x/net v0.4.0 go-module +golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f go-module +golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783 go-module +golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module +golang.org/x/sync v0.1.0 go-module +golang.org/x/sys v0.0.0-20211116061358-0a5406a5449c go-module +golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module +golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f go-module +golang.org/x/sys v0.0.0-20220927170352-d9d178bc13c6 go-module +golang.org/x/sys v0.4.0 go-module +golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 go-module +golang.org/x/term v0.3.0 go-module +golang.org/x/text v0.3.7 go-module +golang.org/x/text v0.6.0 go-module +golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module +golang.org/x/time v0.1.0 go-module +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module +google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63 go-module +google.golang.org/genproto v0.0.0-20221024183307-1bc688fe9f3e go-module +google.golang.org/grpc v1.47.0 go-module +google.golang.org/grpc v1.50.1 go-module +google.golang.org/protobuf v1.27.1 go-module +google.golang.org/protobuf v1.28.0 go-module +google.golang.org/protobuf v1.28.1 go-module +gopkg.in/inf.v0 v0.9.1 go-module +gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module +gopkg.in/square/go-jose.v2 v2.5.1 go-module +gopkg.in/yaml.v2 v2.4.0 go-module +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b go-module +gopkg.in/yaml.v3 v3.0.1 go-module +gpg 2.2.27-3ubuntu2.1 deb +gpg-agent 2.2.27-3ubuntu2.1 deb +gpg-wks-client 2.2.27-3ubuntu2.1 deb +gpg-wks-server 2.2.27-3ubuntu2.1 deb +gpgconf 2.2.27-3ubuntu2.1 deb +gpgsm 2.2.27-3ubuntu2.1 deb +gpgv 2.2.27-3ubuntu2.1 deb +graceful-fs 4.2.10 npm +grep 3.7-1build1 deb +gzip 1.10-4ubuntu4.1 deb +has 1.0.3 npm +has-flag 4.0.0 npm +has-symbols 1.0.3 npm +has-unicode 2.0.1 npm +hosted-git-info 5.2.1 npm +hostname 3.23ubuntu2 deb +http-cache-semantics 4.1.0 npm +http-errors 2.0.0 npm +http-proxy-agent 5.0.0 npm +https-proxy-agent 5.0.1 npm +humanize-ms 1.2.1 npm +iconv-lite 0.4.24 npm +iconv-lite 0.6.3 npm +ieee754 1.2.1 npm +ignore-walk 5.0.1 npm +imurmurhash 0.1.4 npm +indent-string 4.0.0 npm +infer-owner 1.0.4 npm +inflight 1.0.6 npm +inherits 2.0.4 npm +ini 3.0.1 npm +init-package-json 3.0.2 npm +init-system-helpers 1.62 deb +ip 2.0.0 npm +ip-regex 4.3.0 npm +ipaddr.js 1.9.1 npm +iptables 1.8.7-1ubuntu5 deb +is-cidr 4.0.2 npm +is-core-module 2.10.0 npm +is-fullwidth-code-point 3.0.0 npm +is-lambda 1.0.1 npm +isexe 2.0.0 npm +jq 1.6-2.1ubuntu3 deb +js-yaml 4.1.0 npm +json-parse-even-better-errors 2.3.1 npm +json-stringify-nice 1.1.4 npm +jsonparse 1.3.1 npm +just-diff 5.1.1 npm +just-diff-apply 5.4.1 npm +k8s.io/api v0.22.4 go-module +k8s.io/api v0.22.5 go-module +k8s.io/apimachinery v0.22.4 go-module +k8s.io/apimachinery v0.22.5 go-module +k8s.io/apiserver v0.22.5 go-module +k8s.io/client-go v0.22.4 go-module +k8s.io/client-go v0.22.5 go-module +k8s.io/component-base v0.22.5 go-module +k8s.io/cri-api v0.25.0 go-module +k8s.io/klog/v2 v2.30.0 go-module +k8s.io/klog/v2 v2.60.1 go-module +k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b go-module +k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 go-module +kasm-wizard 0.0.1 npm +libacl1 2.3.1-1 deb +libapt-pkg6.0 2.4.8 deb +libassuan0 2.5.5-1build1 deb +libattr1 1:2.5.1-1build1 deb +libaudit-common 1:3.0.7-1build1 deb +libaudit1 1:3.0.7-1build1 deb +libblkid1 2.37.2-4ubuntu3 deb +libbrotli1 1.0.9-2build6 deb +libbsd0 0.11.5-1 deb +libbz2-1.0 1.0.8-5build1 deb +libc-bin 2.35-0ubuntu3.1 deb +libc6 2.35-0ubuntu3.1 deb +libcap-ng0 0.7.9-2.2build3 deb +libcap2 1:2.44-1build3 deb +libcom-err2 1.46.5-2ubuntu1.1 deb +libcrypt1 1:4.4.27-1 deb +libcurl4 7.81.0-1ubuntu1.8 deb +libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb +libdebconfclient0 0.261ubuntu1 deb +libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb +libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb +libdrm2 2.4.113-2~ubuntu0.22.04.1 deb +libedit2 3.1-20210910-1build1 deb +libexpat1 2.4.7-1ubuntu0.2 deb +libext2fs2 1.46.5-2ubuntu1.1 deb +libffi8 3.4.2-4 deb +libfuse3-3 3.10.5-1build1 deb +libgcc-s1 12.1.0-2ubuntu1~22.04 deb +libgcrypt20 1.9.4-3ubuntu3 deb +libgmp10 2:6.2.1+dfsg-3ubuntu1 deb +libgnutls30 3.7.3-4ubuntu1.1 deb +libgpg-error0 1.43-3 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.1 deb +libhogweed6 3.7.3-1build2 deb +libicu70 70.1-2 deb +libidn2-0 2.3.2-2build1 deb +libinih1 53-1ubuntu3 deb +libip4tc2 1.8.7-1ubuntu5 deb +libip6tc2 1.8.7-1ubuntu5 deb +libjq1 1.6-2.1ubuntu3 deb +libjson-c5 0.15-3~ubuntu1.22.04.1 deb +libk5crypto3 1.19.2-2ubuntu0.1 deb +libkeyutils1 1.6.1-2ubuntu3 deb +libkrb5-3 1.19.2-2ubuntu0.1 deb +libkrb5support0 1.19.2-2ubuntu0.1 deb +libksba8 1.6.0-2ubuntu0.2 deb +libldap-2.5-0 2.5.13+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.13+dfsg-0ubuntu0.22.04.1 deb +liblz4-1 1.9.3-2build2 deb +liblzma5 5.2.5-2ubuntu1 deb +liblzo2-2 2.10-2build3 deb +libmd0 1.0.4-1build1 deb +libmnl0 1.0.4-3build2 deb +libmount1 2.37.2-4ubuntu3 deb +libmpdec3 2.5.1-2build2 deb +libncurses6 6.3-2 deb +libncursesw6 6.3-2 deb +libnetfilter-conntrack3 1.0.9-1 deb +libnettle8 3.7.3-1build2 deb +libnfnetlink0 1.0.1-3build3 deb +libnftnl11 1.2.1-1build1 deb +libnghttp2-14 1.43.0-1build3 deb +libnpmaccess 6.0.4 npm +libnpmdiff 4.0.5 npm +libnpmexec 4.0.14 npm +libnpmfund 3.0.5 npm +libnpmhook 8.0.4 npm +libnpmorg 4.0.4 npm +libnpmpack 4.1.3 npm +libnpmpublish 6.0.5 npm +libnpmsearch 5.0.4 npm +libnpmteam 4.0.4 npm +libnpmversion 3.0.7 npm +libnpth0 1.6-3build2 deb +libnsl2 1.3.0-2build2 deb +libnvidia-container-tools 1.12.0-1 deb +libnvidia-container1 1.12.0-1 deb +libonig5 6.9.7.1-2build1 deb +libp11-kit0 0.24.0-6build1 deb +libpam-modules 1.4.0-11ubuntu2.3 deb +libpam-modules-bin 1.4.0-11ubuntu2.3 deb +libpam-runtime 1.4.0-11ubuntu2.3 deb +libpam0g 1.4.0-11ubuntu2.3 deb +libpcre2-8-0 10.39-3ubuntu0.1 deb +libpcre3 2:8.39-13ubuntu0.22.04.1 deb +libprocps8 2:3.3.17-6ubuntu2 deb +libpsl5 0.21.0-1.2build2 deb +libpython3-stdlib 3.10.6-1~22.04 deb +libpython3.10-minimal 3.10.6-1~22.04.2 deb +libpython3.10-stdlib 3.10.6-1~22.04.2 deb +libreadline8 8.1.2-1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb +libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb +libseccomp2 2.5.3-2ubuntu2 deb +libselinux1 3.3-1build2 deb +libsemanage-common 3.3-1build2 deb +libsemanage2 3.3-1build2 deb +libsepol2 3.3-1build1 deb +libsmartcols1 2.37.2-4ubuntu3 deb +libsqlite3-0 3.37.2-2ubuntu0.1 deb +libss2 1.46.5-2ubuntu1.1 deb +libssh-4 0.9.6-2build1 deb +libssl3 3.0.2-0ubuntu1.8 deb +libstdc++6 12.1.0-2ubuntu1~22.04 deb +libsystemd0 249.11-0ubuntu3.6 deb +libtasn1-6 4.18.0-4build1 deb +libtinfo6 6.3-2 deb +libtirpc-common 1.3.2-2ubuntu0.1 deb +libtirpc3 1.3.2-2ubuntu0.1 deb +libudev1 249.11-0ubuntu3.6 deb +libunistring2 1.0-1 deb +libuuid1 2.37.2-4ubuntu3 deb +libxtables12 1.8.7-1ubuntu5 deb +libxxhash0 0.8.1-1 deb +libzstd1 1.4.8+dfsg-3build1 deb +locales 2.35-0ubuntu3.1 deb +lodash 4.17.21 npm +login 1:4.8.1-2ubuntu2.1 deb +logsave 1.46.5-2ubuntu1.1 deb +lru-cache 6.0.0 npm +lru-cache 7.13.2 npm +lsb-base 11.1.0ubuntu4 deb +lsb-release 11.1.0ubuntu4 deb +make-fetch-happen 10.2.1 npm +mawk 1.3.4.20200120-3 deb +media-typer 0.3.0 npm +media-types 7.0.0 deb +merge-descriptors 1.0.1 npm +methods 1.1.2 npm +mime 1.6.0 npm +mime-db 1.52.0 npm +mime-types 2.1.35 npm +minimatch 3.1.2 npm +minimatch 5.1.0 npm +minipass 3.3.4 npm +minipass-collect 1.0.2 npm +minipass-fetch 2.1.1 npm +minipass-flush 1.0.5 npm +minipass-json-stream 1.0.1 npm +minipass-pipeline 1.2.4 npm +minipass-sized 1.0.3 npm +minizlib 2.1.2 npm +mkdirp 1.0.4 npm +mkdirp-classic 0.5.3 npm +mkdirp-infer-owner 2.0.0 npm +mount 2.37.2-4ubuntu3 deb +ms 2.0.0 npm +ms 2.1.2 npm +ms 2.1.3 npm +mute-stream 0.0.8 npm +nan 2.17.0 npm +ncurses-base 6.3-2 deb +ncurses-bin 6.3-2 deb +negotiator 0.6.3 npm +netbase 6.3 deb +netcat 1.218-4ubuntu1 deb +netcat-openbsd 1.218-4ubuntu1 deb +node 16.19.1 binary +node-gyp 9.1.0 npm +node-pty 0.10.1 npm +nodejs 16.19.1-deb-1nodesource1 deb +nopt 5.0.0 npm +nopt 6.0.0 npm +normalize-package-data 4.0.1 npm +npm 8.19.3 npm +npm-audit-report 3.0.0 npm +npm-bundled 1.1.2 npm +npm-bundled 2.0.1 npm +npm-init 0.0.0 npm +npm-install-checks 5.0.0 npm +npm-normalize-package-bin 1.0.1 npm +npm-normalize-package-bin 2.0.0 npm +npm-package-arg 9.1.0 npm +npm-packlist 5.1.3 npm +npm-pick-manifest 7.0.2 npm +npm-profile 6.2.1 npm +npm-registry-fetch 13.3.1 npm +npm-user-validate 1.0.1 npm +npmlog 6.0.2 npm +nvidia-container-toolkit 1.12.0-1 deb +nvidia-container-toolkit-base 1.12.0-1 deb +nvidia-docker2 2.12.0-1 deb +object-assign 4.1.1 npm +object-inspect 1.12.3 npm +on-finished 2.4.1 npm +once 1.4.0 npm +opener 1.5.2 npm +openssl 3.0.2-0ubuntu1.8 deb +p-map 4.0.0 npm +pacote 13.6.2 npm +parse-conflict-json 2.0.2 npm +parseurl 1.3.3 npm +passwd 1:4.8.1-2ubuntu2.1 deb +path-is-absolute 1.0.1 npm +path-to-regexp 0.1.7 npm +perl-base 5.34.0-3ubuntu1.1 deb +pigz 2.6-1 deb +pinentry-curses 1.1.1-1build2 deb +postcss-selector-parser 6.0.10 npm +proc-log 2.0.1 npm +procps 2:3.3.17-6ubuntu2 deb +promise-all-reject-late 1.0.1 npm +promise-call-limit 1.0.1 npm +promise-inflight 1.0.1 npm +promise-retry 2.0.1 npm +promzard 0.3.0 npm +proxy-addr 2.0.7 npm +publicsuffix 20211207.1025-1 deb +pump 3.0.0 npm +python 3.10.6 binary +python3 3.10.6-1~22.04 deb +python3-minimal 3.10.6-1~22.04 deb +python3.10 3.10.6-1~22.04.2 deb +python3.10-minimal 3.10.6-1~22.04.2 deb +qrcode-terminal 0.12.0 npm +qs 6.11.0 npm +range-parser 1.2.1 npm +raw-body 2.5.1 npm +read 1.0.7 npm +read-cmd-shim 3.0.0 npm +read-package-json 5.0.2 npm +read-package-json-fast 2.0.3 npm +readable-stream 3.6.0 npm +readable-stream 3.6.1 npm +readdir-scoped-modules 1.1.0 npm +readline-common 8.1.2-1 deb +retry 0.12.0 npm +rimraf 3.0.2 npm +safe-buffer 5.2.1 npm +safer-buffer 2.1.2 npm +sed 4.8-1ubuntu2 deb +semver 7.3.7 npm +send 0.18.0 npm +sensible-utils 0.0.17 deb +serve-static 1.15.0 npm +set-blocking 2.0.0 npm +setprototypeof 1.2.0 npm +side-channel 1.0.4 npm +signal-exit 3.0.7 npm +sigs.k8s.io/structured-merge-diff/v4 v4.1.2 go-module +sigs.k8s.io/structured-merge-diff/v4 v4.2.1 go-module +sigs.k8s.io/yaml v1.2.0 go-module +sigs.k8s.io/yaml v1.3.0 go-module +smart-buffer 4.2.0 npm +socket.io 4.6.1 npm +socket.io-adapter 2.5.2 npm +socket.io-parser 4.2.2 npm +socks 2.7.0 npm +socks-proxy-agent 7.0.0 npm +spdx-correct 3.1.1 npm +spdx-exceptions 2.3.0 npm +spdx-expression-parse 3.0.1 npm +spdx-license-ids 3.0.11 npm +split-ca 1.0.1 npm +ssh2 1.11.0 npm +ssri 9.0.1 npm +statuses 2.0.1 npm +string-width 4.2.3 npm +string_decoder 1.3.0 npm +strip-ansi 6.0.1 npm +sudo 1.9.9-1ubuntu2.2 deb +supports-color 7.2.0 npm +systeminformation 5.17.12 npm +sysvinit-utils 3.01-1ubuntu1 deb +tar 1.34+dfsg-1build3 deb +tar 6.1.11 npm +tar-fs 2.0.1 npm +tar-stream 2.2.0 npm +text-table 0.2.0 npm +tiny-relative-date 1.3.0 npm +toidentifier 1.0.1 npm +treeverse 2.0.0 npm +tweetnacl 0.14.5 npm +type-is 1.6.18 npm +tzdata 2022g-0ubuntu0.22.04.1 deb +ubuntu-keyring 2021.03.26 deb +uidmap 1:4.8.1-2ubuntu2.1 deb +unique-filename 2.0.1 npm +unique-slug 3.0.0 npm +unpipe 1.0.0 npm +usrmerge 25ubuntu2 deb +util-deprecate 1.0.2 npm +util-linux 2.37.2-4ubuntu3 deb +utils-merge 1.0.1 npm +validate-npm-package-license 3.0.4 npm +validate-npm-package-name 4.0.0 npm +vary 1.1.2 npm +walk-up-path 1.0.0 npm +wcwidth 1.0.1 npm +which 2.0.2 npm +wide-align 1.1.5 npm +wrappy 1.0.2 npm +write-file-atomic 4.0.2 npm +ws 8.11.0 npm +xfsprogs 5.13.0-1ubuntu2 deb +yallist 4.0.0 npm +zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From 3b769215dbc0c2d271396f4a34ef2d7e57e46103 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 5 Mar 2023 13:02:48 +0100 Subject: [PATCH 071/337] Bot Updating Package Versions --- package_versions.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 0bd1c7a..dfab424 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 18.14.4 npm +@types/node 18.14.6 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -195,10 +195,13 @@ github.com/davecgh/go-spew v1 github.com/distribution/distribution/v3 v3.0.0-20221201083218-92d136e113cf go-module github.com/docker/buildx v0.10.2 go-module github.com/docker/cli v23.0.0+incompatible go-module +github.com/docker/cli/cmd/docker (devel) go-module github.com/docker/compose/v2 (devel) go-module github.com/docker/distribution v2.8.1+incompatible go-module github.com/docker/docker v23.0.0+incompatible go-module github.com/docker/docker-credential-helpers v0.7.0 go-module +github.com/docker/docker/cmd/docker-proxy (devel) go-module +github.com/docker/docker/cmd/dockerd (devel) go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module @@ -718,7 +721,7 @@ statuses 2. string-width 4.2.3 npm string_decoder 1.3.0 npm strip-ansi 6.0.1 npm -sudo 1.9.9-1ubuntu2.2 deb +sudo 1.9.9-1ubuntu2.3 deb supports-color 7.2.0 npm systeminformation 5.17.12 npm sysvinit-utils 3.01-1ubuntu1 deb From e2bd297a87e55237e422e70a362d50ab2a3493d0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 10 Mar 2023 09:35:08 +0100 Subject: [PATCH 072/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index dfab424..f0de57d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 18.14.6 npm +@types/node 18.15.0 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -489,7 +489,7 @@ libfuse3-3 3. libgcc-s1 12.1.0-2ubuntu1~22.04 deb libgcrypt20 1.9.4-3ubuntu3 deb libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.1 deb +libgnutls30 3.7.3-4ubuntu1.2 deb libgpg-error0 1.43-3 deb libgssapi-krb5-2 1.19.2-2ubuntu0.1 deb libhogweed6 3.7.3-1build2 deb @@ -725,7 +725,7 @@ sudo 1. supports-color 7.2.0 npm systeminformation 5.17.12 npm sysvinit-utils 3.01-1ubuntu1 deb -tar 1.34+dfsg-1build3 deb +tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm tar-fs 2.0.1 npm tar-stream 2.2.0 npm From a9947f55dacf4b8254e8444f7b09ddffe2177896 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 12 Mar 2023 13:02:29 +0100 Subject: [PATCH 073/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f0de57d..bbb2dc8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -684,7 +684,7 @@ read-cmd-shim 3. read-package-json 5.0.2 npm read-package-json-fast 2.0.3 npm readable-stream 3.6.0 npm -readable-stream 3.6.1 npm +readable-stream 3.6.2 npm readdir-scoped-modules 1.1.0 npm readline-common 8.1.2-1 deb retry 0.12.0 npm From 3384a04f774c30a3d1101e2a8740759cf7b22235 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 13 Mar 2023 12:21:39 -0500 Subject: [PATCH 074/337] Bot Updating Package Versions --- package_versions.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index bbb2dc8..e00ee63 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 18.15.0 npm +@types/node 18.15.1 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -111,8 +111,8 @@ distro-info-data 0. docker-ce 5:23.0.1-1~ubuntu.22.04~jammy deb docker-ce-cli 5:23.0.1-1~ubuntu.22.04~jammy deb docker-compose-plugin 2.16.0-1~ubuntu.22.04~jammy deb -docker-modem 3.0.6 npm -dockerode 3.3.4 npm +docker-modem 3.0.8 npm +dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.1 deb drm-info 2.2.0-2 deb e2fsprogs 1.46.5-2ubuntu1.1 deb @@ -534,8 +534,8 @@ libnpmteam 4. libnpmversion 3.0.7 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.12.0-1 deb -libnvidia-container1 1.12.0-1 deb +libnvidia-container-tools 1.12.1-1 deb +libnvidia-container1 1.12.1-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.3 deb @@ -640,8 +640,8 @@ npm-profile 6. npm-registry-fetch 13.3.1 npm npm-user-validate 1.0.1 npm npmlog 6.0.2 npm -nvidia-container-toolkit 1.12.0-1 deb -nvidia-container-toolkit-base 1.12.0-1 deb +nvidia-container-toolkit 1.12.1-1 deb +nvidia-container-toolkit-base 1.12.1-1 deb nvidia-docker2 2.12.0-1 deb object-assign 4.1.1 npm object-inspect 1.12.3 npm From 922316d5c44340431086a45ce1718de3097b8106 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 15 Mar 2023 00:21:32 -0500 Subject: [PATCH 075/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e00ee63..18a57c2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 18.15.1 npm +@types/node 18.15.3 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From b15bea0ad92d4fe214b850db92dad86c1a830aec Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 Mar 2023 17:19:49 -0500 Subject: [PATCH 076/337] Bot Updating Package Versions --- package_versions.txt | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 18a57c2..8e9aabf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 18.15.3 npm +@types/node 18.15.5 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -91,7 +91,7 @@ coreutils 8. cors 2.8.5 npm cpu-features 0.0.4 npm cssesc 3.0.0 npm -curl 7.81.0-1ubuntu1.8 deb +curl 7.81.0-1ubuntu1.10 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb debianutils 5.5-1ubuntu2 deb @@ -475,7 +475,7 @@ libcap-ng0 0. libcap2 1:2.44-1build3 deb libcom-err2 1.46.5-2ubuntu1.1 deb libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.8 deb +libcurl4 7.81.0-1ubuntu1.10 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb @@ -505,8 +505,8 @@ libkeyutils1 1. libkrb5-3 1.19.2-2ubuntu0.1 deb libkrb5support0 1.19.2-2ubuntu0.1 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.13+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.13+dfsg-0ubuntu0.22.04.1 deb +libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.14+dfsg-0ubuntu0.22.04.1 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb liblzo2-2 2.10-2build3 deb @@ -547,8 +547,8 @@ libpcre3 2: libprocps8 2:3.3.17-6ubuntu2 deb libpsl5 0.21.0-1.2build2 deb libpython3-stdlib 3.10.6-1~22.04 deb -libpython3.10-minimal 3.10.6-1~22.04.2 deb -libpython3.10-stdlib 3.10.6-1~22.04.2 deb +libpython3.10-minimal 3.10.6-1~22.04.2ubuntu1 deb +libpython3.10-stdlib 3.10.6-1~22.04.2ubuntu1 deb libreadline8 8.1.2-1 deb librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb @@ -565,12 +565,12 @@ libss2 1. libssh-4 0.9.6-2build1 deb libssl3 3.0.2-0ubuntu1.8 deb libstdc++6 12.1.0-2ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.6 deb +libsystemd0 249.11-0ubuntu3.7 deb libtasn1-6 4.18.0-4build1 deb libtinfo6 6.3-2 deb libtirpc-common 1.3.2-2ubuntu0.1 deb libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.6 deb +libudev1 249.11-0ubuntu3.7 deb libunistring2 1.0-1 deb libuuid1 2.37.2-4ubuntu3 deb libxtables12 1.8.7-1ubuntu5 deb @@ -673,8 +673,8 @@ pump 3. python 3.10.6 binary python3 3.10.6-1~22.04 deb python3-minimal 3.10.6-1~22.04 deb -python3.10 3.10.6-1~22.04.2 deb -python3.10-minimal 3.10.6-1~22.04.2 deb +python3.10 3.10.6-1~22.04.2ubuntu1 deb +python3.10-minimal 3.10.6-1~22.04.2ubuntu1 deb qrcode-terminal 0.12.0 npm qs 6.11.0 npm range-parser 1.2.1 npm From 4d5f4ae49857ee56260a3eb44ab2453a42a66531 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 23 Mar 2023 21:39:55 -0500 Subject: [PATCH 077/337] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8e9aabf..b841957 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 18.15.5 npm +@types/node 18.15.6 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -80,7 +80,7 @@ columnify 1. common-ancestor-path 1.0.1 npm concat-map 0.0.1 npm console-control-strings 1.1.0 npm -containerd.io 1.6.18-1 deb +containerd.io 1.6.19-1 deb content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.4.2 npm @@ -144,7 +144,7 @@ gcc-12-base 12 get-intrinsic 1.2.0 npm github.com/AlecAivazis/survey/v2 v2.3.6 go-module github.com/BurntSushi/toml v1.0.0 go-module -github.com/Microsoft/hcsshim v0.9.6 go-module +github.com/Microsoft/hcsshim v0.9.7 go-module github.com/NVIDIA/go-nvml v0.11.6-0.0.20220823120812-7e2082095e82 go-module github.com/NVIDIA/nvidia-container-toolkit (devel) go-module github.com/a8m/envsubst v1.3.0 go-module @@ -172,7 +172,7 @@ github.com/containerd/aufs v1 github.com/containerd/btrfs v1.0.0 go-module github.com/containerd/cgroups v1.0.4 go-module github.com/containerd/console v1.0.3 go-module -github.com/containerd/containerd v0.0.0-20230215225028-2456e983eb9e go-module +github.com/containerd/containerd v0.0.0-20230227231155-1e1ea6e986c6 go-module github.com/containerd/containerd v1.6.16 go-module github.com/containerd/continuity v0.3.0 go-module github.com/containerd/fifo v1.0.0 go-module From 05c031dd17590ea19e48644d7a4c7dfb9bc6ccf6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 24 Mar 2023 19:27:27 +0100 Subject: [PATCH 078/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b841957..d8a4004 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 18.15.6 npm +@types/node 18.15.7 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 1589c35808f794461e7d23b46f590faaba6c30f7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 26 Mar 2023 07:01:52 -0500 Subject: [PATCH 079/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d8a4004..2f6dc2f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 18.15.7 npm +@types/node 18.15.10 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From b8200da76dc20e4b165322ff5a3deebb5f99de5d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 28 Mar 2023 08:31:40 -0500 Subject: [PATCH 080/337] Bot Updating Package Versions --- package_versions.txt | 41 +++++++++++++++++++++-------------------- 1 file changed, 21 insertions(+), 20 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2f6dc2f..38ef240 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -108,9 +108,9 @@ diff 5. diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb distro-info-data 0.52ubuntu0.2 deb -docker-ce 5:23.0.1-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:23.0.1-1~ubuntu.22.04~jammy deb -docker-compose-plugin 2.16.0-1~ubuntu.22.04~jammy deb +docker-ce 5:23.0.2-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:23.0.2-1~ubuntu.22.04~jammy deb +docker-compose-plugin 2.17.2-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.1 deb @@ -166,14 +166,14 @@ github.com/cenkalti/backoff/v4 v4 github.com/cespare/xxhash/v2 v2.1.2 go-module github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module github.com/cilium/ebpf v0.7.0 go-module -github.com/compose-spec/compose-go v1.9.0 go-module +github.com/compose-spec/compose-go v1.13.2 go-module github.com/container-orchestrated-devices/container-device-interface v0.5.4-0.20230111111500-5b3b5d81179a go-module github.com/containerd/aufs v1.0.0 go-module github.com/containerd/btrfs v1.0.0 go-module github.com/containerd/cgroups v1.0.4 go-module github.com/containerd/console v1.0.3 go-module github.com/containerd/containerd v0.0.0-20230227231155-1e1ea6e986c6 go-module -github.com/containerd/containerd v1.6.16 go-module +github.com/containerd/containerd v1.6.19 go-module github.com/containerd/continuity v0.3.0 go-module github.com/containerd/fifo v1.0.0 go-module github.com/containerd/go-cni v1.1.6 go-module @@ -192,13 +192,13 @@ github.com/cpuguy83/go-md2man/v2 v2 github.com/cpuguy83/go-md2man/v2 v2.0.1 go-module github.com/cyphar/filepath-securejoin v0.2.3 go-module github.com/davecgh/go-spew v1.1.1 go-module -github.com/distribution/distribution/v3 v3.0.0-20221201083218-92d136e113cf go-module -github.com/docker/buildx v0.10.2 go-module -github.com/docker/cli v23.0.0+incompatible go-module +github.com/distribution/distribution/v3 v3.0.0-20230223072852-e5d5810851d1 go-module +github.com/docker/buildx v0.10.4 go-module +github.com/docker/cli v23.0.1+incompatible go-module github.com/docker/cli/cmd/docker (devel) go-module github.com/docker/compose/v2 (devel) go-module github.com/docker/distribution v2.8.1+incompatible go-module -github.com/docker/docker v23.0.0+incompatible go-module +github.com/docker/docker v23.0.1+incompatible go-module github.com/docker/docker-credential-helpers v0.7.0 go-module github.com/docker/docker/cmd/docker-proxy (devel) go-module github.com/docker/docker/cmd/dockerd (devel) go-module @@ -240,7 +240,7 @@ github.com/hashicorp/errwrap v1 github.com/hashicorp/go-multierror v1.1.1 go-module github.com/hashicorp/go-version v1.6.0 go-module github.com/imdario/mergo v0.3.12 go-module -github.com/imdario/mergo v0.3.13 go-module +github.com/imdario/mergo v0.3.14 go-module github.com/intel/goresctrl v0.2.0 go-module github.com/jinzhu/copier v0.3.5 go-module github.com/jonboulle/clockwork v0.3.1-0.20230117163003-a89700cec744 go-module @@ -250,8 +250,9 @@ github.com/klauspost/compress v1 github.com/klauspost/compress v1.15.12 go-module github.com/magiconair/properties v1.8.6 go-module github.com/mattn/go-colorable v0.1.12 go-module +github.com/mattn/go-colorable v0.1.13 go-module github.com/mattn/go-isatty v0.0.14 go-module -github.com/mattn/go-isatty v0.0.16 go-module +github.com/mattn/go-isatty v0.0.17 go-module github.com/mattn/go-runewidth v0.0.14 go-module github.com/mattn/go-shellwords v1.0.12 go-module github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module @@ -260,7 +261,7 @@ github.com/miekg/pkcs11 v1 github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible go-module github.com/mitchellh/mapstructure v1.5.0 go-module -github.com/moby/buildkit v0.11.2 go-module +github.com/moby/buildkit v0.11.5 go-module github.com/moby/locker v1.0.1 go-module github.com/moby/patternmatcher v0.5.0 go-module github.com/moby/spdystream v0.2.0 go-module @@ -270,7 +271,7 @@ github.com/moby/sys/sequential v0 github.com/moby/sys/signal v0.6.0 go-module github.com/moby/sys/signal v0.7.0 go-module github.com/moby/sys/symlink v0.2.0 go-module -github.com/moby/term v0.0.0-20221128092401-c43b287e0e0f go-module +github.com/moby/term v0.0.0-20221205130635-1aeaba878587 go-module github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module github.com/modern-go/reflect2 v1.0.2 go-module github.com/morikuni/aec v1.0.0 go-module @@ -311,7 +312,7 @@ github.com/spf13/cobra v1 github.com/spf13/cobra v1.6.1 go-module github.com/spf13/pflag v1.0.5 go-module github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 go-module -github.com/stretchr/testify v1.8.1 go-module +github.com/stretchr/testify v1.8.2 go-module github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module github.com/tchap/go-patricia v2.2.6+incompatible go-module github.com/theupdateframework/notary v0.7.0 go-module @@ -342,7 +343,7 @@ go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0 go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.29.0 go-module go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.29.0 go-module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.29.0 go-module -go.opentelemetry.io/otel v1.13.0 go-module +go.opentelemetry.io/otel v1.14.0 go-module go.opentelemetry.io/otel v1.3.0 go-module go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0 go-module go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.4.1 go-module @@ -356,7 +357,7 @@ go.opentelemetry.io/otel/internal/metric v0 go.opentelemetry.io/otel/metric v0.27.0 go-module go.opentelemetry.io/otel/sdk v1.3.0 go-module go.opentelemetry.io/otel/sdk v1.4.1 go-module -go.opentelemetry.io/otel/trace v1.13.0 go-module +go.opentelemetry.io/otel/trace v1.14.0 go-module go.opentelemetry.io/otel/trace v1.3.0 go-module go.opentelemetry.io/proto/otlp v0.11.0 go-module go.opentelemetry.io/proto/otlp v0.12.0 go-module @@ -366,7 +367,7 @@ golang.org/x/mod v0 golang.org/x/net v0.0.0-20201224014010-6772e930b67b go-module golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module golang.org/x/net v0.0.0-20220722155237-a158d28d115b go-module -golang.org/x/net v0.4.0 go-module +golang.org/x/net v0.7.0 go-module golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f go-module golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783 go-module golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module @@ -375,11 +376,11 @@ golang.org/x/sys v0 golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f go-module golang.org/x/sys v0.0.0-20220927170352-d9d178bc13c6 go-module -golang.org/x/sys v0.4.0 go-module +golang.org/x/sys v0.5.0 go-module golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 go-module -golang.org/x/term v0.3.0 go-module +golang.org/x/term v0.5.0 go-module golang.org/x/text v0.3.7 go-module -golang.org/x/text v0.6.0 go-module +golang.org/x/text v0.7.0 go-module golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module golang.org/x/time v0.1.0 go-module golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module From 72bcbd06f1b746c75ecc5956831069413ff8aa87 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 29 Mar 2023 12:24:34 +0200 Subject: [PATCH 081/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 38ef240..6780c45 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 18.15.10 npm +@types/node 18.15.11 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 4680f126e79b6c810f0996218d320f2e83740ee4 Mon Sep 17 00:00:00 2001 From: thelamer <ryankuba@gmail.com> Date: Wed, 29 Mar 2023 07:17:45 -0700 Subject: [PATCH 082/337] add lsof to dev image --- Dockerfile | 1 + Dockerfile.aarch64 | 1 + 2 files changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index b7f0b45..dda7745 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,6 +42,7 @@ RUN \ gcc \ iptables \ jq \ + lsof \ make \ nodejs \ nvidia-docker2 \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 5ef1b6e..1de8eed 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -42,6 +42,7 @@ RUN \ gcc \ iptables \ jq \ + lsof \ make \ nodejs \ nvidia-docker2 \ From 28588a7e2570db04fe9d8c78c326a3aefdeb32fa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 29 Mar 2023 16:24:11 +0200 Subject: [PATCH 083/337] Bot Updating Package Versions --- package_versions.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/package_versions.txt b/package_versions.txt index 6780c45..9b243f0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -585,6 +585,7 @@ lru-cache 6. lru-cache 7.13.2 npm lsb-base 11.1.0ubuntu4 deb lsb-release 11.1.0ubuntu4 deb +lsof 4.93.2+dfsg-1.1build2 deb make-fetch-happen 10.2.1 npm mawk 1.3.4.20200120-3 deb media-typer 0.3.0 npm From 6a14e66d0d7e78b6de80980462a4674af0e85e81 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 31 Mar 2023 11:23:26 -0500 Subject: [PATCH 084/337] Bot Updating Templated Files --- Jenkinsfile | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9e459eb..a7adb04 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -56,7 +56,7 @@ pipeline { env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.PULL_REQUEST = env.CHANGE_ID - env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/call_invalid_helper.yml ./.github/workflows/permissions.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml' + env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/call_issue_pr_tracker.yml ./.github/workflows/call_issues_cron.yml ./.github/workflows/permissions.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml' } script{ env.LS_RELEASE_NUMBER = sh( @@ -230,17 +230,14 @@ pipeline { } sh '''curl -sL https://raw.githubusercontent.com/linuxserver/docker-shellcheck/master/checkrun.sh | /bin/bash''' sh '''#! /bin/bash - set -e - docker pull ghcr.io/linuxserver/lsiodev-spaces-file-upload:latest docker run --rm \ - -e DESTINATION=\"${IMAGE}/${META_TAG}/shellcheck-result.xml\" \ - -e FILE_NAME="shellcheck-result.xml" \ - -e MIMETYPE="text/xml" \ - -v ${WORKSPACE}:/mnt \ - -e SECRET_KEY=\"${S3_SECRET}\" \ - -e ACCESS_KEY=\"${S3_KEY}\" \ - -t ghcr.io/linuxserver/lsiodev-spaces-file-upload:latest \ - python /upload.py''' + -v ${WORKSPACE}:/mnt \ + -e AWS_ACCESS_KEY_ID=\"${S3_KEY}\" \ + -e AWS_SECRET_ACCESS_KEY=\"${S3_SECRET}\" \ + ghcr.io/linuxserver/baseimage-alpine:3.17 bash -c "\ + apk add --no-cache py3-pip && \ + pip install s3cmd && \ + s3cmd put --no-preserve --acl-public -m text/xml /mnt/shellcheck-result.xml s3://ci.linuxserver.io/${IMAGE}/${META_TAG}/shellcheck-result.xml" || :''' } } } @@ -277,7 +274,7 @@ pipeline { echo "Jenkinsfile is up to date." fi # Stage 2 - Delete old templates - OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md\n.github/ISSUE_TEMPLATE/issue.bug.md\n.github/ISSUE_TEMPLATE/issue.feature.md" + OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md .github/ISSUE_TEMPLATE/issue.bug.md .github/ISSUE_TEMPLATE/issue.feature.md .github/workflows/call_invalid_helper.yml .github/workflows/stale.yml" for i in ${OLD_TEMPLATES}; do if [[ -f "${i}" ]]; then TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}" @@ -294,7 +291,7 @@ pipeline { git commit -m 'Bot Updating Templated Files' git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} - echo "Deleting old templates" + echo "Deleting old and deprecated templates" rm -Rf ${TEMPDIR} exit 0 else From 3c4932fb3abd9de3532c618a02dfe1edd4cfda31 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 31 Mar 2023 11:25:09 -0500 Subject: [PATCH 085/337] Bot Updating Templated Files --- .github/workflows/call_invalid_helper.yml | 12 ------------ .github/workflows/stale.yml | 23 ----------------------- 2 files changed, 35 deletions(-) delete mode 100755 .github/workflows/call_invalid_helper.yml delete mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/call_invalid_helper.yml b/.github/workflows/call_invalid_helper.yml deleted file mode 100755 index 773767c..0000000 --- a/.github/workflows/call_invalid_helper.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: Comment on invalid interaction -on: - issues: - types: - - labeled -jobs: - add-comment-on-invalid: - if: github.event.label.name == 'invalid' - permissions: - issues: write - uses: linuxserver/github-workflows/.github/workflows/invalid-interaction-helper.yml@v1 - secrets: inherit diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml deleted file mode 100644 index 73dfe45..0000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Mark stale issues and pull requests - -on: - schedule: - - cron: "30 1 * * *" - -jobs: - stale: - - runs-on: ubuntu-latest - - steps: - - uses: actions/stale@v6.0.1 - with: - stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions." - stale-pr-message: "This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions." - stale-issue-label: 'no-issue-activity' - stale-pr-label: 'no-pr-activity' - days-before-stale: 30 - days-before-close: 365 - exempt-issue-labels: 'awaiting-approval,work-in-progress' - exempt-pr-labels: 'awaiting-approval,work-in-progress' - repo-token: ${{ secrets.GITHUB_TOKEN }} From 8cee0bc20e75b2c8336bc550efe87e6d0eb0ce86 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 31 Mar 2023 11:26:55 -0500 Subject: [PATCH 086/337] Bot Updating Templated Files --- .github/workflows/call_issue_pr_tracker.yml | 14 ++++++++++++++ .github/workflows/call_issues_cron.yml | 13 +++++++++++++ .github/workflows/package_trigger_scheduler.yml | 2 +- .github/workflows/permissions.yml | 3 ++- 4 files changed, 30 insertions(+), 2 deletions(-) create mode 100755 .github/workflows/call_issue_pr_tracker.yml create mode 100755 .github/workflows/call_issues_cron.yml diff --git a/.github/workflows/call_issue_pr_tracker.yml b/.github/workflows/call_issue_pr_tracker.yml new file mode 100755 index 0000000..87243e2 --- /dev/null +++ b/.github/workflows/call_issue_pr_tracker.yml @@ -0,0 +1,14 @@ +name: Issue & PR Tracker + +on: + issues: + types: [opened,reopened,labeled,unlabeled] + pull_request_target: + types: [opened,reopened,review_requested,review_request_removed,labeled,unlabeled] + +jobs: + manage-project: + permissions: + issues: write + uses: linuxserver/github-workflows/.github/workflows/issue-pr-tracker.yml@v1 + secrets: inherit diff --git a/.github/workflows/call_issues_cron.yml b/.github/workflows/call_issues_cron.yml new file mode 100755 index 0000000..cddb87b --- /dev/null +++ b/.github/workflows/call_issues_cron.yml @@ -0,0 +1,13 @@ +name: Mark stale issues and pull requests +on: + schedule: + - cron: '16 9 * * *' + workflow_dispatch: + +jobs: + stale: + permissions: + issues: write + pull-requests: write + uses: linuxserver/github-workflows/.github/workflows/issues-cron.yml@v1 + secrets: inherit diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index 5fe5aac..87cd1d0 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -2,7 +2,7 @@ name: Package Trigger Scheduler on: schedule: - - cron: '54 11 * * 0' + - cron: '31 21 * * 2' workflow_dispatch: jobs: diff --git a/.github/workflows/permissions.yml b/.github/workflows/permissions.yml index 2df6b61..1447bc5 100755 --- a/.github/workflows/permissions.yml +++ b/.github/workflows/permissions.yml @@ -1,9 +1,10 @@ name: Permission check on: - pull_request: + pull_request_target: paths: - '**/run' - '**/finish' + - '**/check' jobs: permission_check: uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1 From b7d0d13e5b82acafab0ec1d0ca8da5cbd4276796 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 31 Mar 2023 11:31:00 -0500 Subject: [PATCH 087/337] Bot Updating Package Versions --- package_versions.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9b243f0..f5001e6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -145,7 +145,7 @@ get-intrinsic 1. github.com/AlecAivazis/survey/v2 v2.3.6 go-module github.com/BurntSushi/toml v1.0.0 go-module github.com/Microsoft/hcsshim v0.9.7 go-module -github.com/NVIDIA/go-nvml v0.11.6-0.0.20220823120812-7e2082095e82 go-module +github.com/NVIDIA/go-nvml v0.12.0-0 go-module github.com/NVIDIA/nvidia-container-toolkit (devel) go-module github.com/a8m/envsubst v1.3.0 go-module github.com/aws/aws-sdk-go-v2 v1.16.3 go-module @@ -331,7 +331,7 @@ github.com/vishvananda/netns v0 github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb go-module github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module github.com/xeipuuv/gojsonschema v1.2.0 go-module -gitlab.com/nvidia/cloud-native/go-nvlib v0.0.0-20230119114711-6fe07bb33342 go-module +gitlab.com/nvidia/cloud-native/go-nvlib v0.0.0-20230209143738-95328d8c4438 go-module glob 7.2.3 npm glob 8.0.3 npm gnupg 2.2.27-3ubuntu2.1 deb @@ -535,8 +535,8 @@ libnpmteam 4. libnpmversion 3.0.7 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.12.1-1 deb -libnvidia-container1 1.12.1-1 deb +libnvidia-container-tools 1.13.0-1 deb +libnvidia-container1 1.13.0-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.3 deb @@ -642,9 +642,9 @@ npm-profile 6. npm-registry-fetch 13.3.1 npm npm-user-validate 1.0.1 npm npmlog 6.0.2 npm -nvidia-container-toolkit 1.12.1-1 deb -nvidia-container-toolkit-base 1.12.1-1 deb -nvidia-docker2 2.12.0-1 deb +nvidia-container-toolkit 1.13.0-1 deb +nvidia-container-toolkit-base 1.13.0-1 deb +nvidia-docker2 2.13.0-1 deb object-assign 4.1.1 npm object-inspect 1.12.3 npm on-finished 2.4.1 npm From 86f38a38292997901718a3ccfec8a0a6429ff622 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 2 Apr 2023 14:00:21 +0200 Subject: [PATCH 088/337] Bot Updating Templated Files --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a7adb04..a6e846a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -234,10 +234,10 @@ pipeline { -v ${WORKSPACE}:/mnt \ -e AWS_ACCESS_KEY_ID=\"${S3_KEY}\" \ -e AWS_SECRET_ACCESS_KEY=\"${S3_SECRET}\" \ - ghcr.io/linuxserver/baseimage-alpine:3.17 bash -c "\ + ghcr.io/linuxserver/baseimage-alpine:3.17 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\ apk add --no-cache py3-pip && \ pip install s3cmd && \ - s3cmd put --no-preserve --acl-public -m text/xml /mnt/shellcheck-result.xml s3://ci.linuxserver.io/${IMAGE}/${META_TAG}/shellcheck-result.xml" || :''' + s3cmd put --no-preserve --acl-public -m text/xml /mnt/shellcheck-result.xml s3://ci-tests.linuxserver.io/${IMAGE}/${META_TAG}/shellcheck-result.xml" || :''' } } } From 151a8cb05a46511609328b07eabfe49f136b38d5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 2 Apr 2023 07:04:30 -0500 Subject: [PATCH 089/337] Bot Updating Package Versions --- package_versions.txt | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index f5001e6..61cf972 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -80,7 +80,7 @@ columnify 1. common-ancestor-path 1.0.1 npm concat-map 0.0.1 npm console-control-strings 1.1.0 npm -containerd.io 1.6.19-1 deb +containerd.io 1.6.20-1 deb content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.4.2 npm @@ -144,7 +144,7 @@ gcc-12-base 12 get-intrinsic 1.2.0 npm github.com/AlecAivazis/survey/v2 v2.3.6 go-module github.com/BurntSushi/toml v1.0.0 go-module -github.com/Microsoft/hcsshim v0.9.7 go-module +github.com/Microsoft/hcsshim v0.9.8 go-module github.com/NVIDIA/go-nvml v0.12.0-0 go-module github.com/NVIDIA/nvidia-container-toolkit (devel) go-module github.com/a8m/envsubst v1.3.0 go-module @@ -172,7 +172,7 @@ github.com/containerd/aufs v1 github.com/containerd/btrfs v1.0.0 go-module github.com/containerd/cgroups v1.0.4 go-module github.com/containerd/console v1.0.3 go-module -github.com/containerd/containerd v0.0.0-20230227231155-1e1ea6e986c6 go-module +github.com/containerd/containerd v0.0.0-20230330203013-2806fc105739 go-module github.com/containerd/containerd v1.6.19 go-module github.com/containerd/continuity v0.3.0 go-module github.com/containerd/fifo v1.0.0 go-module @@ -181,6 +181,7 @@ github.com/containerd/go-runc v1 github.com/containerd/imgcrypt v1.1.4 go-module github.com/containerd/nri v0.1.0 go-module github.com/containerd/ttrpc v1.1.0 go-module +github.com/containerd/ttrpc v1.1.1 go-module github.com/containerd/typeurl v1.0.2 go-module github.com/containerd/zfs v1.0.0 go-module github.com/containernetworking/cni v1.1.1 go-module @@ -210,6 +211,7 @@ github.com/docker/go-units v0 github.com/docker/go-units v0.5.0 go-module github.com/elliotchance/orderedmap v1.4.0 go-module github.com/emicklei/go-restful v2.9.5+incompatible go-module +github.com/emicklei/go-restful/v3 v3.7.3 go-module github.com/fatih/color v1.13.0 go-module github.com/felixge/httpsnoop v1.0.2 go-module github.com/fsnotify/fsnotify v1.4.9 go-module @@ -277,12 +279,12 @@ github.com/modern-go/reflect2 v1 github.com/morikuni/aec v1.0.0 go-module github.com/mrunalp/fileutils v0.5.0 go-module github.com/opencontainers/go-digest v1.0.0 go-module -github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799 go-module github.com/opencontainers/image-spec v1.1.0-rc2 go-module -github.com/opencontainers/runc v0.0.0-20220824004513-5fd4c4d14413 go-module -github.com/opencontainers/runc v1.1.2 go-module +github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module +github.com/opencontainers/runc v0.0.0-20230329064553-f19387a6bec4 go-module github.com/opencontainers/runc v1.1.3 go-module github.com/opencontainers/runc v1.1.4 go-module +github.com/opencontainers/runc v1.1.5 go-module github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module github.com/opencontainers/runtime-spec v1.0.3-0.20220825212826-86290f6a00fb go-module github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module From f0400f854cf7dbfa2a02bd87a5557d992fb3904e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 5 Apr 2023 07:46:32 -0500 Subject: [PATCH 090/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 61cf972..77c8479 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -107,9 +107,9 @@ dezalgo 1. diff 5.1.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -distro-info-data 0.52ubuntu0.2 deb -docker-ce 5:23.0.2-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:23.0.2-1~ubuntu.22.04~jammy deb +distro-info-data 0.52ubuntu0.3 deb +docker-ce 5:23.0.3-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:23.0.3-1~ubuntu.22.04~jammy deb docker-compose-plugin 2.17.2-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm From d107f1352bf6ad2c5706e40b0873c8a9af8ba241 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Apr 2023 23:42:25 +0200 Subject: [PATCH 091/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 77c8479..956d5a7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -58,7 +58,7 @@ brace-expansion 2. bsdutils 1:2.37.2-4ubuntu3 deb btrfs-progs 5.16.2-1 deb buffer 5.7.1 npm -buildcheck 0.0.3 npm +buildcheck 0.0.5 npm builtins 5.0.1 npm bytes 3.1.2 npm ca-certificates 20211016ubuntu0.22.04.1 deb @@ -89,7 +89,7 @@ cookie-signature 1. corepack 0.15.1 npm coreutils 8.32-4.1ubuntu1 deb cors 2.8.5 npm -cpu-features 0.0.4 npm +cpu-features 0.0.6 npm cssesc 3.0.0 npm curl 7.81.0-1ubuntu1.10 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb @@ -725,7 +725,7 @@ statuses 2. string-width 4.2.3 npm string_decoder 1.3.0 npm strip-ansi 6.0.1 npm -sudo 1.9.9-1ubuntu2.3 deb +sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm systeminformation 5.17.12 npm sysvinit-utils 3.01-1ubuntu1 deb From af6ef6e702c83ebd6e05b79e9b7aebe66abb0913 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 12 Apr 2023 16:18:53 -0500 Subject: [PATCH 092/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 956d5a7..36eece8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -508,8 +508,8 @@ libkeyutils1 1. libkrb5-3 1.19.2-2ubuntu0.1 deb libkrb5support0 1.19.2-2ubuntu0.1 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.14+dfsg-0ubuntu0.22.04.1 deb +libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.2 deb +libldap-common 2.5.14+dfsg-0ubuntu0.22.04.2 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb liblzo2-2 2.10-2build3 deb From 305dfa9b0b50fa170e11b656a07b1fc77549ea09 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 18 Apr 2023 16:42:33 -0500 Subject: [PATCH 093/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 36eece8..0ca2309 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -108,8 +108,8 @@ diff 5. diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb distro-info-data 0.52ubuntu0.3 deb -docker-ce 5:23.0.3-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:23.0.3-1~ubuntu.22.04~jammy deb +docker-ce 5:23.0.4-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:23.0.4-1~ubuntu.22.04~jammy deb docker-compose-plugin 2.17.2-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm @@ -739,7 +739,7 @@ toidentifier 1. treeverse 2.0.0 npm tweetnacl 0.14.5 npm type-is 1.6.18 npm -tzdata 2022g-0ubuntu0.22.04.1 deb +tzdata 2023c-0ubuntu0.22.04.0 deb ubuntu-keyring 2021.03.26 deb uidmap 1:4.8.1-2ubuntu2.1 deb unique-filename 2.0.1 npm From 3bf0387a5fd7f1fa46b9c2338c3737c73d17f47d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 25 Apr 2023 23:40:28 +0200 Subject: [PATCH 094/337] Bot Updating Templated Files --- Jenkinsfile | 94 +++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 88 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a6e846a..58ac776 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -39,10 +39,11 @@ pipeline { // Setup all the basic environment variables needed for the build stage("Set ENV Variables base"){ steps{ + sh '''docker pull quay.io/skopeo/stable:v1 || : ''' script{ env.EXIT_STATUS = '' env.LS_RELEASE = sh( - script: '''docker run --rm ghcr.io/linuxserver/alexeiled-skopeo sh -c 'skopeo inspect docker://docker.io/'${DOCKERHUB_IMAGE}':develop 2>/dev/null' | jq -r '.Labels.build_version' | awk '{print $3}' | grep '\\-ls' || : ''', + script: '''docker run --rm quay.io/skopeo/stable:v1 inspect docker://ghcr.io/${LS_USER}/${CONTAINER_NAME}:develop 2>/dev/null | jq -r '.Labels.build_version' | awk '{print $3}' | grep '\\-ls' || : ''', returnStdout: true).trim() env.LS_RELEASE_NOTES = sh( script: '''cat readme-vars.yml | awk -F \\" '/date: "[0-9][0-9].[0-9][0-9].[0-9][0-9]:/ {print $4;exit;}' | sed -E ':a;N;$!ba;s/\\r{0,1}\\n/\\\\n/g' ''', @@ -228,7 +229,7 @@ pipeline { script{ env.SHELLCHECK_URL = 'https://ci-tests.linuxserver.io/' + env.IMAGE + '/' + env.META_TAG + '/shellcheck-result.xml' } - sh '''curl -sL https://raw.githubusercontent.com/linuxserver/docker-shellcheck/master/checkrun.sh | /bin/bash''' + sh '''curl -sL https://raw.githubusercontent.com/linuxserver/docker-jenkins-builder/master/checkrun.sh | /bin/bash''' sh '''#! /bin/bash docker run --rm \ -v ${WORKSPACE}:/mnt \ @@ -376,6 +377,26 @@ pipeline { } } } + // If this is a develop build check the S6 service file perms + stage("Check S6 Service file Permissions"){ + when { + branch "develop" + environment name: 'CHANGE_ID', value: '' + environment name: 'EXIT_STATUS', value: '' + } + steps { + script{ + sh '''#! /bin/bash + WRONG_PERM=$(find ./ -path "./.git" -prune -o \\( -name "run" -o -name "finish" -o -name "check" \\) -not -perm -u=x,g=x,o=x -print) + if [[ -n "${WRONG_PERM}" ]]; then + echo "The following S6 service files are missing the executable bit; canceling the faulty build: ${WRONG_PERM}" + exit 1 + else + echo "S6 service file perms look good." + fi ''' + } + } + } /* ####################### GitLab Mirroring ####################### */ @@ -633,6 +654,7 @@ pipeline { ]) { script{ env.CI_URL = 'https://ci-tests.linuxserver.io/' + env.IMAGE + '/' + env.META_TAG + '/index.html' + env.CI_JSON_URL = 'https://ci-tests.linuxserver.io/' + env.IMAGE + '/' + env.META_TAG + '/report.json' } sh '''#! /bin/bash set -e @@ -657,8 +679,6 @@ pipeline { -e WEB_SCREENSHOT=\"${CI_WEB}\" \ -e WEB_AUTH=\"${CI_AUTH}\" \ -e WEB_PATH=\"${CI_WEBPATH}\" \ - -e DO_REGION="ams3" \ - -e DO_BUCKET="lsio-ci" \ -t ghcr.io/linuxserver/ci:latest \ python3 test_build.py''' } @@ -792,6 +812,9 @@ pipeline { docker manifest create ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} docker manifest annotate ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} --os linux --arch arm64 --variant v8 fi + docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-develop || : + docker manifest create ${MANIFESTIMAGE}:arm32v7-develop ${MANIFESTIMAGE}:amd64-develop + docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-develop docker manifest push --purge ${MANIFESTIMAGE}:develop docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} docker manifest push --purge ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} @@ -893,8 +916,67 @@ pipeline { environment name: 'EXIT_STATUS', value: '' } steps { - sh '''curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/issues/${PULL_REQUEST}/comments \ - -d '{"body": "I am a bot, here are the test results for this PR: \\n'${CI_URL}' \\n'${SHELLCHECK_URL}'"}' ''' + sh '''#! /bin/bash + # Function to retrieve JSON data from URL + get_json() { + local url="$1" + local response=$(curl -s "$url") + if [ $? -ne 0 ]; then + echo "Failed to retrieve JSON data from $url" + return 1 + fi + local json=$(echo "$response" | jq .) + if [ $? -ne 0 ]; then + echo "Failed to parse JSON data from $url" + return 1 + fi + echo "$json" + } + + build_table() { + local data="$1" + + # Get the keys in the JSON data + local keys=$(echo "$data" | jq -r 'to_entries | map(.key) | .[]') + + # Check if keys are empty + if [ -z "$keys" ]; then + echo "JSON report data does not contain any keys or the report does not exist." + return 1 + fi + + # Build table header + local header="| Tag | Passed |\\n| --- | --- |\\n" + + # Loop through the JSON data to build the table rows + local rows="" + for build in $keys; do + local status=$(echo "$data" | jq -r ".[\\"$build\\"].test_success") + if [ "$status" = "true" ]; then + status="✅" + else + status="❌" + fi + local row="| "$build" | "$status" |\\n" + rows="${rows}${row}" + done + + local table="${header}${rows}" + local escaped_table=$(echo "$table" | sed 's/\"/\\\\"/g') + echo "$escaped_table" + } + + # Retrieve JSON data from URL + data=$(get_json "$CI_JSON_URL") + # Create table from JSON data + table=$(build_table "$data") + echo -e "$table" + + curl -X POST -H "Authorization: token $GITHUB_TOKEN" \ + -H "Accept: application/vnd.github.v3+json" \ + "https://api.github.com/repos/$LS_USER/$LS_REPO/issues/$PULL_REQUEST/comments" \ + -d "{\\"body\\": \\"I am a bot, here are the test results for this PR: \\n${CI_URL}\\n${SHELLCHECK_URL}\\n${table}\\"}"''' + } } } From 1fde8e17a70e0209c564635343f038bf3f6c3fd5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 25 Apr 2023 23:42:07 +0200 Subject: [PATCH 095/337] Bot Updating Templated Files --- .github/workflows/call_issue_pr_tracker.yml | 6 ++++-- .github/workflows/external_trigger.yml | 8 ++++++++ .../workflows/external_trigger_scheduler.yml | 18 ++++++++++-------- .github/workflows/package_trigger.yml | 4 ++++ .../workflows/package_trigger_scheduler.yml | 8 ++++---- 5 files changed, 30 insertions(+), 14 deletions(-) diff --git a/.github/workflows/call_issue_pr_tracker.yml b/.github/workflows/call_issue_pr_tracker.yml index 87243e2..2c30784 100755 --- a/.github/workflows/call_issue_pr_tracker.yml +++ b/.github/workflows/call_issue_pr_tracker.yml @@ -2,9 +2,11 @@ name: Issue & PR Tracker on: issues: - types: [opened,reopened,labeled,unlabeled] + types: [opened,reopened,labeled,unlabeled,closed] pull_request_target: - types: [opened,reopened,review_requested,review_request_removed,labeled,unlabeled] + types: [opened,reopened,review_requested,review_request_removed,labeled,unlabeled,closed] + pull_request_review: + types: [submitted,edited,dismissed] jobs: manage-project: diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 7397b30..1b81e34 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -14,9 +14,11 @@ jobs: run: | if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP }}" ]; then echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP is set; skipping trigger. ****" + echo "Github secret \`PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi echo "**** External trigger running off of develop branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP\". ****" + echo "External trigger running off of develop branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP\`" >> $GITHUB_STEP_SUMMARY echo "**** Retrieving external version ****" EXT_RELEASE=$(curl -sX GET https://kasm-ci.s3.amazonaws.com/dev-version.txt) if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then @@ -30,6 +32,7 @@ jobs: fi EXT_RELEASE=$(echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g') echo "**** External version: ${EXT_RELEASE} ****" + echo "External version: ${EXT_RELEASE}" >> $GITHUB_STEP_SUMMARY echo "**** Retrieving last pushed version ****" image="linuxserver/kasm" tag="develop" @@ -65,14 +68,18 @@ jobs: exit 1 fi echo "**** Last pushed version: ${IMAGE_VERSION} ****" + echo "Last pushed version: ${IMAGE_VERSION}" >> $GITHUB_STEP_SUMMARY if [ "${EXT_RELEASE}" == "${IMAGE_VERSION}" ]; then echo "**** Version ${EXT_RELEASE} already pushed, exiting ****" + echo "Version ${EXT_RELEASE} already pushed, exiting" >> $GITHUB_STEP_SUMMARY exit 0 elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/lastBuild/api/json | jq -r '.building') == "true" ]; then echo "**** New version ${EXT_RELEASE} found; but there already seems to be an active build on Jenkins; exiting ****" + echo "New version ${EXT_RELEASE} found; but there already seems to be an active build on Jenkins; exiting" >> $GITHUB_STEP_SUMMARY exit 0 else echo "**** New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build ****" + echo "New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build" >> $GITHUB_STEP_SUMMARY response=$(curl -iX POST \ https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/buildWithParameters?PACKAGE_CHECK=false \ --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") @@ -82,6 +89,7 @@ jobs: buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') buildurl="${buildurl%$'\r'}" echo "**** Jenkins job build url: ${buildurl} ****" + echo "Jenkins job build url: ${buildurl}" >> $GITHUB_STEP_SUMMARY echo "**** Attempting to change the Jenkins job description ****" curl -iX POST \ "${buildurl}submitDescription" \ diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml index a93ce4b..079901f 100644 --- a/.github/workflows/external_trigger_scheduler.yml +++ b/.github/workflows/external_trigger_scheduler.yml @@ -2,7 +2,7 @@ name: External Trigger Scheduler on: schedule: - - cron: '03 * * * *' + - cron: '33 * * * *' workflow_dispatch: jobs: @@ -17,18 +17,18 @@ jobs: run: | echo "**** Branches found: ****" git for-each-ref --format='%(refname:short)' refs/remotes - echo "**** Pulling the yq docker image ****" - docker pull ghcr.io/linuxserver/yq for br in $(git for-each-ref --format='%(refname:short)' refs/remotes) do br=$(echo "$br" | sed 's|origin/||g') echo "**** Evaluating branch ${br} ****" - ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/jenkins-vars.yml \ - | docker run --rm -i --entrypoint yq ghcr.io/linuxserver/yq -r .ls_branch) - if [ "$br" == "$ls_branch" ]; then - echo "**** Branch ${br} appears to be live; checking workflow. ****" + ls_jenkins_vars=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/jenkins-vars.yml) + ls_branch=$(echo "${ls_jenkins_vars}" | yq -r '.ls_branch') + ls_trigger=$(echo "${ls_jenkins_vars}" | yq -r '.external_type') + if [[ "${br}" == "${ls_branch}" ]] && [[ "${ls_trigger}" != "os" ]]; then + echo "**** Branch ${br} appears to be live and trigger is not os; checking workflow. ****" if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/.github/workflows/external_trigger.yml > /dev/null 2>&1; then echo "**** Workflow exists. Triggering external trigger workflow for branch ${br} ****." + echo "Triggering external trigger workflow for branch ${br}" >> $GITHUB_STEP_SUMMARY curl -iX POST \ -H "Authorization: token ${{ secrets.CR_PAT }}" \ -H "Accept: application/vnd.github.v3+json" \ @@ -36,8 +36,10 @@ jobs: https://api.github.com/repos/linuxserver/docker-kasm/actions/workflows/external_trigger.yml/dispatches else echo "**** Workflow doesn't exist; skipping trigger. ****" + echo "Skipping branch ${br} due to no external trigger workflow present." >> $GITHUB_STEP_SUMMARY fi else - echo "**** ${br} appears to be a dev branch; skipping trigger. ****" + echo "**** ${br} is either a dev branch, or has no external version; skipping trigger. ****" + echo "Skipping branch ${br} due to being detected as dev branch or having no external version." >> $GITHUB_STEP_SUMMARY fi done diff --git a/.github/workflows/package_trigger.yml b/.github/workflows/package_trigger.yml index cbd3176..04b91ae 100644 --- a/.github/workflows/package_trigger.yml +++ b/.github/workflows/package_trigger.yml @@ -14,13 +14,16 @@ jobs: run: | if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP }}" ]; then echo "**** Github secret PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP is set; skipping trigger. ****" + echo "Github secret \`PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/lastBuild/api/json | jq -r '.building') == "true" ]; then echo "**** There already seems to be an active build on Jenkins; skipping package trigger ****" + echo "There already seems to be an active build on Jenkins; skipping package trigger" >> $GITHUB_STEP_SUMMARY exit 0 fi echo "**** Package trigger running off of develop branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP\". ****" + echo "Package trigger running off of develop branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP\`" >> $GITHUB_STEP_SUMMARY response=$(curl -iX POST \ https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/buildWithParameters?PACKAGE_CHECK=true \ --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") @@ -30,6 +33,7 @@ jobs: buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') buildurl="${buildurl%$'\r'}" echo "**** Jenkins job build url: ${buildurl} ****" + echo "Jenkins job build url: ${buildurl}" >> $GITHUB_STEP_SUMMARY echo "**** Attempting to change the Jenkins job description ****" curl -iX POST \ "${buildurl}submitDescription" \ diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index 87cd1d0..0bf396e 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -17,18 +17,16 @@ jobs: run: | echo "**** Branches found: ****" git for-each-ref --format='%(refname:short)' refs/remotes - echo "**** Pulling the yq docker image ****" - docker pull ghcr.io/linuxserver/yq for br in $(git for-each-ref --format='%(refname:short)' refs/remotes) do br=$(echo "$br" | sed 's|origin/||g') echo "**** Evaluating branch ${br} ****" - ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/jenkins-vars.yml \ - | docker run --rm -i --entrypoint yq ghcr.io/linuxserver/yq -r .ls_branch) + ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/jenkins-vars.yml | yq -r '.ls_branch') if [ "${br}" == "${ls_branch}" ]; then echo "**** Branch ${br} appears to be live; checking workflow. ****" if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/.github/workflows/package_trigger.yml > /dev/null 2>&1; then echo "**** Workflow exists. Triggering package trigger workflow for branch ${br}. ****" + echo "Triggering package trigger workflow for branch ${br}" >> $GITHUB_STEP_SUMMARY triggered_branches="${triggered_branches}${br} " curl -iX POST \ -H "Authorization: token ${{ secrets.CR_PAT }}" \ @@ -38,9 +36,11 @@ jobs: sleep 30 else echo "**** Workflow doesn't exist; skipping trigger. ****" + echo "Skipping branch ${br} due to no package trigger workflow present." >> $GITHUB_STEP_SUMMARY fi else echo "**** ${br} appears to be a dev branch; skipping trigger. ****" + echo "Skipping branch ${br} due to being detected as dev branch." >> $GITHUB_STEP_SUMMARY fi done echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****" From c369ccfe86e03d4f79e26cd1b9d18dd426934924 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 25 Apr 2023 23:46:00 +0200 Subject: [PATCH 096/337] Bot Updating Package Versions --- package_versions.txt | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 0ca2309..cd42677 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 18.15.11 npm +@types/node 18.16.1 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -58,7 +58,7 @@ brace-expansion 2. bsdutils 1:2.37.2-4ubuntu3 deb btrfs-progs 5.16.2-1 deb buffer 5.7.1 npm -buildcheck 0.0.5 npm +buildcheck 0.0.6 npm builtins 5.0.1 npm bytes 3.1.2 npm ca-certificates 20211016ubuntu0.22.04.1 deb @@ -86,10 +86,10 @@ content-type 1. cookie 0.4.2 npm cookie 0.5.0 npm cookie-signature 1.0.6 npm -corepack 0.15.1 npm +corepack 0.17.0 npm coreutils 8.32-4.1ubuntu1 deb cors 2.8.5 npm -cpu-features 0.0.6 npm +cpu-features 0.0.7 npm cssesc 3.0.0 npm curl 7.81.0-1ubuntu1.10 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb @@ -415,7 +415,7 @@ has-symbols 1. has-unicode 2.0.1 npm hosted-git-info 5.2.1 npm hostname 3.23ubuntu2 deb -http-cache-semantics 4.1.0 npm +http-cache-semantics 4.1.1 npm http-errors 2.0.0 npm http-proxy-agent 5.0.0 npm https-proxy-agent 5.0.1 npm @@ -537,8 +537,8 @@ libnpmteam 4. libnpmversion 3.0.7 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.13.0-1 deb -libnvidia-container1 1.13.0-1 deb +libnvidia-container-tools 1.13.1-1 deb +libnvidia-container1 1.13.1-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.3 deb @@ -568,12 +568,12 @@ libss2 1. libssh-4 0.9.6-2build1 deb libssl3 3.0.2-0ubuntu1.8 deb libstdc++6 12.1.0-2ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.7 deb +libsystemd0 249.11-0ubuntu3.9 deb libtasn1-6 4.18.0-4build1 deb libtinfo6 6.3-2 deb libtirpc-common 1.3.2-2ubuntu0.1 deb libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.7 deb +libudev1 249.11-0ubuntu3.9 deb libunistring2 1.0-1 deb libuuid1 2.37.2-4ubuntu3 deb libxtables12 1.8.7-1ubuntu5 deb @@ -622,14 +622,14 @@ negotiator 0. netbase 6.3 deb netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb -node 16.19.1 binary +node 16.20.0 binary node-gyp 9.1.0 npm node-pty 0.10.1 npm -nodejs 16.19.1-deb-1nodesource1 deb +nodejs 16.20.0-deb-1nodesource1 deb nopt 5.0.0 npm nopt 6.0.0 npm normalize-package-data 4.0.1 npm -npm 8.19.3 npm +npm 8.19.4 npm npm-audit-report 3.0.0 npm npm-bundled 1.1.2 npm npm-bundled 2.0.1 npm @@ -644,15 +644,15 @@ npm-profile 6. npm-registry-fetch 13.3.1 npm npm-user-validate 1.0.1 npm npmlog 6.0.2 npm -nvidia-container-toolkit 1.13.0-1 deb -nvidia-container-toolkit-base 1.13.0-1 deb +nvidia-container-toolkit 1.13.1-1 deb +nvidia-container-toolkit-base 1.13.1-1 deb nvidia-docker2 2.13.0-1 deb object-assign 4.1.1 npm object-inspect 1.12.3 npm on-finished 2.4.1 npm once 1.4.0 npm opener 1.5.2 npm -openssl 3.0.2-0ubuntu1.8 deb +openssl 3.0.2-0ubuntu1.9 deb p-map 4.0.0 npm pacote 13.6.2 npm parse-conflict-json 2.0.2 npm From 61349ae6487e44b59c706f21f840a4c5d8445304 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 2 May 2023 21:41:53 +0000 Subject: [PATCH 097/337] Bot Updating Package Versions --- package_versions.txt | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index cd42677..836e34a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 18.16.1 npm +@types/node 18.16.3 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -34,8 +34,8 @@ aggregate-error 3. ansi-regex 5.0.1 npm ansi-styles 4.3.0 npm aproba 2.0.0 npm -apt 2.4.8 deb -apt-utils 2.4.8 deb +apt 2.4.9 deb +apt-utils 2.4.9 deb archy 1.0.0 npm are-we-there-yet 3.0.1 npm argparse 2.0.1 npm @@ -108,9 +108,9 @@ diff 5. diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb distro-info-data 0.52ubuntu0.3 deb -docker-ce 5:23.0.4-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:23.0.4-1~ubuntu.22.04~jammy deb -docker-compose-plugin 2.17.2-1~ubuntu.22.04~jammy deb +docker-ce 5:23.0.5-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:23.0.5-1~ubuntu.22.04~jammy deb +docker-compose-plugin 2.17.3-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.1 deb @@ -121,7 +121,7 @@ emoji-regex 8. encodeurl 1.0.2 npm encoding 0.1.13 npm end-of-stream 1.4.4 npm -engine.io 6.4.1 npm +engine.io 6.4.2 npm engine.io-parser 5.0.6 npm env-paths 2.2.1 npm err-code 2.0.3 npm @@ -166,7 +166,7 @@ github.com/cenkalti/backoff/v4 v4 github.com/cespare/xxhash/v2 v2.1.2 go-module github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module github.com/cilium/ebpf v0.7.0 go-module -github.com/compose-spec/compose-go v1.13.2 go-module +github.com/compose-spec/compose-go v1.13.4 go-module github.com/container-orchestrated-devices/container-device-interface v0.5.4-0.20230111111500-5b3b5d81179a go-module github.com/containerd/aufs v1.0.0 go-module github.com/containerd/btrfs v1.0.0 go-module @@ -193,13 +193,13 @@ github.com/cpuguy83/go-md2man/v2 v2 github.com/cpuguy83/go-md2man/v2 v2.0.1 go-module github.com/cyphar/filepath-securejoin v0.2.3 go-module github.com/davecgh/go-spew v1.1.1 go-module -github.com/distribution/distribution/v3 v3.0.0-20230223072852-e5d5810851d1 go-module +github.com/distribution/distribution/v3 v3.0.0-20230327091844-0c958010ace2 go-module github.com/docker/buildx v0.10.4 go-module -github.com/docker/cli v23.0.1+incompatible go-module +github.com/docker/cli v23.0.4+incompatible go-module github.com/docker/cli/cmd/docker (devel) go-module github.com/docker/compose/v2 (devel) go-module github.com/docker/distribution v2.8.1+incompatible go-module -github.com/docker/docker v23.0.1+incompatible go-module +github.com/docker/docker v23.0.4+incompatible go-module github.com/docker/docker-credential-helpers v0.7.0 go-module github.com/docker/docker/cmd/docker-proxy (devel) go-module github.com/docker/docker/cmd/dockerd (devel) go-module @@ -242,10 +242,10 @@ github.com/hashicorp/errwrap v1 github.com/hashicorp/go-multierror v1.1.1 go-module github.com/hashicorp/go-version v1.6.0 go-module github.com/imdario/mergo v0.3.12 go-module -github.com/imdario/mergo v0.3.14 go-module +github.com/imdario/mergo v0.3.15 go-module github.com/intel/goresctrl v0.2.0 go-module github.com/jinzhu/copier v0.3.5 go-module -github.com/jonboulle/clockwork v0.3.1-0.20230117163003-a89700cec744 go-module +github.com/jonboulle/clockwork v0.4.0 go-module github.com/json-iterator/go v1.1.12 go-module github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module github.com/klauspost/compress v1.11.13 go-module @@ -282,7 +282,6 @@ github.com/opencontainers/go-digest v1 github.com/opencontainers/image-spec v1.1.0-rc2 go-module github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module github.com/opencontainers/runc v0.0.0-20230329064553-f19387a6bec4 go-module -github.com/opencontainers/runc v1.1.3 go-module github.com/opencontainers/runc v1.1.4 go-module github.com/opencontainers/runc v1.1.5 go-module github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module @@ -311,7 +310,7 @@ github.com/shurcooL/sanitized_anchor_name v1 github.com/sirupsen/logrus v1.8.1 go-module github.com/sirupsen/logrus v1.9.0 go-module github.com/spf13/cobra v1.4.0 go-module -github.com/spf13/cobra v1.6.1 go-module +github.com/spf13/cobra v1.7.0 go-module github.com/spf13/pflag v1.0.5 go-module github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 go-module github.com/stretchr/testify v1.8.2 go-module @@ -463,7 +462,7 @@ k8s.io/utils v0 k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 go-module kasm-wizard 0.0.1 npm libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.8 deb +libapt-pkg6.0 2.4.9 deb libassuan0 2.5.5-1build1 deb libattr1 1:2.5.1-1build1 deb libaudit-common 1:3.0.7-1build1 deb @@ -719,7 +718,7 @@ spdx-exceptions 2. spdx-expression-parse 3.0.1 npm spdx-license-ids 3.0.11 npm split-ca 1.0.1 npm -ssh2 1.11.0 npm +ssh2 1.12.0 npm ssri 9.0.1 npm statuses 2.0.1 npm string-width 4.2.3 npm From 78049a078ab8e7fe8fe2a69887bee99101769c05 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 May 2023 21:42:21 +0000 Subject: [PATCH 098/337] Bot Updating Package Versions --- package_versions.txt | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 836e34a..865de27 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 18.16.3 npm +@types/node 20.1.1 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -80,7 +80,7 @@ columnify 1. common-ancestor-path 1.0.1 npm concat-map 0.0.1 npm console-control-strings 1.1.0 npm -containerd.io 1.6.20-1 deb +containerd.io 1.6.21-1 deb content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.4.2 npm @@ -107,9 +107,9 @@ dezalgo 1. diff 5.1.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -distro-info-data 0.52ubuntu0.3 deb -docker-ce 5:23.0.5-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:23.0.5-1~ubuntu.22.04~jammy deb +distro-info-data 0.52ubuntu0.4 deb +docker-ce 5:23.0.6-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:23.0.6-1~ubuntu.22.04~jammy deb docker-compose-plugin 2.17.3-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm @@ -172,7 +172,7 @@ github.com/containerd/aufs v1 github.com/containerd/btrfs v1.0.0 go-module github.com/containerd/cgroups v1.0.4 go-module github.com/containerd/console v1.0.3 go-module -github.com/containerd/containerd v0.0.0-20230330203013-2806fc105739 go-module +github.com/containerd/containerd v0.0.0-20230505151328-3dce8eb055cb go-module github.com/containerd/containerd v1.6.19 go-module github.com/containerd/continuity v0.3.0 go-module github.com/containerd/fifo v1.0.0 go-module @@ -281,7 +281,7 @@ github.com/mrunalp/fileutils v0 github.com/opencontainers/go-digest v1.0.0 go-module github.com/opencontainers/image-spec v1.1.0-rc2 go-module github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module -github.com/opencontainers/runc v0.0.0-20230329064553-f19387a6bec4 go-module +github.com/opencontainers/runc v0.0.0-20230426214901-860f061b76bb go-module github.com/opencontainers/runc v1.1.4 go-module github.com/opencontainers/runc v1.1.5 go-module github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module @@ -365,19 +365,19 @@ go.opentelemetry.io/proto/otlp v0 golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd go-module golang.org/x/crypto v0.2.0 go-module golang.org/x/mod v0.5.0 go-module -golang.org/x/net v0.0.0-20201224014010-6772e930b67b go-module golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module golang.org/x/net v0.0.0-20220722155237-a158d28d115b go-module golang.org/x/net v0.7.0 go-module +golang.org/x/net v0.8.0 go-module golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f go-module golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783 go-module golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module golang.org/x/sync v0.1.0 go-module -golang.org/x/sys v0.0.0-20211116061358-0a5406a5449c go-module golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f go-module golang.org/x/sys v0.0.0-20220927170352-d9d178bc13c6 go-module golang.org/x/sys v0.5.0 go-module +golang.org/x/sys v0.6.0 go-module golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 go-module golang.org/x/term v0.5.0 go-module golang.org/x/text v0.3.7 go-module @@ -565,7 +565,7 @@ libsmartcols1 2. libsqlite3-0 3.37.2-2ubuntu0.1 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2build1 deb -libssl3 3.0.2-0ubuntu1.8 deb +libssl3 3.0.2-0ubuntu1.9 deb libstdc++6 12.1.0-2ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.9 deb libtasn1-6 4.18.0-4build1 deb @@ -738,7 +738,7 @@ toidentifier 1. treeverse 2.0.0 npm tweetnacl 0.14.5 npm type-is 1.6.18 npm -tzdata 2023c-0ubuntu0.22.04.0 deb +tzdata 2023c-0ubuntu0.22.04.1 deb ubuntu-keyring 2021.03.26 deb uidmap 1:4.8.1-2ubuntu2.1 deb unique-filename 2.0.1 npm From 3e7828e6cf0cf179c0e0119e37010ad8f674632d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 12 May 2023 13:38:19 +0000 Subject: [PATCH 099/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 865de27..af230ed 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.1.1 npm +@types/node 20.1.3 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From fe2d85a3fd5b93b46fd21519b4894314b84076f7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 15 May 2023 18:38:13 +0000 Subject: [PATCH 100/337] Bot Updating Package Versions --- package_versions.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index af230ed..1c66d3d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.1.3 npm +@types/node 20.1.4 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -141,7 +141,7 @@ fuse-overlayfs 1. fuse3 3.10.5-1build1 deb gauge 4.0.4 npm gcc-12-base 12.1.0-2ubuntu1~22.04 deb -get-intrinsic 1.2.0 npm +get-intrinsic 1.2.1 npm github.com/AlecAivazis/survey/v2 v2.3.6 go-module github.com/BurntSushi/toml v1.0.0 go-module github.com/Microsoft/hcsshim v0.9.8 go-module @@ -410,6 +410,7 @@ grep 3. gzip 1.10-4ubuntu4.1 deb has 1.0.3 npm has-flag 4.0.0 npm +has-proto 1.0.1 npm has-symbols 1.0.3 npm has-unicode 2.0.1 npm hosted-git-info 5.2.1 npm @@ -718,7 +719,7 @@ spdx-exceptions 2. spdx-expression-parse 3.0.1 npm spdx-license-ids 3.0.11 npm split-ca 1.0.1 npm -ssh2 1.12.0 npm +ssh2 1.13.0 npm ssri 9.0.1 npm statuses 2.0.1 npm string-width 4.2.3 npm From 6d297d4949e65a56d6bfa971738daff75feb98b3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 May 2023 18:38:09 +0000 Subject: [PATCH 101/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1c66d3d..7adec0e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.1.4 npm +@types/node 20.1.5 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -108,8 +108,8 @@ diff 5. diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb distro-info-data 0.52ubuntu0.4 deb -docker-ce 5:23.0.6-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:23.0.6-1~ubuntu.22.04~jammy deb +docker-ce 5:24.0.0-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:24.0.0-1~ubuntu.22.04~jammy deb docker-compose-plugin 2.17.3-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm From bcedd8248fb728321e7824a1c63d5e552cd4193f Mon Sep 17 00:00:00 2001 From: thelamer <ryankuba@gmail.com> Date: Tue, 16 May 2023 14:58:05 -0400 Subject: [PATCH 102/337] sync up mod layer with master --- Dockerfile | 6 ++++++ Dockerfile.aarch64 | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/Dockerfile b/Dockerfile index dda7745..23d4bd9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -83,6 +83,12 @@ RUN \ tar xf \ /tmp/kasm.tar.gz -C \ / && \ + curl -o \ + /tmp/images.tar.gz -L \ + "https://kasm-ci.s3.amazonaws.com/1.13.0-images-combined.tar.gz" && \ + tar xf \ + /tmp/images.tar.gz -C \ + / && \ sed -i 's/-N -e -H/-N -B -e -H/g' /kasm_release/upgrade.sh && \ echo "**** copy assets ****" && \ cp \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 1de8eed..c8e0eaf 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -83,6 +83,12 @@ RUN \ tar xf \ /tmp/kasm.tar.gz -C \ / && \ + curl -o \ + /tmp/images.tar.gz -L \ + "https://kasm-ci.s3.amazonaws.com/1.13.0-images-combined.tar.gz" && \ + tar xf \ + /tmp/images.tar.gz -C \ + / && \ sed -i 's/-N -e -H/-N -B -e -H/g' /kasm_release/upgrade.sh && \ echo "**** copy assets ****" && \ cp \ From 9eb3bddae1263465ee2d795078c3e2528f7efa52 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 May 2023 21:41:59 +0000 Subject: [PATCH 103/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7adec0e..8000c2a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.1.5 npm +@types/node 20.1.7 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From a6b1daa57deb250d230688a4b169e90c59af3b2e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 18 May 2023 20:37:45 +0000 Subject: [PATCH 104/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8000c2a..1dc8fc0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.1.7 npm +@types/node 20.2.1 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 6a1f8e6de9fc4ac0329f41b01ccd161770663c24 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 23 May 2023 21:40:12 +0000 Subject: [PATCH 105/337] Bot Updating Templated Files --- Jenkinsfile | 120 +++++++++++++++++++++++----------------------------- 1 file changed, 54 insertions(+), 66 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 58ac776..b66e58f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -39,7 +39,12 @@ pipeline { // Setup all the basic environment variables needed for the build stage("Set ENV Variables base"){ steps{ - sh '''docker pull quay.io/skopeo/stable:v1 || : ''' + sh '''#! /bin/bash + containers=$(docker ps -aq) + if [[ -n "${containers}" ]]; then + docker stop ${containers} + fi + docker system prune -af --volumes || : ''' script{ env.EXIT_STATUS = '' env.LS_RELEASE = sh( @@ -204,12 +209,12 @@ pipeline { env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/lspipepr-' + env.CONTAINER_NAME env.QUAYIMAGE = 'quay.io/linuxserver.io/lspipepr-' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { - env.CI_TAGS = 'amd64-develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm64v8-develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + env.CI_TAGS = 'amd64-develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST + '|arm64v8-develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST } else { - env.CI_TAGS = 'develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + env.CI_TAGS = 'develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST } - env.VERSION_TAG = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST - env.META_TAG = 'develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + env.VERSION_TAG = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST + env.META_TAG = 'develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST env.EXT_RELEASE_TAG = 'develop-version-' + env.EXT_RELEASE_CLEAN env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/pull/' + env.PULL_REQUEST env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.PR_DOCKERHUB_IMAGE + '/tags/' @@ -337,6 +342,8 @@ pipeline { git clone https://github.com/linuxserver/templates.git ${TEMPDIR}/unraid/templates if [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-logo.png ]]; then sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-logo.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml + elif [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-icon.png ]]; then + sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-icon.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml fi if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml) || ("$(md5sum ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml | awk '{ print $1 }')") ]]; then cd ${TEMPDIR}/unraid/templates/ @@ -428,8 +435,7 @@ pipeline { } steps{ sh '''#! /bin/bash - set -e - PACKAGE_UUID=$(curl -X GET -H "Authorization: Bearer ${SCARF_TOKEN}" https://scarf.sh/api/v1/organizations/linuxserver-ci/packages | jq -r '.[] | select(.name=="linuxserver/kasm") | .uuid') + PACKAGE_UUID=$(curl -X GET -H "Authorization: Bearer ${SCARF_TOKEN}" https://scarf.sh/api/v1/organizations/linuxserver-ci/packages | jq -r '.[] | select(.name=="linuxserver/kasm") | .uuid' || :) if [ -z "${PACKAGE_UUID}" ]; then echo "Adding package to Scarf.sh" curl -sX POST https://scarf.sh/api/v1/organizations/linuxserver-ci/packages \ @@ -539,9 +545,12 @@ pipeline { retry(5) { sh "docker push ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" } - sh '''docker rmi \ - ${IMAGE}:arm64v8-${META_TAG} \ - ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || :''' + sh '''#! /bin/bash + containers=$(docker ps -aq) + if [[ -n "${containers}" ]]; then + docker stop ${containers} + fi + docker system prune -af --volumes || : ''' } } } @@ -602,13 +611,6 @@ pipeline { environment name: 'EXIT_STATUS', value: '' } steps { - sh '''#! /bin/bash - echo "Packages were updated. Cleaning up the image and exiting." - if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false" ]; then - docker rmi ${IMAGE}:amd64-${META_TAG} - else - docker rmi ${IMAGE}:${META_TAG} - fi''' script{ env.EXIT_STATUS = 'ABORTED' } @@ -626,13 +628,6 @@ pipeline { } } steps { - sh '''#! /bin/bash - echo "There are no package updates. Cleaning up the image and exiting." - if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false" ]; then - docker rmi ${IMAGE}:amd64-${META_TAG} - else - docker rmi ${IMAGE}:${META_TAG} - fi''' script{ env.EXIT_STATUS = 'ABORTED' } @@ -731,17 +726,6 @@ pipeline { done ''' } - sh '''#! /bin/bash - for DELETEIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${QUAYIMAGE}" "${IMAGE}"; do - docker rmi \ - ${DELETEIMAGE}:${META_TAG} \ - ${DELETEIMAGE}:${EXT_RELEASE_TAG} \ - ${DELETEIMAGE}:develop || : - if [ -n "${SEMVER}" ]; then - docker rmi ${DELETEIMAGE}:${SEMVER} || : - fi - done - ''' } } } @@ -812,9 +796,16 @@ pipeline { docker manifest create ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} docker manifest annotate ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} --os linux --arch arm64 --variant v8 fi - docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-develop || : - docker manifest create ${MANIFESTIMAGE}:arm32v7-develop ${MANIFESTIMAGE}:amd64-develop - docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-develop + token=$(curl -sX GET "https://ghcr.io/token?scope=repository%3Alinuxserver%2F${CONTAINER_NAME}%3Apull" | jq -r '.token') + digest=$(curl -s \ + --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ + --header "Authorization: Bearer ${token}" \ + "https://ghcr.io/v2/linuxserver/${CONTAINER_NAME}/manifests/arm32v7-develop") + if [[ $(echo "$digest" | jq -r '.layers') != "null" ]]; then + docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-develop || : + docker manifest create ${MANIFESTIMAGE}:arm32v7-develop ${MANIFESTIMAGE}:amd64-develop + docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-develop + fi docker manifest push --purge ${MANIFESTIMAGE}:develop docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} docker manifest push --purge ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} @@ -824,24 +815,6 @@ pipeline { done ''' } - sh '''#! /bin/bash - for DELETEIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${QUAYIMAGE}" "${IMAGE}"; do - docker rmi \ - ${DELETEIMAGE}:amd64-${META_TAG} \ - ${DELETEIMAGE}:amd64-develop \ - ${DELETEIMAGE}:amd64-${EXT_RELEASE_TAG} \ - ${DELETEIMAGE}:arm64v8-${META_TAG} \ - ${DELETEIMAGE}:arm64v8-develop \ - ${DELETEIMAGE}:arm64v8-${EXT_RELEASE_TAG} || : - if [ -n "${SEMVER}" ]; then - docker rmi \ - ${DELETEIMAGE}:amd64-${SEMVER} \ - ${DELETEIMAGE}:arm64v8-${SEMVER} || : - fi - done - docker rmi \ - ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || : - ''' } } } @@ -912,7 +885,6 @@ pipeline { stage('Pull Request Comment') { when { not {environment name: 'CHANGE_ID', value: ''} - environment name: 'CI', value: 'true' environment name: 'EXIT_STATUS', value: '' } steps { @@ -966,16 +938,24 @@ pipeline { echo "$escaped_table" } - # Retrieve JSON data from URL - data=$(get_json "$CI_JSON_URL") - # Create table from JSON data - table=$(build_table "$data") - echo -e "$table" + if [[ "${CI}" = "true" ]]; then + # Retrieve JSON data from URL + data=$(get_json "$CI_JSON_URL") + # Create table from JSON data + table=$(build_table "$data") + echo -e "$table" - curl -X POST -H "Authorization: token $GITHUB_TOKEN" \ - -H "Accept: application/vnd.github.v3+json" \ - "https://api.github.com/repos/$LS_USER/$LS_REPO/issues/$PULL_REQUEST/comments" \ - -d "{\\"body\\": \\"I am a bot, here are the test results for this PR: \\n${CI_URL}\\n${SHELLCHECK_URL}\\n${table}\\"}"''' + curl -X POST -H "Authorization: token $GITHUB_TOKEN" \ + -H "Accept: application/vnd.github.v3+json" \ + "https://api.github.com/repos/$LS_USER/$LS_REPO/issues/$PULL_REQUEST/comments" \ + -d "{\\"body\\": \\"I am a bot, here are the test results for this PR: \\n${CI_URL}\\n${SHELLCHECK_URL}\\n${table}\\"}" + else + curl -X POST -H "Authorization: token $GITHUB_TOKEN" \ + -H "Accept: application/vnd.github.v3+json" \ + "https://api.github.com/repos/$LS_USER/$LS_REPO/issues/$PULL_REQUEST/comments" \ + -d "{\\"body\\": \\"I am a bot, here is the pushed image/manifest for this PR: \\n\\n\\`${GITHUBIMAGE}:${META_TAG}\\`\\"}" + fi + ''' } } @@ -1002,6 +982,14 @@ pipeline { } } cleanup { + sh '''#! /bin/bash + echo "Performing docker system prune!!" + containers=$(docker ps -aq) + if [[ -n "${containers}" ]]; then + docker stop ${containers} + fi + docker system prune -af --volumes || : + ''' cleanWs() } } From c2c7f6591d82f694ba495e7d7dcd0cbd0b08633a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 23 May 2023 21:45:31 +0000 Subject: [PATCH 106/337] Bot Updating Package Versions --- package_versions.txt | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1dc8fc0..dde89f8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.2.1 npm +@types/node 20.2.3 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -108,9 +108,9 @@ diff 5. diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb distro-info-data 0.52ubuntu0.4 deb -docker-ce 5:24.0.0-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:24.0.0-1~ubuntu.22.04~jammy deb -docker-compose-plugin 2.17.3-1~ubuntu.22.04~jammy deb +docker-ce 5:24.0.1-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:24.0.1-1~ubuntu.22.04~jammy deb +docker-compose-plugin 2.18.1-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.1 deb @@ -166,21 +166,20 @@ github.com/cenkalti/backoff/v4 v4 github.com/cespare/xxhash/v2 v2.1.2 go-module github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module github.com/cilium/ebpf v0.7.0 go-module -github.com/compose-spec/compose-go v1.13.4 go-module +github.com/cloudflare/cfssl v1.4.1 go-module +github.com/compose-spec/compose-go v1.13.5 go-module github.com/container-orchestrated-devices/container-device-interface v0.5.4-0.20230111111500-5b3b5d81179a go-module github.com/containerd/aufs v1.0.0 go-module github.com/containerd/btrfs v1.0.0 go-module github.com/containerd/cgroups v1.0.4 go-module github.com/containerd/console v1.0.3 go-module -github.com/containerd/containerd v0.0.0-20230505151328-3dce8eb055cb go-module -github.com/containerd/containerd v1.6.19 go-module +github.com/containerd/containerd v1.6.21 go-module github.com/containerd/continuity v0.3.0 go-module github.com/containerd/fifo v1.0.0 go-module github.com/containerd/go-cni v1.1.6 go-module github.com/containerd/go-runc v1.0.0 go-module github.com/containerd/imgcrypt v1.1.4 go-module github.com/containerd/nri v0.1.0 go-module -github.com/containerd/ttrpc v1.1.0 go-module github.com/containerd/ttrpc v1.1.1 go-module github.com/containerd/typeurl v1.0.2 go-module github.com/containerd/zfs v1.0.0 go-module @@ -195,11 +194,11 @@ github.com/cyphar/filepath-securejoin v0 github.com/davecgh/go-spew v1.1.1 go-module github.com/distribution/distribution/v3 v3.0.0-20230327091844-0c958010ace2 go-module github.com/docker/buildx v0.10.4 go-module -github.com/docker/cli v23.0.4+incompatible go-module +github.com/docker/cli v23.0.6+incompatible go-module github.com/docker/cli/cmd/docker (devel) go-module github.com/docker/compose/v2 (devel) go-module github.com/docker/distribution v2.8.1+incompatible go-module -github.com/docker/docker v23.0.4+incompatible go-module +github.com/docker/docker v23.0.6+incompatible go-module github.com/docker/docker-credential-helpers v0.7.0 go-module github.com/docker/docker/cmd/docker-proxy (devel) go-module github.com/docker/docker/cmd/dockerd (devel) go-module @@ -218,7 +217,7 @@ github.com/fsnotify/fsnotify v1 github.com/fsnotify/fsnotify v1.5.4 go-module github.com/fvbommel/sortorder v1.0.2 go-module github.com/go-logr/logr v1.2.2 go-module -github.com/go-logr/logr v1.2.3 go-module +github.com/go-logr/logr v1.2.4 go-module github.com/go-logr/stdr v1.2.2 go-module github.com/goccy/go-yaml v1.9.5 go-module github.com/godbus/dbus/v5 v5.0.6 go-module @@ -263,7 +262,7 @@ github.com/miekg/pkcs11 v1 github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible go-module github.com/mitchellh/mapstructure v1.5.0 go-module -github.com/moby/buildkit v0.11.5 go-module +github.com/moby/buildkit v0.11.6 go-module github.com/moby/locker v1.0.1 go-module github.com/moby/patternmatcher v0.5.0 go-module github.com/moby/spdystream v0.2.0 go-module @@ -273,13 +272,12 @@ github.com/moby/sys/sequential v0 github.com/moby/sys/signal v0.6.0 go-module github.com/moby/sys/signal v0.7.0 go-module github.com/moby/sys/symlink v0.2.0 go-module -github.com/moby/term v0.0.0-20221205130635-1aeaba878587 go-module +github.com/moby/term v0.5.0 go-module github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module github.com/modern-go/reflect2 v1.0.2 go-module github.com/morikuni/aec v1.0.0 go-module github.com/mrunalp/fileutils v0.5.0 go-module github.com/opencontainers/go-digest v1.0.0 go-module -github.com/opencontainers/image-spec v1.1.0-rc2 go-module github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module github.com/opencontainers/runc v0.0.0-20230426214901-860f061b76bb go-module github.com/opencontainers/runc v1.1.4 go-module @@ -344,7 +342,7 @@ go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0 go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.29.0 go-module go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.29.0 go-module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.29.0 go-module -go.opentelemetry.io/otel v1.14.0 go-module +go.opentelemetry.io/otel v1.15.1 go-module go.opentelemetry.io/otel v1.3.0 go-module go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0 go-module go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.4.1 go-module @@ -358,7 +356,7 @@ go.opentelemetry.io/otel/internal/metric v0 go.opentelemetry.io/otel/metric v0.27.0 go-module go.opentelemetry.io/otel/sdk v1.3.0 go-module go.opentelemetry.io/otel/sdk v1.4.1 go-module -go.opentelemetry.io/otel/trace v1.14.0 go-module +go.opentelemetry.io/otel/trace v1.15.1 go-module go.opentelemetry.io/otel/trace v1.3.0 go-module go.opentelemetry.io/proto/otlp v0.11.0 go-module go.opentelemetry.io/proto/otlp v0.12.0 go-module @@ -372,7 +370,7 @@ golang.org/x/net v0 golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f go-module golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783 go-module golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module -golang.org/x/sync v0.1.0 go-module +golang.org/x/sync v0.2.0 go-module golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f go-module golang.org/x/sys v0.0.0-20220927170352-d9d178bc13c6 go-module @@ -711,7 +709,7 @@ sigs.k8s.io/yaml v1 smart-buffer 4.2.0 npm socket.io 4.6.1 npm socket.io-adapter 2.5.2 npm -socket.io-parser 4.2.2 npm +socket.io-parser 4.2.3 npm socks 2.7.0 npm socks-proxy-agent 7.0.0 npm spdx-correct 3.1.1 npm From 6bc476072ead6754ba41844f225aaae850c3627c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 30 May 2023 20:39:31 +0000 Subject: [PATCH 107/337] Bot Updating Package Versions --- package_versions.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index dde89f8..cc19f6b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.2.3 npm +@types/node 20.2.5 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -89,7 +89,7 @@ cookie-signature 1. corepack 0.17.0 npm coreutils 8.32-4.1ubuntu1 deb cors 2.8.5 npm -cpu-features 0.0.7 npm +cpu-features 0.0.8 npm cssesc 3.0.0 npm curl 7.81.0-1ubuntu1.10 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb @@ -108,8 +108,8 @@ diff 5. diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb distro-info-data 0.52ubuntu0.4 deb -docker-ce 5:24.0.1-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:24.0.1-1~ubuntu.22.04~jammy deb +docker-ce 5:24.0.2-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:24.0.2-1~ubuntu.22.04~jammy deb docker-compose-plugin 2.18.1-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm @@ -122,7 +122,7 @@ encodeurl 1. encoding 0.1.13 npm end-of-stream 1.4.4 npm engine.io 6.4.2 npm -engine.io-parser 5.0.6 npm +engine.io-parser 5.0.7 npm env-paths 2.2.1 npm err-code 2.0.3 npm escape-html 1.0.3 npm @@ -650,7 +650,7 @@ object-inspect 1. on-finished 2.4.1 npm once 1.4.0 npm opener 1.5.2 npm -openssl 3.0.2-0ubuntu1.9 deb +openssl 3.0.2-0ubuntu1.10 deb p-map 4.0.0 npm pacote 13.6.2 npm parse-conflict-json 2.0.2 npm @@ -725,7 +725,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.17.12 npm +systeminformation 5.17.16 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From 4a5040f8092581c5cc658359f07cba3aa46ecbf3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 31 May 2023 14:43:16 +0000 Subject: [PATCH 108/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index cc19f6b..631b94f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -61,7 +61,7 @@ buffer 5. buildcheck 0.0.6 npm builtins 5.0.1 npm bytes 3.1.2 npm -ca-certificates 20211016ubuntu0.22.04.1 deb +ca-certificates 20230311ubuntu0.22.04.1 deb cacache 16.1.3 npm call-bind 1.0.2 npm chalk 4.1.2 npm @@ -707,9 +707,9 @@ sigs.k8s.io/structured-merge-diff/v4 v4 sigs.k8s.io/yaml v1.2.0 go-module sigs.k8s.io/yaml v1.3.0 go-module smart-buffer 4.2.0 npm -socket.io 4.6.1 npm +socket.io 4.6.2 npm socket.io-adapter 2.5.2 npm -socket.io-parser 4.2.3 npm +socket.io-parser 4.2.4 npm socks 2.7.0 npm socks-proxy-agent 7.0.0 npm spdx-correct 3.1.1 npm From 9ce2952d49f39775848da0873a6f234deabaff10 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 5 Jun 2023 20:38:40 +0000 Subject: [PATCH 109/337] Bot Updating Package Versions --- package_versions.txt | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 631b94f..f5084b1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -146,7 +146,7 @@ github.com/AlecAivazis/survey/v2 v2 github.com/BurntSushi/toml v1.0.0 go-module github.com/Microsoft/hcsshim v0.9.8 go-module github.com/NVIDIA/go-nvml v0.12.0-0 go-module -github.com/NVIDIA/nvidia-container-toolkit (devel) go-module +github.com/NVIDIA/nvidia-container-toolkit v1.13.1 go-module github.com/a8m/envsubst v1.3.0 go-module github.com/aws/aws-sdk-go-v2 v1.16.3 go-module github.com/aws/aws-sdk-go-v2/config v1.15.5 go-module @@ -195,13 +195,13 @@ github.com/davecgh/go-spew v1 github.com/distribution/distribution/v3 v3.0.0-20230327091844-0c958010ace2 go-module github.com/docker/buildx v0.10.4 go-module github.com/docker/cli v23.0.6+incompatible go-module -github.com/docker/cli/cmd/docker (devel) go-module +github.com/docker/cli/cmd/docker v24.0.2 go-module github.com/docker/compose/v2 (devel) go-module github.com/docker/distribution v2.8.1+incompatible go-module github.com/docker/docker v23.0.6+incompatible go-module github.com/docker/docker-credential-helpers v0.7.0 go-module -github.com/docker/docker/cmd/docker-proxy (devel) go-module -github.com/docker/docker/cmd/dockerd (devel) go-module +github.com/docker/docker/cmd/docker-proxy v24.0.2 go-module +github.com/docker/docker/cmd/dockerd v24.0.2 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module @@ -433,7 +433,7 @@ init-system-helpers 1. ip 2.0.0 npm ip-regex 4.3.0 npm ipaddr.js 1.9.1 npm -iptables 1.8.7-1ubuntu5 deb +iptables 1.8.7-1ubuntu5.1 deb is-cidr 4.0.2 npm is-core-module 2.10.0 npm is-fullwidth-code-point 3.0.0 npm @@ -497,8 +497,8 @@ libhogweed6 3. libicu70 70.1-2 deb libidn2-0 2.3.2-2build1 deb libinih1 53-1ubuntu3 deb -libip4tc2 1.8.7-1ubuntu5 deb -libip6tc2 1.8.7-1ubuntu5 deb +libip4tc2 1.8.7-1ubuntu5.1 deb +libip6tc2 1.8.7-1ubuntu5.1 deb libjq1 1.6-2.1ubuntu3 deb libjson-c5 0.15-3~ubuntu1.22.04.1 deb libk5crypto3 1.19.2-2ubuntu0.1 deb @@ -548,8 +548,8 @@ libpcre3 2: libprocps8 2:3.3.17-6ubuntu2 deb libpsl5 0.21.0-1.2build2 deb libpython3-stdlib 3.10.6-1~22.04 deb -libpython3.10-minimal 3.10.6-1~22.04.2ubuntu1 deb -libpython3.10-stdlib 3.10.6-1~22.04.2ubuntu1 deb +libpython3.10-minimal 3.10.6-1~22.04.2ubuntu1.1 deb +libpython3.10-stdlib 3.10.6-1~22.04.2ubuntu1.1 deb libreadline8 8.1.2-1 deb librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb @@ -574,7 +574,7 @@ libtirpc3 1. libudev1 249.11-0ubuntu3.9 deb libunistring2 1.0-1 deb libuuid1 2.37.2-4ubuntu3 deb -libxtables12 1.8.7-1ubuntu5 deb +libxtables12 1.8.7-1ubuntu5.1 deb libxxhash0 0.8.1-1 deb libzstd1 1.4.8+dfsg-3build1 deb locales 2.35-0ubuntu3.1 deb @@ -675,8 +675,8 @@ pump 3. python 3.10.6 binary python3 3.10.6-1~22.04 deb python3-minimal 3.10.6-1~22.04 deb -python3.10 3.10.6-1~22.04.2ubuntu1 deb -python3.10-minimal 3.10.6-1~22.04.2ubuntu1 deb +python3.10 3.10.6-1~22.04.2ubuntu1.1 deb +python3.10-minimal 3.10.6-1~22.04.2ubuntu1.1 deb qrcode-terminal 0.12.0 npm qs 6.11.0 npm range-parser 1.2.1 npm @@ -725,7 +725,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.17.16 npm +systeminformation 5.17.17 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From 07871deb1c701ac5e62325e9abda2ae641fe333c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 6 Jun 2023 21:44:09 +0000 Subject: [PATCH 110/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f5084b1..866793f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -725,7 +725,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.17.17 npm +systeminformation 5.18.0 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From 62b6fb51dd30bc3de327018a8b5183ddcc8c7a42 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 12 Jun 2023 19:40:37 +0000 Subject: [PATCH 111/337] Bot Updating Package Versions --- package_versions.txt | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 866793f..ca6770e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.2.5 npm +@types/node 20.3.0 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -113,7 +113,7 @@ docker-ce-cli 5: docker-compose-plugin 2.18.1-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm -dpkg 1.21.1ubuntu2.1 deb +dpkg 1.21.1ubuntu2.2 deb drm-info 2.2.0-2 deb e2fsprogs 1.46.5-2ubuntu1.1 deb ee-first 1.1.1 npm @@ -492,7 +492,7 @@ libgcrypt20 1. libgmp10 2:6.2.1+dfsg-3ubuntu1 deb libgnutls30 3.7.3-4ubuntu1.2 deb libgpg-error0 1.43-3 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.1 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb libhogweed6 3.7.3-1build2 deb libicu70 70.1-2 deb libidn2-0 2.3.2-2build1 deb @@ -501,10 +501,10 @@ libip4tc2 1. libip6tc2 1.8.7-1ubuntu5.1 deb libjq1 1.6-2.1ubuntu3 deb libjson-c5 0.15-3~ubuntu1.22.04.1 deb -libk5crypto3 1.19.2-2ubuntu0.1 deb +libk5crypto3 1.19.2-2ubuntu0.2 deb libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.1 deb -libkrb5support0 1.19.2-2ubuntu0.1 deb +libkrb5-3 1.19.2-2ubuntu0.2 deb +libkrb5support0 1.19.2-2ubuntu0.2 deb libksba8 1.6.0-2ubuntu0.2 deb libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.2 deb libldap-common 2.5.14+dfsg-0ubuntu0.22.04.2 deb @@ -515,8 +515,8 @@ libmd0 1. libmnl0 1.0.4-3build2 deb libmount1 2.37.2-4ubuntu3 deb libmpdec3 2.5.1-2build2 deb -libncurses6 6.3-2 deb -libncursesw6 6.3-2 deb +libncurses6 6.3-2ubuntu0.1 deb +libncursesw6 6.3-2ubuntu0.1 deb libnetfilter-conntrack3 1.0.9-1 deb libnettle8 3.7.3-1build2 deb libnfnetlink0 1.0.1-3build3 deb @@ -563,12 +563,12 @@ libsepol2 3. libsmartcols1 2.37.2-4ubuntu3 deb libsqlite3-0 3.37.2-2ubuntu0.1 deb libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2build1 deb -libssl3 3.0.2-0ubuntu1.9 deb +libssh-4 0.9.6-2ubuntu0.22.04.1 deb +libssl3 3.0.2-0ubuntu1.10 deb libstdc++6 12.1.0-2ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.9 deb libtasn1-6 4.18.0-4build1 deb -libtinfo6 6.3-2 deb +libtinfo6 6.3-2ubuntu0.1 deb libtirpc-common 1.3.2-2ubuntu0.1 deb libtirpc3 1.3.2-2ubuntu0.1 deb libudev1 249.11-0ubuntu3.9 deb @@ -614,8 +614,8 @@ ms 2. ms 2.1.3 npm mute-stream 0.0.8 npm nan 2.17.0 npm -ncurses-base 6.3-2 deb -ncurses-bin 6.3-2 deb +ncurses-base 6.3-2ubuntu0.1 deb +ncurses-bin 6.3-2ubuntu0.1 deb negotiator 0.6.3 npm netbase 6.3 deb netcat 1.218-4ubuntu1 deb @@ -658,7 +658,7 @@ parseurl 1. passwd 1:4.8.1-2ubuntu2.1 deb path-is-absolute 1.0.1 npm path-to-regexp 0.1.7 npm -perl-base 5.34.0-3ubuntu1.1 deb +perl-base 5.34.0-3ubuntu1.2 deb pigz 2.6-1 deb pinentry-curses 1.1.1-1build2 deb postcss-selector-parser 6.0.10 npm @@ -725,7 +725,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.18.0 npm +systeminformation 5.18.3 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm @@ -737,7 +737,7 @@ toidentifier 1. treeverse 2.0.0 npm tweetnacl 0.14.5 npm type-is 1.6.18 npm -tzdata 2023c-0ubuntu0.22.04.1 deb +tzdata 2023c-0ubuntu0.22.04.2 deb ubuntu-keyring 2021.03.26 deb uidmap 1:4.8.1-2ubuntu2.1 deb unique-filename 2.0.1 npm From b4445413e2906e746789906d0bb5dde205ba356f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 13 Jun 2023 21:41:54 +0000 Subject: [PATCH 112/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ca6770e..dcec3d0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.3.0 npm +@types/node 20.3.1 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 2424c63c1426f1f29ec85b1650947751ffb76461 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 20 Jun 2023 21:42:48 +0000 Subject: [PATCH 113/337] Bot Updating Package Versions --- package_versions.txt | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index dcec3d0..673af52 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -143,10 +143,10 @@ gauge 4. gcc-12-base 12.1.0-2ubuntu1~22.04 deb get-intrinsic 1.2.1 npm github.com/AlecAivazis/survey/v2 v2.3.6 go-module -github.com/BurntSushi/toml v1.0.0 go-module +github.com/BurntSushi/toml v1.2.1 go-module github.com/Microsoft/hcsshim v0.9.8 go-module github.com/NVIDIA/go-nvml v0.12.0-0 go-module -github.com/NVIDIA/nvidia-container-toolkit v1.13.1 go-module +github.com/NVIDIA/nvidia-container-toolkit v1.13.2 go-module github.com/a8m/envsubst v1.3.0 go-module github.com/aws/aws-sdk-go-v2 v1.16.3 go-module github.com/aws/aws-sdk-go-v2/config v1.15.5 go-module @@ -189,7 +189,7 @@ github.com/containers/ocicrypt v1 github.com/coreos/go-systemd/v22 v22.3.2 go-module github.com/cpuguy83/go-md2man/v2 v2.0.0 go-module github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module -github.com/cpuguy83/go-md2man/v2 v2.0.1 go-module +github.com/cpuguy83/go-md2man/v2 v2.0.2 go-module github.com/cyphar/filepath-securejoin v0.2.3 go-module github.com/davecgh/go-spew v1.1.1 go-module github.com/distribution/distribution/v3 v3.0.0-20230327091844-0c958010ace2 go-module @@ -280,10 +280,10 @@ github.com/mrunalp/fileutils v0 github.com/opencontainers/go-digest v1.0.0 go-module github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module github.com/opencontainers/runc v0.0.0-20230426214901-860f061b76bb go-module -github.com/opencontainers/runc v1.1.4 go-module github.com/opencontainers/runc v1.1.5 go-module +github.com/opencontainers/runc v1.1.6 go-module github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module -github.com/opencontainers/runtime-spec v1.0.3-0.20220825212826-86290f6a00fb go-module +github.com/opencontainers/runtime-spec v1.1.0-rc.2 go-module github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module github.com/opencontainers/selinux v1.10.0 go-module github.com/opencontainers/selinux v1.10.1 go-module @@ -373,9 +373,9 @@ golang.org/x/sync v0 golang.org/x/sync v0.2.0 go-module golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f go-module -golang.org/x/sys v0.0.0-20220927170352-d9d178bc13c6 go-module golang.org/x/sys v0.5.0 go-module golang.org/x/sys v0.6.0 go-module +golang.org/x/sys v0.7.0 go-module golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 go-module golang.org/x/term v0.5.0 go-module golang.org/x/text v0.3.7 go-module @@ -535,8 +535,8 @@ libnpmteam 4. libnpmversion 3.0.7 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.13.1-1 deb -libnvidia-container1 1.13.1-1 deb +libnvidia-container-tools 1.13.2-1 deb +libnvidia-container1 1.13.2-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.3 deb @@ -642,8 +642,8 @@ npm-profile 6. npm-registry-fetch 13.3.1 npm npm-user-validate 1.0.1 npm npmlog 6.0.2 npm -nvidia-container-toolkit 1.13.1-1 deb -nvidia-container-toolkit-base 1.13.1-1 deb +nvidia-container-toolkit 1.13.2-1 deb +nvidia-container-toolkit-base 1.13.2-1 deb nvidia-docker2 2.13.0-1 deb object-assign 4.1.1 npm object-inspect 1.12.3 npm @@ -717,7 +717,7 @@ spdx-exceptions 2. spdx-expression-parse 3.0.1 npm spdx-license-ids 3.0.11 npm split-ca 1.0.1 npm -ssh2 1.13.0 npm +ssh2 1.14.0 npm ssri 9.0.1 npm statuses 2.0.1 npm string-width 4.2.3 npm From 4196db56fce970f2185d8b86678519f9c966e6cc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 22 Jun 2023 19:38:17 +0000 Subject: [PATCH 114/337] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 673af52..fd01b80 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -121,8 +121,8 @@ emoji-regex 8. encodeurl 1.0.2 npm encoding 0.1.13 npm end-of-stream 1.4.4 npm -engine.io 6.4.2 npm -engine.io-parser 5.0.7 npm +engine.io 6.5.0 npm +engine.io-parser 5.1.0 npm env-paths 2.2.1 npm err-code 2.0.3 npm escape-html 1.0.3 npm @@ -707,7 +707,7 @@ sigs.k8s.io/structured-merge-diff/v4 v4 sigs.k8s.io/yaml v1.2.0 go-module sigs.k8s.io/yaml v1.3.0 go-module smart-buffer 4.2.0 npm -socket.io 4.6.2 npm +socket.io 4.7.0 npm socket.io-adapter 2.5.2 npm socket.io-parser 4.2.4 npm socks 2.7.0 npm @@ -725,7 +725,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.18.3 npm +systeminformation 5.18.4 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From 1c2202f1fb9e9287c25f71d3fb20eb4182b83762 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 23 Jun 2023 10:43:46 +0000 Subject: [PATCH 115/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index fd01b80..12624a7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -620,10 +620,10 @@ negotiator 0. netbase 6.3 deb netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb -node 16.20.0 binary +node 16.20.1 binary node-gyp 9.1.0 npm node-pty 0.10.1 npm -nodejs 16.20.0-deb-1nodesource1 deb +nodejs 16.20.1-deb-1nodesource1 deb nopt 5.0.0 npm nopt 6.0.0 npm normalize-package-data 4.0.1 npm From 396469d902defacd643e3191dd284a8c73a21db5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 27 Jun 2023 13:42:44 +0000 Subject: [PATCH 116/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 12624a7..2b9238b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.3.1 npm +@types/node 20.3.2 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -121,7 +121,7 @@ emoji-regex 8. encodeurl 1.0.2 npm encoding 0.1.13 npm end-of-stream 1.4.4 npm -engine.io 6.5.0 npm +engine.io 6.5.1 npm engine.io-parser 5.1.0 npm env-paths 2.2.1 npm err-code 2.0.3 npm @@ -725,7 +725,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.18.4 npm +systeminformation 5.18.5 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From e8e24fa729ea1aa57606126fa26e2f8334058093 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 28 Jun 2023 20:38:31 +0000 Subject: [PATCH 117/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2b9238b..6cc1601 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -473,7 +473,7 @@ libbz2-1.0 1. libc-bin 2.35-0ubuntu3.1 deb libc6 2.35-0ubuntu3.1 deb libcap-ng0 0.7.9-2.2build3 deb -libcap2 1:2.44-1build3 deb +libcap2 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb libcrypt1 1:4.4.27-1 deb libcurl4 7.81.0-1ubuntu1.10 deb @@ -707,7 +707,7 @@ sigs.k8s.io/structured-merge-diff/v4 v4 sigs.k8s.io/yaml v1.2.0 go-module sigs.k8s.io/yaml v1.3.0 go-module smart-buffer 4.2.0 npm -socket.io 4.7.0 npm +socket.io 4.7.1 npm socket.io-adapter 2.5.2 npm socket.io-parser 4.2.4 npm socks 2.7.0 npm @@ -725,7 +725,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.18.5 npm +systeminformation 5.18.6 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From d25562908e9168631765206ac1b268ed3ae20d94 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 30 Jun 2023 03:40:03 +0000 Subject: [PATCH 118/337] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6cc1601..0af9388 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -146,7 +146,7 @@ github.com/AlecAivazis/survey/v2 v2 github.com/BurntSushi/toml v1.2.1 go-module github.com/Microsoft/hcsshim v0.9.8 go-module github.com/NVIDIA/go-nvml v0.12.0-0 go-module -github.com/NVIDIA/nvidia-container-toolkit v1.13.2 go-module +github.com/NVIDIA/nvidia-container-toolkit v1.13.3 go-module github.com/a8m/envsubst v1.3.0 go-module github.com/aws/aws-sdk-go-v2 v1.16.3 go-module github.com/aws/aws-sdk-go-v2/config v1.15.5 go-module @@ -535,8 +535,8 @@ libnpmteam 4. libnpmversion 3.0.7 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.13.2-1 deb -libnvidia-container1 1.13.2-1 deb +libnvidia-container-tools 1.13.3-1 deb +libnvidia-container1 1.13.3-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.3 deb @@ -642,8 +642,8 @@ npm-profile 6. npm-registry-fetch 13.3.1 npm npm-user-validate 1.0.1 npm npmlog 6.0.2 npm -nvidia-container-toolkit 1.13.2-1 deb -nvidia-container-toolkit-base 1.13.2-1 deb +nvidia-container-toolkit 1.13.3-1 deb +nvidia-container-toolkit-base 1.13.3-1 deb nvidia-docker2 2.13.0-1 deb object-assign 4.1.1 npm object-inspect 1.12.3 npm From f531e06c2e77ab5951b165fcce95623bd0a0a09a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Jul 2023 21:41:05 +0000 Subject: [PATCH 119/337] Bot Updating Templated Files --- Jenkinsfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b66e58f..50043e4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -280,7 +280,7 @@ pipeline { echo "Jenkinsfile is up to date." fi # Stage 2 - Delete old templates - OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md .github/ISSUE_TEMPLATE/issue.bug.md .github/ISSUE_TEMPLATE/issue.feature.md .github/workflows/call_invalid_helper.yml .github/workflows/stale.yml" + OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md .github/ISSUE_TEMPLATE/issue.bug.md .github/ISSUE_TEMPLATE/issue.feature.md .github/workflows/call_invalid_helper.yml .github/workflows/stale.yml Dockerfile.armhf" for i in ${OLD_TEMPLATES}; do if [[ -f "${i}" ]]; then TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}" @@ -316,12 +316,13 @@ pipeline { mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/workflows mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/ISSUE_TEMPLATE cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ || : + cp --parents readme-vars.yml ${TEMPDIR}/repo/${LS_REPO}/ || : cd ${TEMPDIR}/repo/${LS_REPO}/ if ! grep -q '.jenkins-external' .gitignore 2>/dev/null; then echo ".jenkins-external" >> .gitignore git add .gitignore fi - git add ${TEMPLATED_FILES} + git add readme-vars.yml ${TEMPLATED_FILES} git commit -m 'Bot Updating Templated Files' git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} From ed926ad45288183903a610b42f9c71b955c2d18b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Jul 2023 21:45:26 +0000 Subject: [PATCH 120/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0af9388..cc55fbb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.3.2 npm +@types/node 20.3.3 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 1d8dceb1783485de608e5b2a556dcea922576adb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 5 Jul 2023 22:41:23 +0000 Subject: [PATCH 121/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index cc55fbb..5462451 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.3.3 npm +@types/node 20.4.0 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From a8c4049a2366b4eafabf1fa67205e2c212d66ab5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 6 Jul 2023 19:39:54 +0000 Subject: [PATCH 122/337] Bot Updating Package Versions --- package_versions.txt | 150 +++++++++++++++++++++++++------------------ 1 file changed, 86 insertions(+), 64 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 5462451..e199b3c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -108,9 +108,9 @@ diff 5. diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb distro-info-data 0.52ubuntu0.4 deb -docker-ce 5:24.0.2-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:24.0.2-1~ubuntu.22.04~jammy deb -docker-compose-plugin 2.18.1-1~ubuntu.22.04~jammy deb +docker-ce 5:24.0.3-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:24.0.3-1~ubuntu.22.04~jammy deb +docker-compose-plugin 2.19.1-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.2 deb @@ -142,46 +142,53 @@ fuse3 3. gauge 4.0.4 npm gcc-12-base 12.1.0-2ubuntu1~22.04 deb get-intrinsic 1.2.1 npm -github.com/AlecAivazis/survey/v2 v2.3.6 go-module +github.com/AlecAivazis/survey/v2 v2.3.7 go-module github.com/BurntSushi/toml v1.2.1 go-module +github.com/Masterminds/semver/v3 v3.2.1 go-module github.com/Microsoft/hcsshim v0.9.8 go-module github.com/NVIDIA/go-nvml v0.12.0-0 go-module github.com/NVIDIA/nvidia-container-toolkit v1.13.3 go-module github.com/a8m/envsubst v1.3.0 go-module -github.com/aws/aws-sdk-go-v2 v1.16.3 go-module -github.com/aws/aws-sdk-go-v2/config v1.15.5 go-module -github.com/aws/aws-sdk-go-v2/credentials v1.12.0 go-module -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.4 go-module -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.10 go-module -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.4 go-module -github.com/aws/aws-sdk-go-v2/internal/ini v1.3.11 go-module -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.4 go-module -github.com/aws/aws-sdk-go-v2/service/sso v1.11.4 go-module -github.com/aws/aws-sdk-go-v2/service/sts v1.16.4 go-module -github.com/aws/smithy-go v1.11.2 go-module +github.com/aws/aws-sdk-go-v2 v1.17.6 go-module +github.com/aws/aws-sdk-go-v2/config v1.18.16 go-module +github.com/aws/aws-sdk-go-v2/credentials v1.13.16 go-module +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.24 go-module +github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.30 go-module +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.24 go-module +github.com/aws/aws-sdk-go-v2/internal/ini v1.3.31 go-module +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.24 go-module +github.com/aws/aws-sdk-go-v2/service/sso v1.12.5 go-module +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.5 go-module +github.com/aws/aws-sdk-go-v2/service/sts v1.18.6 go-module +github.com/aws/smithy-go v1.13.5 go-module github.com/beorn7/perks v1.0.1 go-module github.com/blang/semver v3.5.1+incompatible go-module github.com/buger/goterm v1.0.4 go-module github.com/cenkalti/backoff/v4 v4.1.2 go-module +github.com/cenkalti/backoff/v4 v4.2.0 go-module github.com/cespare/xxhash/v2 v2.1.2 go-module +github.com/cespare/xxhash/v2 v2.2.0 go-module github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module github.com/cilium/ebpf v0.7.0 go-module -github.com/cloudflare/cfssl v1.4.1 go-module -github.com/compose-spec/compose-go v1.13.5 go-module +github.com/compose-spec/compose-go v1.15.1 go-module github.com/container-orchestrated-devices/container-device-interface v0.5.4-0.20230111111500-5b3b5d81179a go-module github.com/containerd/aufs v1.0.0 go-module github.com/containerd/btrfs v1.0.0 go-module github.com/containerd/cgroups v1.0.4 go-module github.com/containerd/console v1.0.3 go-module github.com/containerd/containerd v1.6.21 go-module +github.com/containerd/containerd v1.7.2 go-module github.com/containerd/continuity v0.3.0 go-module +github.com/containerd/continuity v0.4.1 go-module github.com/containerd/fifo v1.0.0 go-module github.com/containerd/go-cni v1.1.6 go-module github.com/containerd/go-runc v1.0.0 go-module github.com/containerd/imgcrypt v1.1.4 go-module github.com/containerd/nri v0.1.0 go-module github.com/containerd/ttrpc v1.1.1 go-module +github.com/containerd/ttrpc v1.2.2 go-module github.com/containerd/typeurl v1.0.2 go-module +github.com/containerd/typeurl/v2 v2.1.1 go-module github.com/containerd/zfs v1.0.0 go-module github.com/containernetworking/cni v1.1.1 go-module github.com/containernetworking/plugins v1.1.1 go-module @@ -192,16 +199,16 @@ github.com/cpuguy83/go-md2man/v2 v2 github.com/cpuguy83/go-md2man/v2 v2.0.2 go-module github.com/cyphar/filepath-securejoin v0.2.3 go-module github.com/davecgh/go-spew v1.1.1 go-module -github.com/distribution/distribution/v3 v3.0.0-20230327091844-0c958010ace2 go-module -github.com/docker/buildx v0.10.4 go-module -github.com/docker/cli v23.0.6+incompatible go-module -github.com/docker/cli/cmd/docker v24.0.2 go-module +github.com/distribution/distribution/v3 v3.0.0-20230601133803-97b1d649c493 go-module +github.com/docker/buildx v0.11.0 go-module +github.com/docker/cli v24.0.2+incompatible go-module +github.com/docker/cli/cmd/docker v24.0.3 go-module github.com/docker/compose/v2 (devel) go-module -github.com/docker/distribution v2.8.1+incompatible go-module -github.com/docker/docker v23.0.6+incompatible go-module +github.com/docker/distribution v2.8.2+incompatible go-module +github.com/docker/docker v24.0.2+incompatible go-module github.com/docker/docker-credential-helpers v0.7.0 go-module -github.com/docker/docker/cmd/docker-proxy v24.0.2 go-module -github.com/docker/docker/cmd/dockerd v24.0.2 go-module +github.com/docker/docker/cmd/docker-proxy v24.0.3 go-module +github.com/docker/docker/cmd/dockerd v24.0.3 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module @@ -210,15 +217,19 @@ github.com/docker/go-units v0 github.com/docker/go-units v0.5.0 go-module github.com/elliotchance/orderedmap v1.4.0 go-module github.com/emicklei/go-restful v2.9.5+incompatible go-module +github.com/emicklei/go-restful/v3 v3.10.1 go-module github.com/emicklei/go-restful/v3 v3.7.3 go-module github.com/fatih/color v1.13.0 go-module -github.com/felixge/httpsnoop v1.0.2 go-module +github.com/felixge/httpsnoop v1.0.3 go-module github.com/fsnotify/fsnotify v1.4.9 go-module github.com/fsnotify/fsnotify v1.5.4 go-module github.com/fvbommel/sortorder v1.0.2 go-module github.com/go-logr/logr v1.2.2 go-module github.com/go-logr/logr v1.2.4 go-module github.com/go-logr/stdr v1.2.2 go-module +github.com/go-openapi/jsonpointer v0.19.5 go-module +github.com/go-openapi/jsonreference v0.20.0 go-module +github.com/go-openapi/swag v0.19.14 go-module github.com/goccy/go-yaml v1.9.5 go-module github.com/godbus/dbus/v5 v5.0.6 go-module github.com/gofrs/flock v0.8.1 go-module @@ -227,29 +238,34 @@ github.com/gogo/googleapis v1 github.com/gogo/protobuf v1.3.2 go-module github.com/golang/mock v1.6.0 go-module github.com/golang/protobuf v1.5.2 go-module +github.com/golang/protobuf v1.5.3 go-module +github.com/google/gnostic v0.5.7-v3refs go-module github.com/google/go-cmp v0.5.6 go-module github.com/google/go-cmp v0.5.9 go-module github.com/google/gofuzz v1.2.0 go-module github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module github.com/google/uuid v1.2.0 go-module -github.com/googleapis/gnostic v0.5.5 go-module github.com/gorilla/mux v1.8.0 go-module github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module +github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 go-module github.com/hashicorp/errwrap v1.1.0 go-module github.com/hashicorp/go-multierror v1.1.1 go-module github.com/hashicorp/go-version v1.6.0 go-module github.com/imdario/mergo v0.3.12 go-module -github.com/imdario/mergo v0.3.15 go-module +github.com/imdario/mergo v0.3.16 go-module +github.com/in-toto/in-toto-golang v0.5.0 go-module github.com/intel/goresctrl v0.2.0 go-module github.com/jinzhu/copier v0.3.5 go-module github.com/jonboulle/clockwork v0.4.0 go-module +github.com/josharian/intern v1.0.0 go-module github.com/json-iterator/go v1.1.12 go-module github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module github.com/klauspost/compress v1.11.13 go-module -github.com/klauspost/compress v1.15.12 go-module +github.com/klauspost/compress v1.16.5 go-module github.com/magiconair/properties v1.8.6 go-module +github.com/mailru/easyjson v0.7.6 go-module github.com/mattn/go-colorable v0.1.12 go-module github.com/mattn/go-colorable v0.1.13 go-module github.com/mattn/go-isatty v0.0.14 go-module @@ -262,7 +278,7 @@ github.com/miekg/pkcs11 v1 github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible go-module github.com/mitchellh/mapstructure v1.5.0 go-module -github.com/moby/buildkit v0.11.6 go-module +github.com/moby/buildkit v0.11.0-rc3.0.20230609092854-67a08623b95a go-module github.com/moby/locker v1.0.1 go-module github.com/moby/patternmatcher v0.5.0 go-module github.com/moby/spdystream v0.2.0 go-module @@ -277,11 +293,14 @@ github.com/modern-go/concurrent v0 github.com/modern-go/reflect2 v1.0.2 go-module github.com/morikuni/aec v1.0.0 go-module github.com/mrunalp/fileutils v0.5.0 go-module +github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 go-module github.com/opencontainers/go-digest v1.0.0 go-module github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module +github.com/opencontainers/image-spec v1.1.0-rc3 go-module github.com/opencontainers/runc v0.0.0-20230426214901-860f061b76bb go-module github.com/opencontainers/runc v1.1.5 go-module github.com/opencontainers/runc v1.1.6 go-module +github.com/opencontainers/runc v1.1.7 go-module github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module github.com/opencontainers/runtime-spec v1.1.0-rc.2 go-module github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module @@ -296,29 +315,32 @@ github.com/prometheus/client_golang v1 github.com/prometheus/client_model v0.2.0 go-module github.com/prometheus/client_model v0.3.0 go-module github.com/prometheus/common v0.30.0 go-module -github.com/prometheus/common v0.37.0 go-module +github.com/prometheus/common v0.42.0 go-module github.com/prometheus/procfs v0.7.3 go-module -github.com/prometheus/procfs v0.8.0 go-module +github.com/prometheus/procfs v0.9.0 go-module github.com/rivo/uniseg v0.2.0 go-module github.com/russross/blackfriday/v2 v2.0.1 go-module github.com/russross/blackfriday/v2 v2.1.0 go-module github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 go-module +github.com/secure-systems-lab/go-securesystemslib v0.4.0 go-module github.com/serialx/hashring v0.0.0-20190422032157-8b2912629002 go-module +github.com/shibumi/go-pathspec v1.3.0 go-module github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module github.com/sirupsen/logrus v1.8.1 go-module github.com/sirupsen/logrus v1.9.0 go-module +github.com/sirupsen/logrus v1.9.3 go-module github.com/spf13/cobra v1.4.0 go-module github.com/spf13/cobra v1.7.0 go-module github.com/spf13/pflag v1.0.5 go-module github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 go-module -github.com/stretchr/testify v1.8.2 go-module +github.com/stretchr/testify v1.8.4 go-module github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module github.com/tchap/go-patricia v2.2.6+incompatible go-module github.com/theupdateframework/notary v0.7.0 go-module github.com/tilt-dev/fsnotify v1.4.8-0.20220602155310-fff9c274a375 go-module github.com/timtadh/data-structures v0.5.3 go-module github.com/timtadh/lexmachine v0.2.2 go-module -github.com/tonistiigi/fsutil v0.0.0-20230105215944-fb433841cbfa go-module +github.com/tonistiigi/fsutil v0.0.0-20230407161946-9e7a6df48576 go-module github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f go-module github.com/urfave/cli v1.22.1 go-module @@ -339,57 +361,55 @@ gnupg-utils 2. go.etcd.io/bbolt v1.3.6 go-module go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.28.0 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.29.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.29.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.29.0 go-module -go.opentelemetry.io/otel v1.15.1 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.40.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.40.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.40.0 go-module +go.opentelemetry.io/otel v1.14.0 go-module go.opentelemetry.io/otel v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.14.0 go-module go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.4.1 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.14.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.4.1 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.14.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.4.1 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.14.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.4.1 go-module -go.opentelemetry.io/otel/internal/metric v0.27.0 go-module -go.opentelemetry.io/otel/metric v0.27.0 go-module +go.opentelemetry.io/otel/metric v0.37.0 go-module +go.opentelemetry.io/otel/sdk v1.14.0 go-module go.opentelemetry.io/otel/sdk v1.3.0 go-module -go.opentelemetry.io/otel/sdk v1.4.1 go-module -go.opentelemetry.io/otel/trace v1.15.1 go-module +go.opentelemetry.io/otel/trace v1.14.0 go-module go.opentelemetry.io/otel/trace v1.3.0 go-module go.opentelemetry.io/proto/otlp v0.11.0 go-module -go.opentelemetry.io/proto/otlp v0.12.0 go-module +go.opentelemetry.io/proto/otlp v0.19.0 go-module golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd go-module -golang.org/x/crypto v0.2.0 go-module +golang.org/x/crypto v0.7.0 go-module golang.org/x/mod v0.5.0 go-module golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module golang.org/x/net v0.0.0-20220722155237-a158d28d115b go-module -golang.org/x/net v0.7.0 go-module golang.org/x/net v0.8.0 go-module +golang.org/x/net v0.9.0 go-module golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f go-module -golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783 go-module +golang.org/x/oauth2 v0.7.0 go-module golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module -golang.org/x/sync v0.2.0 go-module +golang.org/x/sync v0.3.0 go-module golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f go-module -golang.org/x/sys v0.5.0 go-module golang.org/x/sys v0.6.0 go-module golang.org/x/sys v0.7.0 go-module golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 go-module -golang.org/x/term v0.5.0 go-module +golang.org/x/term v0.7.0 go-module golang.org/x/text v0.3.7 go-module -golang.org/x/text v0.7.0 go-module +golang.org/x/text v0.9.0 go-module golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module -golang.org/x/time v0.1.0 go-module +golang.org/x/time v0.3.0 go-module golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63 go-module -google.golang.org/genproto v0.0.0-20221024183307-1bc688fe9f3e go-module +google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 go-module google.golang.org/grpc v1.47.0 go-module -google.golang.org/grpc v1.50.1 go-module +google.golang.org/grpc v1.56.0 go-module google.golang.org/protobuf v1.27.1 go-module google.golang.org/protobuf v1.28.0 go-module -google.golang.org/protobuf v1.28.1 go-module +google.golang.org/protobuf v1.30.0 go-module gopkg.in/inf.v0 v0.9.1 go-module gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module gopkg.in/square/go-jose.v2 v2.5.1 go-module @@ -446,19 +466,20 @@ json-stringify-nice 1. jsonparse 1.3.1 npm just-diff 5.1.1 npm just-diff-apply 5.4.1 npm -k8s.io/api v0.22.4 go-module k8s.io/api v0.22.5 go-module -k8s.io/apimachinery v0.22.4 go-module +k8s.io/api v0.26.2 go-module k8s.io/apimachinery v0.22.5 go-module +k8s.io/apimachinery v0.26.2 go-module k8s.io/apiserver v0.22.5 go-module -k8s.io/client-go v0.22.4 go-module k8s.io/client-go v0.22.5 go-module +k8s.io/client-go v0.26.2 go-module k8s.io/component-base v0.22.5 go-module k8s.io/cri-api v0.25.0 go-module k8s.io/klog/v2 v2.30.0 go-module -k8s.io/klog/v2 v2.60.1 go-module +k8s.io/klog/v2 v2.90.1 go-module +k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 go-module k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b go-module -k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 go-module +k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 go-module kasm-wizard 0.0.1 npm libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb @@ -702,8 +723,9 @@ set-blocking 2. setprototypeof 1.2.0 npm side-channel 1.0.4 npm signal-exit 3.0.7 npm +sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 go-module sigs.k8s.io/structured-merge-diff/v4 v4.1.2 go-module -sigs.k8s.io/structured-merge-diff/v4 v4.2.1 go-module +sigs.k8s.io/structured-merge-diff/v4 v4.2.3 go-module sigs.k8s.io/yaml v1.2.0 go-module sigs.k8s.io/yaml v1.3.0 go-module smart-buffer 4.2.0 npm From 1dcb34824e497339e07e6f873ba983037c351a3c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Jul 2023 19:38:30 +0000 Subject: [PATCH 123/337] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e199b3c..ff8db80 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.4.0 npm +@types/node 20.4.1 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -108,8 +108,8 @@ diff 5. diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb distro-info-data 0.52ubuntu0.4 deb -docker-ce 5:24.0.3-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:24.0.3-1~ubuntu.22.04~jammy deb +docker-ce 5:24.0.4-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:24.0.4-1~ubuntu.22.04~jammy deb docker-compose-plugin 2.19.1-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm @@ -202,13 +202,13 @@ github.com/davecgh/go-spew v1 github.com/distribution/distribution/v3 v3.0.0-20230601133803-97b1d649c493 go-module github.com/docker/buildx v0.11.0 go-module github.com/docker/cli v24.0.2+incompatible go-module -github.com/docker/cli/cmd/docker v24.0.3 go-module +github.com/docker/cli/cmd/docker v24.0.4 go-module github.com/docker/compose/v2 (devel) go-module github.com/docker/distribution v2.8.2+incompatible go-module github.com/docker/docker v24.0.2+incompatible go-module github.com/docker/docker-credential-helpers v0.7.0 go-module -github.com/docker/docker/cmd/docker-proxy v24.0.3 go-module -github.com/docker/docker/cmd/dockerd v24.0.3 go-module +github.com/docker/docker/cmd/docker-proxy v24.0.4 go-module +github.com/docker/docker/cmd/dockerd v24.0.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module From 92ea47518d29e823a75b00183e2af222c55728b7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 12 Jul 2023 19:38:31 +0000 Subject: [PATCH 124/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ff8db80..4ebed83 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -747,7 +747,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.18.6 npm +systeminformation 5.18.7 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From 53109f2b6961a602a8e8de87c27be98c7de056d5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 13 Jul 2023 02:20:32 +0000 Subject: [PATCH 125/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4ebed83..43840f2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.4.1 npm +@types/node 20.4.2 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 20542ccf48ebc2062567c12e31a1f0b9f46f5ab2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 18 Jul 2023 21:43:54 +0000 Subject: [PATCH 126/337] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 43840f2..cb613cb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -147,7 +147,7 @@ github.com/BurntSushi/toml v1 github.com/Masterminds/semver/v3 v3.2.1 go-module github.com/Microsoft/hcsshim v0.9.8 go-module github.com/NVIDIA/go-nvml v0.12.0-0 go-module -github.com/NVIDIA/nvidia-container-toolkit v1.13.3 go-module +github.com/NVIDIA/nvidia-container-toolkit v1.13.4 go-module github.com/a8m/envsubst v1.3.0 go-module github.com/aws/aws-sdk-go-v2 v1.17.6 go-module github.com/aws/aws-sdk-go-v2/config v1.18.16 go-module @@ -556,8 +556,8 @@ libnpmteam 4. libnpmversion 3.0.7 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.13.3-1 deb -libnvidia-container1 1.13.3-1 deb +libnvidia-container-tools 1.13.4-1 deb +libnvidia-container1 1.13.4-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.3 deb @@ -663,8 +663,8 @@ npm-profile 6. npm-registry-fetch 13.3.1 npm npm-user-validate 1.0.1 npm npmlog 6.0.2 npm -nvidia-container-toolkit 1.13.3-1 deb -nvidia-container-toolkit-base 1.13.3-1 deb +nvidia-container-toolkit 1.13.4-1 deb +nvidia-container-toolkit-base 1.13.4-1 deb nvidia-docker2 2.13.0-1 deb object-assign 4.1.1 npm object-inspect 1.12.3 npm From 468bcb512283645d1664e5332240a38380c6a754 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 20 Jul 2023 01:52:16 +0000 Subject: [PATCH 127/337] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index cb613cb..35cc683 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -147,7 +147,7 @@ github.com/BurntSushi/toml v1 github.com/Masterminds/semver/v3 v3.2.1 go-module github.com/Microsoft/hcsshim v0.9.8 go-module github.com/NVIDIA/go-nvml v0.12.0-0 go-module -github.com/NVIDIA/nvidia-container-toolkit v1.13.4 go-module +github.com/NVIDIA/nvidia-container-toolkit v1.13.5 go-module github.com/a8m/envsubst v1.3.0 go-module github.com/aws/aws-sdk-go-v2 v1.17.6 go-module github.com/aws/aws-sdk-go-v2/config v1.18.16 go-module @@ -556,8 +556,8 @@ libnpmteam 4. libnpmversion 3.0.7 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.13.4-1 deb -libnvidia-container1 1.13.4-1 deb +libnvidia-container-tools 1.13.5-1 deb +libnvidia-container1 1.13.5-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.3 deb @@ -663,8 +663,8 @@ npm-profile 6. npm-registry-fetch 13.3.1 npm npm-user-validate 1.0.1 npm npmlog 6.0.2 npm -nvidia-container-toolkit 1.13.4-1 deb -nvidia-container-toolkit-base 1.13.4-1 deb +nvidia-container-toolkit 1.13.5-1 deb +nvidia-container-toolkit-base 1.13.5-1 deb nvidia-docker2 2.13.0-1 deb object-assign 4.1.1 npm object-inspect 1.12.3 npm From c5d0ee973ee504e4d4472042c35fe5269f9d83b0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 24 Jul 2023 17:39:55 +0000 Subject: [PATCH 128/337] Bot Updating Package Versions --- package_versions.txt | 1568 +++++++++++++++++++++--------------------- 1 file changed, 784 insertions(+), 784 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 35cc683..cc663f8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,784 +1,784 @@ -NAME VERSION TYPE -1to2 1.0.0 npm -@balena/dockerignore 1.0.2 npm -@colors/colors 1.5.0 npm -@gar/promisify 1.1.3 npm -@isaacs/string-locale-compare 1.1.0 npm -@npmcli/arborist 5.6.3 npm -@npmcli/ci-detect 2.0.0 npm -@npmcli/config 4.2.2 npm -@npmcli/disparity-colors 2.0.0 npm -@npmcli/fs 2.1.2 npm -@npmcli/git 3.0.2 npm -@npmcli/installed-package-contents 1.0.7 npm -@npmcli/map-workspaces 2.0.4 npm -@npmcli/metavuln-calculator 3.1.1 npm -@npmcli/move-file 2.0.1 npm -@npmcli/name-from-folder 1.0.1 npm -@npmcli/node-gyp 2.0.0 npm -@npmcli/package-json 2.0.0 npm -@npmcli/promise-spawn 3.0.0 npm -@npmcli/query 1.2.0 npm -@npmcli/run-script 4.2.1 npm -@socket.io/component-emitter 3.1.0 npm -@tootallnate/once 2.0.0 npm -@types/cookie 0.4.1 npm -@types/cors 2.8.13 npm -@types/node 20.4.2 npm -abbrev 1.1.1 npm -accepts 1.3.8 npm -adduser 3.118ubuntu5 deb -agent-base 6.0.2 npm -agentkeepalive 4.2.1 npm -aggregate-error 3.1.0 npm -ansi-regex 5.0.1 npm -ansi-styles 4.3.0 npm -aproba 2.0.0 npm -apt 2.4.9 deb -apt-utils 2.4.9 deb -archy 1.0.0 npm -are-we-there-yet 3.0.1 npm -argparse 2.0.1 npm -array-flatten 1.1.1 npm -asap 2.0.6 npm -asn1 0.2.6 npm -balanced-match 1.0.2 npm -base-files 12ubuntu4.3 deb -base-passwd 3.5.52build1 deb -base64-js 1.5.1 npm -base64id 2.0.0 npm -bash 5.1-6ubuntu1 deb -bcrypt-pbkdf 1.0.2 npm -bin-links 3.0.3 npm -binary-extensions 2.2.0 npm -bl 4.1.0 npm -body-parser 1.20.1 npm -brace-expansion 1.1.11 npm -brace-expansion 2.0.1 npm -bsdutils 1:2.37.2-4ubuntu3 deb -btrfs-progs 5.16.2-1 deb -buffer 5.7.1 npm -buildcheck 0.0.6 npm -builtins 5.0.1 npm -bytes 3.1.2 npm -ca-certificates 20230311ubuntu0.22.04.1 deb -cacache 16.1.3 npm -call-bind 1.0.2 npm -chalk 4.1.2 npm -chownr 1.1.4 npm -chownr 2.0.0 npm -cidr-regex 3.1.1 npm -clean-stack 2.2.0 npm -cli-columns 4.0.0 npm -cli-table3 0.6.2 npm -clone 1.0.4 npm -cmd-shim 5.0.0 npm -color-convert 2.0.1 npm -color-name 1.1.4 npm -color-support 1.1.3 npm -columnify 1.6.0 npm -common-ancestor-path 1.0.1 npm -concat-map 0.0.1 npm -console-control-strings 1.1.0 npm -containerd.io 1.6.21-1 deb -content-disposition 0.5.4 npm -content-type 1.0.5 npm -cookie 0.4.2 npm -cookie 0.5.0 npm -cookie-signature 1.0.6 npm -corepack 0.17.0 npm -coreutils 8.32-4.1ubuntu1 deb -cors 2.8.5 npm -cpu-features 0.0.8 npm -cssesc 3.0.0 npm -curl 7.81.0-1ubuntu1.10 deb -dash 0.5.11+git20210903+057cd650a4ed-3build1 deb -debconf 1.5.79ubuntu1 deb -debianutils 5.5-1ubuntu2 deb -debug 2.6.9 npm -debug 4.3.4 npm -debuglog 1.0.1 npm -defaults 1.0.3 npm -delegates 1.0.0 npm -depd 1.1.2 npm -depd 2.0.0 npm -destroy 1.2.0 npm -dezalgo 1.0.4 npm -diff 5.1.0 npm -diffutils 1:3.8-0ubuntu2 deb -dirmngr 2.2.27-3ubuntu2.1 deb -distro-info-data 0.52ubuntu0.4 deb -docker-ce 5:24.0.4-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:24.0.4-1~ubuntu.22.04~jammy deb -docker-compose-plugin 2.19.1-1~ubuntu.22.04~jammy deb -docker-modem 3.0.8 npm -dockerode 3.3.5 npm -dpkg 1.21.1ubuntu2.2 deb -drm-info 2.2.0-2 deb -e2fsprogs 1.46.5-2ubuntu1.1 deb -ee-first 1.1.1 npm -emoji-regex 8.0.0 npm -encodeurl 1.0.2 npm -encoding 0.1.13 npm -end-of-stream 1.4.4 npm -engine.io 6.5.1 npm -engine.io-parser 5.1.0 npm -env-paths 2.2.1 npm -err-code 2.0.3 npm -escape-html 1.0.3 npm -etag 1.8.1 npm -express 4.18.2 npm -fastest-levenshtein 1.0.12 npm -finalhandler 1.2.0 npm -findutils 4.8.0-1ubuntu3 deb -forwarded 0.2.0 npm -fresh 0.5.2 npm -fs-constants 1.0.0 npm -fs-minipass 2.1.0 npm -fs.realpath 1.0.0 npm -function-bind 1.1.1 npm -fuse-overlayfs 1.7.1-1 deb -fuse3 3.10.5-1build1 deb -gauge 4.0.4 npm -gcc-12-base 12.1.0-2ubuntu1~22.04 deb -get-intrinsic 1.2.1 npm -github.com/AlecAivazis/survey/v2 v2.3.7 go-module -github.com/BurntSushi/toml v1.2.1 go-module -github.com/Masterminds/semver/v3 v3.2.1 go-module -github.com/Microsoft/hcsshim v0.9.8 go-module -github.com/NVIDIA/go-nvml v0.12.0-0 go-module -github.com/NVIDIA/nvidia-container-toolkit v1.13.5 go-module -github.com/a8m/envsubst v1.3.0 go-module -github.com/aws/aws-sdk-go-v2 v1.17.6 go-module -github.com/aws/aws-sdk-go-v2/config v1.18.16 go-module -github.com/aws/aws-sdk-go-v2/credentials v1.13.16 go-module -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.24 go-module -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.30 go-module -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.24 go-module -github.com/aws/aws-sdk-go-v2/internal/ini v1.3.31 go-module -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.24 go-module -github.com/aws/aws-sdk-go-v2/service/sso v1.12.5 go-module -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.5 go-module -github.com/aws/aws-sdk-go-v2/service/sts v1.18.6 go-module -github.com/aws/smithy-go v1.13.5 go-module -github.com/beorn7/perks v1.0.1 go-module -github.com/blang/semver v3.5.1+incompatible go-module -github.com/buger/goterm v1.0.4 go-module -github.com/cenkalti/backoff/v4 v4.1.2 go-module -github.com/cenkalti/backoff/v4 v4.2.0 go-module -github.com/cespare/xxhash/v2 v2.1.2 go-module -github.com/cespare/xxhash/v2 v2.2.0 go-module -github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module -github.com/cilium/ebpf v0.7.0 go-module -github.com/compose-spec/compose-go v1.15.1 go-module -github.com/container-orchestrated-devices/container-device-interface v0.5.4-0.20230111111500-5b3b5d81179a go-module -github.com/containerd/aufs v1.0.0 go-module -github.com/containerd/btrfs v1.0.0 go-module -github.com/containerd/cgroups v1.0.4 go-module -github.com/containerd/console v1.0.3 go-module -github.com/containerd/containerd v1.6.21 go-module -github.com/containerd/containerd v1.7.2 go-module -github.com/containerd/continuity v0.3.0 go-module -github.com/containerd/continuity v0.4.1 go-module -github.com/containerd/fifo v1.0.0 go-module -github.com/containerd/go-cni v1.1.6 go-module -github.com/containerd/go-runc v1.0.0 go-module -github.com/containerd/imgcrypt v1.1.4 go-module -github.com/containerd/nri v0.1.0 go-module -github.com/containerd/ttrpc v1.1.1 go-module -github.com/containerd/ttrpc v1.2.2 go-module -github.com/containerd/typeurl v1.0.2 go-module -github.com/containerd/typeurl/v2 v2.1.1 go-module -github.com/containerd/zfs v1.0.0 go-module -github.com/containernetworking/cni v1.1.1 go-module -github.com/containernetworking/plugins v1.1.1 go-module -github.com/containers/ocicrypt v1.1.3 go-module -github.com/coreos/go-systemd/v22 v22.3.2 go-module -github.com/cpuguy83/go-md2man/v2 v2.0.0 go-module -github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module -github.com/cpuguy83/go-md2man/v2 v2.0.2 go-module -github.com/cyphar/filepath-securejoin v0.2.3 go-module -github.com/davecgh/go-spew v1.1.1 go-module -github.com/distribution/distribution/v3 v3.0.0-20230601133803-97b1d649c493 go-module -github.com/docker/buildx v0.11.0 go-module -github.com/docker/cli v24.0.2+incompatible go-module -github.com/docker/cli/cmd/docker v24.0.4 go-module -github.com/docker/compose/v2 (devel) go-module -github.com/docker/distribution v2.8.2+incompatible go-module -github.com/docker/docker v24.0.2+incompatible go-module -github.com/docker/docker-credential-helpers v0.7.0 go-module -github.com/docker/docker/cmd/docker-proxy v24.0.4 go-module -github.com/docker/docker/cmd/dockerd v24.0.4 go-module -github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module -github.com/docker/go-connections v0.4.0 go-module -github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module -github.com/docker/go-metrics v0.0.1 go-module -github.com/docker/go-units v0.4.0 go-module -github.com/docker/go-units v0.5.0 go-module -github.com/elliotchance/orderedmap v1.4.0 go-module -github.com/emicklei/go-restful v2.9.5+incompatible go-module -github.com/emicklei/go-restful/v3 v3.10.1 go-module -github.com/emicklei/go-restful/v3 v3.7.3 go-module -github.com/fatih/color v1.13.0 go-module -github.com/felixge/httpsnoop v1.0.3 go-module -github.com/fsnotify/fsnotify v1.4.9 go-module -github.com/fsnotify/fsnotify v1.5.4 go-module -github.com/fvbommel/sortorder v1.0.2 go-module -github.com/go-logr/logr v1.2.2 go-module -github.com/go-logr/logr v1.2.4 go-module -github.com/go-logr/stdr v1.2.2 go-module -github.com/go-openapi/jsonpointer v0.19.5 go-module -github.com/go-openapi/jsonreference v0.20.0 go-module -github.com/go-openapi/swag v0.19.14 go-module -github.com/goccy/go-yaml v1.9.5 go-module -github.com/godbus/dbus/v5 v5.0.6 go-module -github.com/gofrs/flock v0.8.1 go-module -github.com/gogo/googleapis v1.3.2 go-module -github.com/gogo/googleapis v1.4.1 go-module -github.com/gogo/protobuf v1.3.2 go-module -github.com/golang/mock v1.6.0 go-module -github.com/golang/protobuf v1.5.2 go-module -github.com/golang/protobuf v1.5.3 go-module -github.com/google/gnostic v0.5.7-v3refs go-module -github.com/google/go-cmp v0.5.6 go-module -github.com/google/go-cmp v0.5.9 go-module -github.com/google/gofuzz v1.2.0 go-module -github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module -github.com/google/uuid v1.2.0 go-module -github.com/gorilla/mux v1.8.0 go-module -github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module -github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module -github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module -github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 go-module -github.com/hashicorp/errwrap v1.1.0 go-module -github.com/hashicorp/go-multierror v1.1.1 go-module -github.com/hashicorp/go-version v1.6.0 go-module -github.com/imdario/mergo v0.3.12 go-module -github.com/imdario/mergo v0.3.16 go-module -github.com/in-toto/in-toto-golang v0.5.0 go-module -github.com/intel/goresctrl v0.2.0 go-module -github.com/jinzhu/copier v0.3.5 go-module -github.com/jonboulle/clockwork v0.4.0 go-module -github.com/josharian/intern v1.0.0 go-module -github.com/json-iterator/go v1.1.12 go-module -github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module -github.com/klauspost/compress v1.11.13 go-module -github.com/klauspost/compress v1.16.5 go-module -github.com/magiconair/properties v1.8.6 go-module -github.com/mailru/easyjson v0.7.6 go-module -github.com/mattn/go-colorable v0.1.12 go-module -github.com/mattn/go-colorable v0.1.13 go-module -github.com/mattn/go-isatty v0.0.14 go-module -github.com/mattn/go-isatty v0.0.17 go-module -github.com/mattn/go-runewidth v0.0.14 go-module -github.com/mattn/go-shellwords v1.0.12 go-module -github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module -github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module -github.com/miekg/pkcs11 v1.1.1 go-module -github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module -github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible go-module -github.com/mitchellh/mapstructure v1.5.0 go-module -github.com/moby/buildkit v0.11.0-rc3.0.20230609092854-67a08623b95a go-module -github.com/moby/locker v1.0.1 go-module -github.com/moby/patternmatcher v0.5.0 go-module -github.com/moby/spdystream v0.2.0 go-module -github.com/moby/sys/mountinfo v0.5.0 go-module -github.com/moby/sys/mountinfo v0.6.2 go-module -github.com/moby/sys/sequential v0.5.0 go-module -github.com/moby/sys/signal v0.6.0 go-module -github.com/moby/sys/signal v0.7.0 go-module -github.com/moby/sys/symlink v0.2.0 go-module -github.com/moby/term v0.5.0 go-module -github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module -github.com/modern-go/reflect2 v1.0.2 go-module -github.com/morikuni/aec v1.0.0 go-module -github.com/mrunalp/fileutils v0.5.0 go-module -github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 go-module -github.com/opencontainers/go-digest v1.0.0 go-module -github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module -github.com/opencontainers/image-spec v1.1.0-rc3 go-module -github.com/opencontainers/runc v0.0.0-20230426214901-860f061b76bb go-module -github.com/opencontainers/runc v1.1.5 go-module -github.com/opencontainers/runc v1.1.6 go-module -github.com/opencontainers/runc v1.1.7 go-module -github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module -github.com/opencontainers/runtime-spec v1.1.0-rc.2 go-module -github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module -github.com/opencontainers/selinux v1.10.0 go-module -github.com/opencontainers/selinux v1.10.1 go-module -github.com/pelletier/go-toml v1.9.4 go-module -github.com/pelletier/go-toml v1.9.5 go-module -github.com/pkg/errors v0.9.1 go-module -github.com/pmezard/go-difflib v1.0.0 go-module -github.com/prometheus/client_golang v1.11.1 go-module -github.com/prometheus/client_golang v1.14.0 go-module -github.com/prometheus/client_model v0.2.0 go-module -github.com/prometheus/client_model v0.3.0 go-module -github.com/prometheus/common v0.30.0 go-module -github.com/prometheus/common v0.42.0 go-module -github.com/prometheus/procfs v0.7.3 go-module -github.com/prometheus/procfs v0.9.0 go-module -github.com/rivo/uniseg v0.2.0 go-module -github.com/russross/blackfriday/v2 v2.0.1 go-module -github.com/russross/blackfriday/v2 v2.1.0 go-module -github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 go-module -github.com/secure-systems-lab/go-securesystemslib v0.4.0 go-module -github.com/serialx/hashring v0.0.0-20190422032157-8b2912629002 go-module -github.com/shibumi/go-pathspec v1.3.0 go-module -github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module -github.com/sirupsen/logrus v1.8.1 go-module -github.com/sirupsen/logrus v1.9.0 go-module -github.com/sirupsen/logrus v1.9.3 go-module -github.com/spf13/cobra v1.4.0 go-module -github.com/spf13/cobra v1.7.0 go-module -github.com/spf13/pflag v1.0.5 go-module -github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 go-module -github.com/stretchr/testify v1.8.4 go-module -github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module -github.com/tchap/go-patricia v2.2.6+incompatible go-module -github.com/theupdateframework/notary v0.7.0 go-module -github.com/tilt-dev/fsnotify v1.4.8-0.20220602155310-fff9c274a375 go-module -github.com/timtadh/data-structures v0.5.3 go-module -github.com/timtadh/lexmachine v0.2.2 go-module -github.com/tonistiigi/fsutil v0.0.0-20230407161946-9e7a6df48576 go-module -github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module -github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f go-module -github.com/urfave/cli v1.22.1 go-module -github.com/urfave/cli/v2 v2.3.0 go-module -github.com/vishvananda/netlink v1.1.0 go-module -github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5 go-module -github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df go-module -github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f go-module -github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb go-module -github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module -github.com/xeipuuv/gojsonschema v1.2.0 go-module -gitlab.com/nvidia/cloud-native/go-nvlib v0.0.0-20230209143738-95328d8c4438 go-module -glob 7.2.3 npm -glob 8.0.3 npm -gnupg 2.2.27-3ubuntu2.1 deb -gnupg-l10n 2.2.27-3ubuntu2.1 deb -gnupg-utils 2.2.27-3ubuntu2.1 deb -go.etcd.io/bbolt v1.3.6 go-module -go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.28.0 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.40.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.40.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.40.0 go-module -go.opentelemetry.io/otel v1.14.0 go-module -go.opentelemetry.io/otel v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.14.0 go-module -go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.14.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.14.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.14.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.3.0 go-module -go.opentelemetry.io/otel/metric v0.37.0 go-module -go.opentelemetry.io/otel/sdk v1.14.0 go-module -go.opentelemetry.io/otel/sdk v1.3.0 go-module -go.opentelemetry.io/otel/trace v1.14.0 go-module -go.opentelemetry.io/otel/trace v1.3.0 go-module -go.opentelemetry.io/proto/otlp v0.11.0 go-module -go.opentelemetry.io/proto/otlp v0.19.0 go-module -golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd go-module -golang.org/x/crypto v0.7.0 go-module -golang.org/x/mod v0.5.0 go-module -golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module -golang.org/x/net v0.0.0-20220722155237-a158d28d115b go-module -golang.org/x/net v0.8.0 go-module -golang.org/x/net v0.9.0 go-module -golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f go-module -golang.org/x/oauth2 v0.7.0 go-module -golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module -golang.org/x/sync v0.3.0 go-module -golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module -golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f go-module -golang.org/x/sys v0.6.0 go-module -golang.org/x/sys v0.7.0 go-module -golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 go-module -golang.org/x/term v0.7.0 go-module -golang.org/x/text v0.3.7 go-module -golang.org/x/text v0.9.0 go-module -golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module -golang.org/x/time v0.3.0 go-module -golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module -google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63 go-module -google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 go-module -google.golang.org/grpc v1.47.0 go-module -google.golang.org/grpc v1.56.0 go-module -google.golang.org/protobuf v1.27.1 go-module -google.golang.org/protobuf v1.28.0 go-module -google.golang.org/protobuf v1.30.0 go-module -gopkg.in/inf.v0 v0.9.1 go-module -gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module -gopkg.in/square/go-jose.v2 v2.5.1 go-module -gopkg.in/yaml.v2 v2.4.0 go-module -gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b go-module -gopkg.in/yaml.v3 v3.0.1 go-module -gpg 2.2.27-3ubuntu2.1 deb -gpg-agent 2.2.27-3ubuntu2.1 deb -gpg-wks-client 2.2.27-3ubuntu2.1 deb -gpg-wks-server 2.2.27-3ubuntu2.1 deb -gpgconf 2.2.27-3ubuntu2.1 deb -gpgsm 2.2.27-3ubuntu2.1 deb -gpgv 2.2.27-3ubuntu2.1 deb -graceful-fs 4.2.10 npm -grep 3.7-1build1 deb -gzip 1.10-4ubuntu4.1 deb -has 1.0.3 npm -has-flag 4.0.0 npm -has-proto 1.0.1 npm -has-symbols 1.0.3 npm -has-unicode 2.0.1 npm -hosted-git-info 5.2.1 npm -hostname 3.23ubuntu2 deb -http-cache-semantics 4.1.1 npm -http-errors 2.0.0 npm -http-proxy-agent 5.0.0 npm -https-proxy-agent 5.0.1 npm -humanize-ms 1.2.1 npm -iconv-lite 0.4.24 npm -iconv-lite 0.6.3 npm -ieee754 1.2.1 npm -ignore-walk 5.0.1 npm -imurmurhash 0.1.4 npm -indent-string 4.0.0 npm -infer-owner 1.0.4 npm -inflight 1.0.6 npm -inherits 2.0.4 npm -ini 3.0.1 npm -init-package-json 3.0.2 npm -init-system-helpers 1.62 deb -ip 2.0.0 npm -ip-regex 4.3.0 npm -ipaddr.js 1.9.1 npm -iptables 1.8.7-1ubuntu5.1 deb -is-cidr 4.0.2 npm -is-core-module 2.10.0 npm -is-fullwidth-code-point 3.0.0 npm -is-lambda 1.0.1 npm -isexe 2.0.0 npm -jq 1.6-2.1ubuntu3 deb -js-yaml 4.1.0 npm -json-parse-even-better-errors 2.3.1 npm -json-stringify-nice 1.1.4 npm -jsonparse 1.3.1 npm -just-diff 5.1.1 npm -just-diff-apply 5.4.1 npm -k8s.io/api v0.22.5 go-module -k8s.io/api v0.26.2 go-module -k8s.io/apimachinery v0.22.5 go-module -k8s.io/apimachinery v0.26.2 go-module -k8s.io/apiserver v0.22.5 go-module -k8s.io/client-go v0.22.5 go-module -k8s.io/client-go v0.26.2 go-module -k8s.io/component-base v0.22.5 go-module -k8s.io/cri-api v0.25.0 go-module -k8s.io/klog/v2 v2.30.0 go-module -k8s.io/klog/v2 v2.90.1 go-module -k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 go-module -k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b go-module -k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 go-module -kasm-wizard 0.0.1 npm -libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.9 deb -libassuan0 2.5.5-1build1 deb -libattr1 1:2.5.1-1build1 deb -libaudit-common 1:3.0.7-1build1 deb -libaudit1 1:3.0.7-1build1 deb -libblkid1 2.37.2-4ubuntu3 deb -libbrotli1 1.0.9-2build6 deb -libbsd0 0.11.5-1 deb -libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.1 deb -libc6 2.35-0ubuntu3.1 deb -libcap-ng0 0.7.9-2.2build3 deb -libcap2 1:2.44-1ubuntu0.22.04.1 deb -libcom-err2 1.46.5-2ubuntu1.1 deb -libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.10 deb -libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb -libdebconfclient0 0.261ubuntu1 deb -libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb -libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb -libdrm2 2.4.113-2~ubuntu0.22.04.1 deb -libedit2 3.1-20210910-1build1 deb -libexpat1 2.4.7-1ubuntu0.2 deb -libext2fs2 1.46.5-2ubuntu1.1 deb -libffi8 3.4.2-4 deb -libfuse3-3 3.10.5-1build1 deb -libgcc-s1 12.1.0-2ubuntu1~22.04 deb -libgcrypt20 1.9.4-3ubuntu3 deb -libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.2 deb -libgpg-error0 1.43-3 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb -libhogweed6 3.7.3-1build2 deb -libicu70 70.1-2 deb -libidn2-0 2.3.2-2build1 deb -libinih1 53-1ubuntu3 deb -libip4tc2 1.8.7-1ubuntu5.1 deb -libip6tc2 1.8.7-1ubuntu5.1 deb -libjq1 1.6-2.1ubuntu3 deb -libjson-c5 0.15-3~ubuntu1.22.04.1 deb -libk5crypto3 1.19.2-2ubuntu0.2 deb -libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.2 deb -libkrb5support0 1.19.2-2ubuntu0.2 deb -libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.2 deb -libldap-common 2.5.14+dfsg-0ubuntu0.22.04.2 deb -liblz4-1 1.9.3-2build2 deb -liblzma5 5.2.5-2ubuntu1 deb -liblzo2-2 2.10-2build3 deb -libmd0 1.0.4-1build1 deb -libmnl0 1.0.4-3build2 deb -libmount1 2.37.2-4ubuntu3 deb -libmpdec3 2.5.1-2build2 deb -libncurses6 6.3-2ubuntu0.1 deb -libncursesw6 6.3-2ubuntu0.1 deb -libnetfilter-conntrack3 1.0.9-1 deb -libnettle8 3.7.3-1build2 deb -libnfnetlink0 1.0.1-3build3 deb -libnftnl11 1.2.1-1build1 deb -libnghttp2-14 1.43.0-1build3 deb -libnpmaccess 6.0.4 npm -libnpmdiff 4.0.5 npm -libnpmexec 4.0.14 npm -libnpmfund 3.0.5 npm -libnpmhook 8.0.4 npm -libnpmorg 4.0.4 npm -libnpmpack 4.1.3 npm -libnpmpublish 6.0.5 npm -libnpmsearch 5.0.4 npm -libnpmteam 4.0.4 npm -libnpmversion 3.0.7 npm -libnpth0 1.6-3build2 deb -libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.13.5-1 deb -libnvidia-container1 1.13.5-1 deb -libonig5 6.9.7.1-2build1 deb -libp11-kit0 0.24.0-6build1 deb -libpam-modules 1.4.0-11ubuntu2.3 deb -libpam-modules-bin 1.4.0-11ubuntu2.3 deb -libpam-runtime 1.4.0-11ubuntu2.3 deb -libpam0g 1.4.0-11ubuntu2.3 deb -libpcre2-8-0 10.39-3ubuntu0.1 deb -libpcre3 2:8.39-13ubuntu0.22.04.1 deb -libprocps8 2:3.3.17-6ubuntu2 deb -libpsl5 0.21.0-1.2build2 deb -libpython3-stdlib 3.10.6-1~22.04 deb -libpython3.10-minimal 3.10.6-1~22.04.2ubuntu1.1 deb -libpython3.10-stdlib 3.10.6-1~22.04.2ubuntu1.1 deb -libreadline8 8.1.2-1 deb -librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb -libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libseccomp2 2.5.3-2ubuntu2 deb -libselinux1 3.3-1build2 deb -libsemanage-common 3.3-1build2 deb -libsemanage2 3.3-1build2 deb -libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3 deb -libsqlite3-0 3.37.2-2ubuntu0.1 deb -libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2ubuntu0.22.04.1 deb -libssl3 3.0.2-0ubuntu1.10 deb -libstdc++6 12.1.0-2ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.9 deb -libtasn1-6 4.18.0-4build1 deb -libtinfo6 6.3-2ubuntu0.1 deb -libtirpc-common 1.3.2-2ubuntu0.1 deb -libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.9 deb -libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3 deb -libxtables12 1.8.7-1ubuntu5.1 deb -libxxhash0 0.8.1-1 deb -libzstd1 1.4.8+dfsg-3build1 deb -locales 2.35-0ubuntu3.1 deb -lodash 4.17.21 npm -login 1:4.8.1-2ubuntu2.1 deb -logsave 1.46.5-2ubuntu1.1 deb -lru-cache 6.0.0 npm -lru-cache 7.13.2 npm -lsb-base 11.1.0ubuntu4 deb -lsb-release 11.1.0ubuntu4 deb -lsof 4.93.2+dfsg-1.1build2 deb -make-fetch-happen 10.2.1 npm -mawk 1.3.4.20200120-3 deb -media-typer 0.3.0 npm -media-types 7.0.0 deb -merge-descriptors 1.0.1 npm -methods 1.1.2 npm -mime 1.6.0 npm -mime-db 1.52.0 npm -mime-types 2.1.35 npm -minimatch 3.1.2 npm -minimatch 5.1.0 npm -minipass 3.3.4 npm -minipass-collect 1.0.2 npm -minipass-fetch 2.1.1 npm -minipass-flush 1.0.5 npm -minipass-json-stream 1.0.1 npm -minipass-pipeline 1.2.4 npm -minipass-sized 1.0.3 npm -minizlib 2.1.2 npm -mkdirp 1.0.4 npm -mkdirp-classic 0.5.3 npm -mkdirp-infer-owner 2.0.0 npm -mount 2.37.2-4ubuntu3 deb -ms 2.0.0 npm -ms 2.1.2 npm -ms 2.1.3 npm -mute-stream 0.0.8 npm -nan 2.17.0 npm -ncurses-base 6.3-2ubuntu0.1 deb -ncurses-bin 6.3-2ubuntu0.1 deb -negotiator 0.6.3 npm -netbase 6.3 deb -netcat 1.218-4ubuntu1 deb -netcat-openbsd 1.218-4ubuntu1 deb -node 16.20.1 binary -node-gyp 9.1.0 npm -node-pty 0.10.1 npm -nodejs 16.20.1-deb-1nodesource1 deb -nopt 5.0.0 npm -nopt 6.0.0 npm -normalize-package-data 4.0.1 npm -npm 8.19.4 npm -npm-audit-report 3.0.0 npm -npm-bundled 1.1.2 npm -npm-bundled 2.0.1 npm -npm-init 0.0.0 npm -npm-install-checks 5.0.0 npm -npm-normalize-package-bin 1.0.1 npm -npm-normalize-package-bin 2.0.0 npm -npm-package-arg 9.1.0 npm -npm-packlist 5.1.3 npm -npm-pick-manifest 7.0.2 npm -npm-profile 6.2.1 npm -npm-registry-fetch 13.3.1 npm -npm-user-validate 1.0.1 npm -npmlog 6.0.2 npm -nvidia-container-toolkit 1.13.5-1 deb -nvidia-container-toolkit-base 1.13.5-1 deb -nvidia-docker2 2.13.0-1 deb -object-assign 4.1.1 npm -object-inspect 1.12.3 npm -on-finished 2.4.1 npm -once 1.4.0 npm -opener 1.5.2 npm -openssl 3.0.2-0ubuntu1.10 deb -p-map 4.0.0 npm -pacote 13.6.2 npm -parse-conflict-json 2.0.2 npm -parseurl 1.3.3 npm -passwd 1:4.8.1-2ubuntu2.1 deb -path-is-absolute 1.0.1 npm -path-to-regexp 0.1.7 npm -perl-base 5.34.0-3ubuntu1.2 deb -pigz 2.6-1 deb -pinentry-curses 1.1.1-1build2 deb -postcss-selector-parser 6.0.10 npm -proc-log 2.0.1 npm -procps 2:3.3.17-6ubuntu2 deb -promise-all-reject-late 1.0.1 npm -promise-call-limit 1.0.1 npm -promise-inflight 1.0.1 npm -promise-retry 2.0.1 npm -promzard 0.3.0 npm -proxy-addr 2.0.7 npm -publicsuffix 20211207.1025-1 deb -pump 3.0.0 npm -python 3.10.6 binary -python3 3.10.6-1~22.04 deb -python3-minimal 3.10.6-1~22.04 deb -python3.10 3.10.6-1~22.04.2ubuntu1.1 deb -python3.10-minimal 3.10.6-1~22.04.2ubuntu1.1 deb -qrcode-terminal 0.12.0 npm -qs 6.11.0 npm -range-parser 1.2.1 npm -raw-body 2.5.1 npm -read 1.0.7 npm -read-cmd-shim 3.0.0 npm -read-package-json 5.0.2 npm -read-package-json-fast 2.0.3 npm -readable-stream 3.6.0 npm -readable-stream 3.6.2 npm -readdir-scoped-modules 1.1.0 npm -readline-common 8.1.2-1 deb -retry 0.12.0 npm -rimraf 3.0.2 npm -safe-buffer 5.2.1 npm -safer-buffer 2.1.2 npm -sed 4.8-1ubuntu2 deb -semver 7.3.7 npm -send 0.18.0 npm -sensible-utils 0.0.17 deb -serve-static 1.15.0 npm -set-blocking 2.0.0 npm -setprototypeof 1.2.0 npm -side-channel 1.0.4 npm -signal-exit 3.0.7 npm -sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 go-module -sigs.k8s.io/structured-merge-diff/v4 v4.1.2 go-module -sigs.k8s.io/structured-merge-diff/v4 v4.2.3 go-module -sigs.k8s.io/yaml v1.2.0 go-module -sigs.k8s.io/yaml v1.3.0 go-module -smart-buffer 4.2.0 npm -socket.io 4.7.1 npm -socket.io-adapter 2.5.2 npm -socket.io-parser 4.2.4 npm -socks 2.7.0 npm -socks-proxy-agent 7.0.0 npm -spdx-correct 3.1.1 npm -spdx-exceptions 2.3.0 npm -spdx-expression-parse 3.0.1 npm -spdx-license-ids 3.0.11 npm -split-ca 1.0.1 npm -ssh2 1.14.0 npm -ssri 9.0.1 npm -statuses 2.0.1 npm -string-width 4.2.3 npm -string_decoder 1.3.0 npm -strip-ansi 6.0.1 npm -sudo 1.9.9-1ubuntu2.4 deb -supports-color 7.2.0 npm -systeminformation 5.18.7 npm -sysvinit-utils 3.01-1ubuntu1 deb -tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tar 6.1.11 npm -tar-fs 2.0.1 npm -tar-stream 2.2.0 npm -text-table 0.2.0 npm -tiny-relative-date 1.3.0 npm -toidentifier 1.0.1 npm -treeverse 2.0.0 npm -tweetnacl 0.14.5 npm -type-is 1.6.18 npm -tzdata 2023c-0ubuntu0.22.04.2 deb -ubuntu-keyring 2021.03.26 deb -uidmap 1:4.8.1-2ubuntu2.1 deb -unique-filename 2.0.1 npm -unique-slug 3.0.0 npm -unpipe 1.0.0 npm -usrmerge 25ubuntu2 deb -util-deprecate 1.0.2 npm -util-linux 2.37.2-4ubuntu3 deb -utils-merge 1.0.1 npm -validate-npm-package-license 3.0.4 npm -validate-npm-package-name 4.0.0 npm -vary 1.1.2 npm -walk-up-path 1.0.0 npm -wcwidth 1.0.1 npm -which 2.0.2 npm -wide-align 1.1.5 npm -wrappy 1.0.2 npm -write-file-atomic 4.0.2 npm -ws 8.11.0 npm -xfsprogs 5.13.0-1ubuntu2 deb -yallist 4.0.0 npm -zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb +NAME VERSION TYPE +1to2 1.0.0 npm +@balena/dockerignore 1.0.2 npm +@colors/colors 1.5.0 npm +@gar/promisify 1.1.3 npm +@isaacs/string-locale-compare 1.1.0 npm +@npmcli/arborist 5.6.3 npm +@npmcli/ci-detect 2.0.0 npm +@npmcli/config 4.2.2 npm +@npmcli/disparity-colors 2.0.0 npm +@npmcli/fs 2.1.2 npm +@npmcli/git 3.0.2 npm +@npmcli/installed-package-contents 1.0.7 npm +@npmcli/map-workspaces 2.0.4 npm +@npmcli/metavuln-calculator 3.1.1 npm +@npmcli/move-file 2.0.1 npm +@npmcli/name-from-folder 1.0.1 npm +@npmcli/node-gyp 2.0.0 npm +@npmcli/package-json 2.0.0 npm +@npmcli/promise-spawn 3.0.0 npm +@npmcli/query 1.2.0 npm +@npmcli/run-script 4.2.1 npm +@socket.io/component-emitter 3.1.0 npm +@tootallnate/once 2.0.0 npm +@types/cookie 0.4.1 npm +@types/cors 2.8.13 npm +@types/node 20.4.4 npm +abbrev 1.1.1 npm +accepts 1.3.8 npm +adduser 3.118ubuntu5 deb +agent-base 6.0.2 npm +agentkeepalive 4.2.1 npm +aggregate-error 3.1.0 npm +ansi-regex 5.0.1 npm +ansi-styles 4.3.0 npm +aproba 2.0.0 npm +apt 2.4.9 deb +apt-utils 2.4.9 deb +archy 1.0.0 npm +are-we-there-yet 3.0.1 npm +argparse 2.0.1 npm +array-flatten 1.1.1 npm +asap 2.0.6 npm +asn1 0.2.6 npm +balanced-match 1.0.2 npm +base-files 12ubuntu4.3 deb +base-passwd 3.5.52build1 deb +base64-js 1.5.1 npm +base64id 2.0.0 npm +bash 5.1-6ubuntu1 deb +bcrypt-pbkdf 1.0.2 npm +bin-links 3.0.3 npm +binary-extensions 2.2.0 npm +bl 4.1.0 npm +body-parser 1.20.1 npm +brace-expansion 1.1.11 npm +brace-expansion 2.0.1 npm +bsdutils 1:2.37.2-4ubuntu3 deb +btrfs-progs 5.16.2-1 deb +buffer 5.7.1 npm +buildcheck 0.0.6 npm +builtins 5.0.1 npm +bytes 3.1.2 npm +ca-certificates 20230311ubuntu0.22.04.1 deb +cacache 16.1.3 npm +call-bind 1.0.2 npm +chalk 4.1.2 npm +chownr 1.1.4 npm +chownr 2.0.0 npm +cidr-regex 3.1.1 npm +clean-stack 2.2.0 npm +cli-columns 4.0.0 npm +cli-table3 0.6.2 npm +clone 1.0.4 npm +cmd-shim 5.0.0 npm +color-convert 2.0.1 npm +color-name 1.1.4 npm +color-support 1.1.3 npm +columnify 1.6.0 npm +common-ancestor-path 1.0.1 npm +concat-map 0.0.1 npm +console-control-strings 1.1.0 npm +containerd.io 1.6.21-1 deb +content-disposition 0.5.4 npm +content-type 1.0.5 npm +cookie 0.4.2 npm +cookie 0.5.0 npm +cookie-signature 1.0.6 npm +corepack 0.17.0 npm +coreutils 8.32-4.1ubuntu1 deb +cors 2.8.5 npm +cpu-features 0.0.8 npm +cssesc 3.0.0 npm +curl 7.81.0-1ubuntu1.10 deb +dash 0.5.11+git20210903+057cd650a4ed-3build1 deb +debconf 1.5.79ubuntu1 deb +debianutils 5.5-1ubuntu2 deb +debug 2.6.9 npm +debug 4.3.4 npm +debuglog 1.0.1 npm +defaults 1.0.3 npm +delegates 1.0.0 npm +depd 1.1.2 npm +depd 2.0.0 npm +destroy 1.2.0 npm +dezalgo 1.0.4 npm +diff 5.1.0 npm +diffutils 1:3.8-0ubuntu2 deb +dirmngr 2.2.27-3ubuntu2.1 deb +distro-info-data 0.52ubuntu0.4 deb +docker-ce 5:24.0.5-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:24.0.5-1~ubuntu.22.04~jammy deb +docker-compose-plugin 2.20.2-1~ubuntu.22.04~jammy deb +docker-modem 3.0.8 npm +dockerode 3.3.5 npm +dpkg 1.21.1ubuntu2.2 deb +drm-info 2.2.0-2 deb +e2fsprogs 1.46.5-2ubuntu1.1 deb +ee-first 1.1.1 npm +emoji-regex 8.0.0 npm +encodeurl 1.0.2 npm +encoding 0.1.13 npm +end-of-stream 1.4.4 npm +engine.io 6.5.1 npm +engine.io-parser 5.1.0 npm +env-paths 2.2.1 npm +err-code 2.0.3 npm +escape-html 1.0.3 npm +etag 1.8.1 npm +express 4.18.2 npm +fastest-levenshtein 1.0.12 npm +finalhandler 1.2.0 npm +findutils 4.8.0-1ubuntu3 deb +forwarded 0.2.0 npm +fresh 0.5.2 npm +fs-constants 1.0.0 npm +fs-minipass 2.1.0 npm +fs.realpath 1.0.0 npm +function-bind 1.1.1 npm +fuse-overlayfs 1.7.1-1 deb +fuse3 3.10.5-1build1 deb +gauge 4.0.4 npm +gcc-12-base 12.1.0-2ubuntu1~22.04 deb +get-intrinsic 1.2.1 npm +github.com/AlecAivazis/survey/v2 v2.3.7 go-module +github.com/BurntSushi/toml v1.2.1 go-module +github.com/Masterminds/semver/v3 v3.2.1 go-module +github.com/Microsoft/hcsshim v0.9.8 go-module +github.com/NVIDIA/go-nvml v0.12.0-0 go-module +github.com/NVIDIA/nvidia-container-toolkit v1.13.5 go-module +github.com/a8m/envsubst v1.3.0 go-module +github.com/aws/aws-sdk-go-v2 v1.17.6 go-module +github.com/aws/aws-sdk-go-v2/config v1.18.16 go-module +github.com/aws/aws-sdk-go-v2/credentials v1.13.16 go-module +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.24 go-module +github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.30 go-module +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.24 go-module +github.com/aws/aws-sdk-go-v2/internal/ini v1.3.31 go-module +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.24 go-module +github.com/aws/aws-sdk-go-v2/service/sso v1.12.5 go-module +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.5 go-module +github.com/aws/aws-sdk-go-v2/service/sts v1.18.6 go-module +github.com/aws/smithy-go v1.13.5 go-module +github.com/beorn7/perks v1.0.1 go-module +github.com/blang/semver v3.5.1+incompatible go-module +github.com/buger/goterm v1.0.4 go-module +github.com/cenkalti/backoff/v4 v4.1.2 go-module +github.com/cenkalti/backoff/v4 v4.2.0 go-module +github.com/cespare/xxhash/v2 v2.1.2 go-module +github.com/cespare/xxhash/v2 v2.2.0 go-module +github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module +github.com/cilium/ebpf v0.7.0 go-module +github.com/compose-spec/compose-go v1.17.0 go-module +github.com/container-orchestrated-devices/container-device-interface v0.5.4-0.20230111111500-5b3b5d81179a go-module +github.com/containerd/aufs v1.0.0 go-module +github.com/containerd/btrfs v1.0.0 go-module +github.com/containerd/cgroups v1.0.4 go-module +github.com/containerd/console v1.0.3 go-module +github.com/containerd/containerd v1.6.21 go-module +github.com/containerd/containerd v1.7.2 go-module +github.com/containerd/continuity v0.3.0 go-module +github.com/containerd/continuity v0.4.1 go-module +github.com/containerd/fifo v1.0.0 go-module +github.com/containerd/go-cni v1.1.6 go-module +github.com/containerd/go-runc v1.0.0 go-module +github.com/containerd/imgcrypt v1.1.4 go-module +github.com/containerd/nri v0.1.0 go-module +github.com/containerd/ttrpc v1.1.1 go-module +github.com/containerd/typeurl v1.0.2 go-module +github.com/containerd/typeurl/v2 v2.1.1 go-module +github.com/containerd/zfs v1.0.0 go-module +github.com/containernetworking/cni v1.1.1 go-module +github.com/containernetworking/plugins v1.1.1 go-module +github.com/containers/ocicrypt v1.1.3 go-module +github.com/coreos/go-systemd/v22 v22.3.2 go-module +github.com/cpuguy83/go-md2man/v2 v2.0.0 go-module +github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module +github.com/cpuguy83/go-md2man/v2 v2.0.2 go-module +github.com/cyphar/filepath-securejoin v0.2.3 go-module +github.com/davecgh/go-spew v1.1.1 go-module +github.com/distribution/distribution/v3 v3.0.0-20230601133803-97b1d649c493 go-module +github.com/docker/buildx v0.11.2 go-module +github.com/docker/cli v24.0.4+incompatible go-module +github.com/docker/cli/cmd/docker v24.0.5 go-module +github.com/docker/compose/v2 (devel) go-module +github.com/docker/distribution v2.8.2+incompatible go-module +github.com/docker/docker v24.0.5-0.20230714235725-36e9e796c6fc+incompatible go-module +github.com/docker/docker-credential-helpers v0.7.0 go-module +github.com/docker/docker/cmd/docker-proxy v24.0.5 go-module +github.com/docker/docker/cmd/dockerd v24.0.5 go-module +github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module +github.com/docker/go-connections v0.4.0 go-module +github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module +github.com/docker/go-metrics v0.0.1 go-module +github.com/docker/go-units v0.4.0 go-module +github.com/docker/go-units v0.5.0 go-module +github.com/elliotchance/orderedmap v1.4.0 go-module +github.com/emicklei/go-restful v2.9.5+incompatible go-module +github.com/emicklei/go-restful/v3 v3.10.1 go-module +github.com/emicklei/go-restful/v3 v3.7.3 go-module +github.com/fatih/color v1.13.0 go-module +github.com/felixge/httpsnoop v1.0.3 go-module +github.com/fsnotify/fsnotify v1.4.9 go-module +github.com/fsnotify/fsnotify v1.5.4 go-module +github.com/fvbommel/sortorder v1.0.2 go-module +github.com/go-logr/logr v1.2.2 go-module +github.com/go-logr/logr v1.2.4 go-module +github.com/go-logr/stdr v1.2.2 go-module +github.com/go-openapi/jsonpointer v0.19.5 go-module +github.com/go-openapi/jsonreference v0.20.0 go-module +github.com/go-openapi/swag v0.19.14 go-module +github.com/goccy/go-yaml v1.9.5 go-module +github.com/godbus/dbus/v5 v5.0.6 go-module +github.com/gofrs/flock v0.8.1 go-module +github.com/gogo/googleapis v1.3.2 go-module +github.com/gogo/googleapis v1.4.1 go-module +github.com/gogo/protobuf v1.3.2 go-module +github.com/golang/mock v1.6.0 go-module +github.com/golang/protobuf v1.5.2 go-module +github.com/golang/protobuf v1.5.3 go-module +github.com/google/gnostic v0.5.7-v3refs go-module +github.com/google/go-cmp v0.5.6 go-module +github.com/google/go-cmp v0.5.9 go-module +github.com/google/gofuzz v1.2.0 go-module +github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module +github.com/google/uuid v1.2.0 go-module +github.com/gorilla/mux v1.8.0 go-module +github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module +github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module +github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module +github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 go-module +github.com/hashicorp/errwrap v1.1.0 go-module +github.com/hashicorp/go-multierror v1.1.1 go-module +github.com/hashicorp/go-version v1.6.0 go-module +github.com/imdario/mergo v0.3.12 go-module +github.com/imdario/mergo v0.3.16 go-module +github.com/in-toto/in-toto-golang v0.5.0 go-module +github.com/intel/goresctrl v0.2.0 go-module +github.com/jinzhu/copier v0.3.5 go-module +github.com/jonboulle/clockwork v0.4.0 go-module +github.com/josharian/intern v1.0.0 go-module +github.com/json-iterator/go v1.1.12 go-module +github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module +github.com/klauspost/compress v1.11.13 go-module +github.com/klauspost/compress v1.16.5 go-module +github.com/magiconair/properties v1.8.6 go-module +github.com/mailru/easyjson v0.7.6 go-module +github.com/mattn/go-colorable v0.1.12 go-module +github.com/mattn/go-colorable v0.1.13 go-module +github.com/mattn/go-isatty v0.0.14 go-module +github.com/mattn/go-isatty v0.0.17 go-module +github.com/mattn/go-runewidth v0.0.14 go-module +github.com/mattn/go-shellwords v1.0.12 go-module +github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module +github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module +github.com/miekg/pkcs11 v1.1.1 go-module +github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module +github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible go-module +github.com/mitchellh/mapstructure v1.5.0 go-module +github.com/moby/buildkit v0.12.1-0.20230717122532-faa0cc7da353 go-module +github.com/moby/locker v1.0.1 go-module +github.com/moby/patternmatcher v0.5.0 go-module +github.com/moby/spdystream v0.2.0 go-module +github.com/moby/sys/mountinfo v0.5.0 go-module +github.com/moby/sys/mountinfo v0.6.2 go-module +github.com/moby/sys/sequential v0.5.0 go-module +github.com/moby/sys/signal v0.6.0 go-module +github.com/moby/sys/signal v0.7.0 go-module +github.com/moby/sys/symlink v0.2.0 go-module +github.com/moby/term v0.5.0 go-module +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module +github.com/modern-go/reflect2 v1.0.2 go-module +github.com/morikuni/aec v1.0.0 go-module +github.com/mrunalp/fileutils v0.5.0 go-module +github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 go-module +github.com/opencontainers/go-digest v1.0.0 go-module +github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module +github.com/opencontainers/image-spec v1.1.0-rc4 go-module +github.com/opencontainers/runc v0.0.0-20230426214901-860f061b76bb go-module +github.com/opencontainers/runc v1.1.5 go-module +github.com/opencontainers/runc v1.1.6 go-module +github.com/opencontainers/runc v1.1.7 go-module +github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module +github.com/opencontainers/runtime-spec v1.1.0-rc.2 go-module +github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module +github.com/opencontainers/selinux v1.10.0 go-module +github.com/opencontainers/selinux v1.10.1 go-module +github.com/pelletier/go-toml v1.9.4 go-module +github.com/pelletier/go-toml v1.9.5 go-module +github.com/pkg/errors v0.9.1 go-module +github.com/pmezard/go-difflib v1.0.0 go-module +github.com/prometheus/client_golang v1.11.1 go-module +github.com/prometheus/client_golang v1.14.0 go-module +github.com/prometheus/client_model v0.2.0 go-module +github.com/prometheus/client_model v0.3.0 go-module +github.com/prometheus/common v0.30.0 go-module +github.com/prometheus/common v0.42.0 go-module +github.com/prometheus/procfs v0.7.3 go-module +github.com/prometheus/procfs v0.9.0 go-module +github.com/rivo/uniseg v0.2.0 go-module +github.com/russross/blackfriday/v2 v2.0.1 go-module +github.com/russross/blackfriday/v2 v2.1.0 go-module +github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 go-module +github.com/secure-systems-lab/go-securesystemslib v0.4.0 go-module +github.com/serialx/hashring v0.0.0-20190422032157-8b2912629002 go-module +github.com/shibumi/go-pathspec v1.3.0 go-module +github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module +github.com/sirupsen/logrus v1.8.1 go-module +github.com/sirupsen/logrus v1.9.0 go-module +github.com/sirupsen/logrus v1.9.3 go-module +github.com/spf13/cobra v1.4.0 go-module +github.com/spf13/cobra v1.7.0 go-module +github.com/spf13/pflag v1.0.5 go-module +github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 go-module +github.com/stretchr/testify v1.8.4 go-module +github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module +github.com/tchap/go-patricia v2.2.6+incompatible go-module +github.com/theupdateframework/notary v0.7.0 go-module +github.com/tilt-dev/fsnotify v1.4.8-0.20220602155310-fff9c274a375 go-module +github.com/timtadh/data-structures v0.5.3 go-module +github.com/timtadh/lexmachine v0.2.2 go-module +github.com/tonistiigi/fsutil v0.0.0-20230629203738-36ef4d8c0dbb go-module +github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module +github.com/tonistiigi/vt100 v0.0.0-20230623042737-f9a4f7ef6531 go-module +github.com/urfave/cli v1.22.1 go-module +github.com/urfave/cli/v2 v2.3.0 go-module +github.com/vishvananda/netlink v1.1.0 go-module +github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5 go-module +github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df go-module +github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f go-module +github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb go-module +github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module +github.com/xeipuuv/gojsonschema v1.2.0 go-module +gitlab.com/nvidia/cloud-native/go-nvlib v0.0.0-20230209143738-95328d8c4438 go-module +glob 7.2.3 npm +glob 8.0.3 npm +gnupg 2.2.27-3ubuntu2.1 deb +gnupg-l10n 2.2.27-3ubuntu2.1 deb +gnupg-utils 2.2.27-3ubuntu2.1 deb +go.etcd.io/bbolt v1.3.6 go-module +go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.28.0 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.40.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.40.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.40.0 go-module +go.opentelemetry.io/otel v1.14.0 go-module +go.opentelemetry.io/otel v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.14.0 go-module +go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.14.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.14.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.14.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.3.0 go-module +go.opentelemetry.io/otel/metric v0.37.0 go-module +go.opentelemetry.io/otel/sdk v1.14.0 go-module +go.opentelemetry.io/otel/sdk v1.3.0 go-module +go.opentelemetry.io/otel/trace v1.14.0 go-module +go.opentelemetry.io/otel/trace v1.3.0 go-module +go.opentelemetry.io/proto/otlp v0.11.0 go-module +go.opentelemetry.io/proto/otlp v0.19.0 go-module +golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd go-module +golang.org/x/crypto v0.7.0 go-module +golang.org/x/exp v0.0.0-20230713183714-613f0c0eb8a1 go-module +golang.org/x/mod v0.5.0 go-module +golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module +golang.org/x/net v0.0.0-20220722155237-a158d28d115b go-module +golang.org/x/net v0.8.0 go-module +golang.org/x/net v0.9.0 go-module +golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f go-module +golang.org/x/oauth2 v0.7.0 go-module +golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module +golang.org/x/sync v0.3.0 go-module +golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module +golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f go-module +golang.org/x/sys v0.6.0 go-module +golang.org/x/sys v0.7.0 go-module +golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 go-module +golang.org/x/term v0.7.0 go-module +golang.org/x/text v0.3.7 go-module +golang.org/x/text v0.9.0 go-module +golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module +golang.org/x/time v0.3.0 go-module +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module +google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63 go-module +google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 go-module +google.golang.org/grpc v1.47.0 go-module +google.golang.org/grpc v1.56.2 go-module +google.golang.org/protobuf v1.27.1 go-module +google.golang.org/protobuf v1.28.0 go-module +google.golang.org/protobuf v1.30.0 go-module +gopkg.in/inf.v0 v0.9.1 go-module +gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module +gopkg.in/square/go-jose.v2 v2.5.1 go-module +gopkg.in/yaml.v2 v2.4.0 go-module +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b go-module +gopkg.in/yaml.v3 v3.0.1 go-module +gpg 2.2.27-3ubuntu2.1 deb +gpg-agent 2.2.27-3ubuntu2.1 deb +gpg-wks-client 2.2.27-3ubuntu2.1 deb +gpg-wks-server 2.2.27-3ubuntu2.1 deb +gpgconf 2.2.27-3ubuntu2.1 deb +gpgsm 2.2.27-3ubuntu2.1 deb +gpgv 2.2.27-3ubuntu2.1 deb +graceful-fs 4.2.10 npm +grep 3.7-1build1 deb +gzip 1.10-4ubuntu4.1 deb +has 1.0.3 npm +has-flag 4.0.0 npm +has-proto 1.0.1 npm +has-symbols 1.0.3 npm +has-unicode 2.0.1 npm +hosted-git-info 5.2.1 npm +hostname 3.23ubuntu2 deb +http-cache-semantics 4.1.1 npm +http-errors 2.0.0 npm +http-proxy-agent 5.0.0 npm +https-proxy-agent 5.0.1 npm +humanize-ms 1.2.1 npm +iconv-lite 0.4.24 npm +iconv-lite 0.6.3 npm +ieee754 1.2.1 npm +ignore-walk 5.0.1 npm +imurmurhash 0.1.4 npm +indent-string 4.0.0 npm +infer-owner 1.0.4 npm +inflight 1.0.6 npm +inherits 2.0.4 npm +ini 3.0.1 npm +init-package-json 3.0.2 npm +init-system-helpers 1.62 deb +ip 2.0.0 npm +ip-regex 4.3.0 npm +ipaddr.js 1.9.1 npm +iptables 1.8.7-1ubuntu5.1 deb +is-cidr 4.0.2 npm +is-core-module 2.10.0 npm +is-fullwidth-code-point 3.0.0 npm +is-lambda 1.0.1 npm +isexe 2.0.0 npm +jq 1.6-2.1ubuntu3 deb +js-yaml 4.1.0 npm +json-parse-even-better-errors 2.3.1 npm +json-stringify-nice 1.1.4 npm +jsonparse 1.3.1 npm +just-diff 5.1.1 npm +just-diff-apply 5.4.1 npm +k8s.io/api v0.22.5 go-module +k8s.io/api v0.26.2 go-module +k8s.io/apimachinery v0.22.5 go-module +k8s.io/apimachinery v0.26.2 go-module +k8s.io/apiserver v0.22.5 go-module +k8s.io/client-go v0.22.5 go-module +k8s.io/client-go v0.26.2 go-module +k8s.io/component-base v0.22.5 go-module +k8s.io/cri-api v0.25.0 go-module +k8s.io/klog/v2 v2.30.0 go-module +k8s.io/klog/v2 v2.90.1 go-module +k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 go-module +k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b go-module +k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 go-module +kasm-wizard 0.0.1 npm +libacl1 2.3.1-1 deb +libapt-pkg6.0 2.4.9 deb +libassuan0 2.5.5-1build1 deb +libattr1 1:2.5.1-1build1 deb +libaudit-common 1:3.0.7-1build1 deb +libaudit1 1:3.0.7-1build1 deb +libblkid1 2.37.2-4ubuntu3 deb +libbrotli1 1.0.9-2build6 deb +libbsd0 0.11.5-1 deb +libbz2-1.0 1.0.8-5build1 deb +libc-bin 2.35-0ubuntu3.1 deb +libc6 2.35-0ubuntu3.1 deb +libcap-ng0 0.7.9-2.2build3 deb +libcap2 1:2.44-1ubuntu0.22.04.1 deb +libcom-err2 1.46.5-2ubuntu1.1 deb +libcrypt1 1:4.4.27-1 deb +libcurl4 7.81.0-1ubuntu1.10 deb +libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb +libdebconfclient0 0.261ubuntu1 deb +libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb +libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb +libdrm2 2.4.113-2~ubuntu0.22.04.1 deb +libedit2 3.1-20210910-1build1 deb +libexpat1 2.4.7-1ubuntu0.2 deb +libext2fs2 1.46.5-2ubuntu1.1 deb +libffi8 3.4.2-4 deb +libfuse3-3 3.10.5-1build1 deb +libgcc-s1 12.1.0-2ubuntu1~22.04 deb +libgcrypt20 1.9.4-3ubuntu3 deb +libgmp10 2:6.2.1+dfsg-3ubuntu1 deb +libgnutls30 3.7.3-4ubuntu1.2 deb +libgpg-error0 1.43-3 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb +libhogweed6 3.7.3-1build2 deb +libicu70 70.1-2 deb +libidn2-0 2.3.2-2build1 deb +libinih1 53-1ubuntu3 deb +libip4tc2 1.8.7-1ubuntu5.1 deb +libip6tc2 1.8.7-1ubuntu5.1 deb +libjq1 1.6-2.1ubuntu3 deb +libjson-c5 0.15-3~ubuntu1.22.04.1 deb +libk5crypto3 1.19.2-2ubuntu0.2 deb +libkeyutils1 1.6.1-2ubuntu3 deb +libkrb5-3 1.19.2-2ubuntu0.2 deb +libkrb5support0 1.19.2-2ubuntu0.2 deb +libksba8 1.6.0-2ubuntu0.2 deb +libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.2 deb +libldap-common 2.5.14+dfsg-0ubuntu0.22.04.2 deb +liblz4-1 1.9.3-2build2 deb +liblzma5 5.2.5-2ubuntu1 deb +liblzo2-2 2.10-2build3 deb +libmd0 1.0.4-1build1 deb +libmnl0 1.0.4-3build2 deb +libmount1 2.37.2-4ubuntu3 deb +libmpdec3 2.5.1-2build2 deb +libncurses6 6.3-2ubuntu0.1 deb +libncursesw6 6.3-2ubuntu0.1 deb +libnetfilter-conntrack3 1.0.9-1 deb +libnettle8 3.7.3-1build2 deb +libnfnetlink0 1.0.1-3build3 deb +libnftnl11 1.2.1-1build1 deb +libnghttp2-14 1.43.0-1build3 deb +libnpmaccess 6.0.4 npm +libnpmdiff 4.0.5 npm +libnpmexec 4.0.14 npm +libnpmfund 3.0.5 npm +libnpmhook 8.0.4 npm +libnpmorg 4.0.4 npm +libnpmpack 4.1.3 npm +libnpmpublish 6.0.5 npm +libnpmsearch 5.0.4 npm +libnpmteam 4.0.4 npm +libnpmversion 3.0.7 npm +libnpth0 1.6-3build2 deb +libnsl2 1.3.0-2build2 deb +libnvidia-container-tools 1.13.5-1 deb +libnvidia-container1 1.13.5-1 deb +libonig5 6.9.7.1-2build1 deb +libp11-kit0 0.24.0-6build1 deb +libpam-modules 1.4.0-11ubuntu2.3 deb +libpam-modules-bin 1.4.0-11ubuntu2.3 deb +libpam-runtime 1.4.0-11ubuntu2.3 deb +libpam0g 1.4.0-11ubuntu2.3 deb +libpcre2-8-0 10.39-3ubuntu0.1 deb +libpcre3 2:8.39-13ubuntu0.22.04.1 deb +libprocps8 2:3.3.17-6ubuntu2 deb +libpsl5 0.21.0-1.2build2 deb +libpython3-stdlib 3.10.6-1~22.04 deb +libpython3.10-minimal 3.10.6-1~22.04.2ubuntu1.1 deb +libpython3.10-stdlib 3.10.6-1~22.04.2ubuntu1.1 deb +libreadline8 8.1.2-1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb +libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb +libseccomp2 2.5.3-2ubuntu2 deb +libselinux1 3.3-1build2 deb +libsemanage-common 3.3-1build2 deb +libsemanage2 3.3-1build2 deb +libsepol2 3.3-1build1 deb +libsmartcols1 2.37.2-4ubuntu3 deb +libsqlite3-0 3.37.2-2ubuntu0.1 deb +libss2 1.46.5-2ubuntu1.1 deb +libssh-4 0.9.6-2ubuntu0.22.04.1 deb +libssl3 3.0.2-0ubuntu1.10 deb +libstdc++6 12.1.0-2ubuntu1~22.04 deb +libsystemd0 249.11-0ubuntu3.9 deb +libtasn1-6 4.18.0-4build1 deb +libtinfo6 6.3-2ubuntu0.1 deb +libtirpc-common 1.3.2-2ubuntu0.1 deb +libtirpc3 1.3.2-2ubuntu0.1 deb +libudev1 249.11-0ubuntu3.9 deb +libunistring2 1.0-1 deb +libuuid1 2.37.2-4ubuntu3 deb +libxtables12 1.8.7-1ubuntu5.1 deb +libxxhash0 0.8.1-1 deb +libzstd1 1.4.8+dfsg-3build1 deb +locales 2.35-0ubuntu3.1 deb +lodash 4.17.21 npm +login 1:4.8.1-2ubuntu2.1 deb +logsave 1.46.5-2ubuntu1.1 deb +lru-cache 6.0.0 npm +lru-cache 7.13.2 npm +lsb-base 11.1.0ubuntu4 deb +lsb-release 11.1.0ubuntu4 deb +lsof 4.93.2+dfsg-1.1build2 deb +make-fetch-happen 10.2.1 npm +mawk 1.3.4.20200120-3 deb +media-typer 0.3.0 npm +media-types 7.0.0 deb +merge-descriptors 1.0.1 npm +methods 1.1.2 npm +mime 1.6.0 npm +mime-db 1.52.0 npm +mime-types 2.1.35 npm +minimatch 3.1.2 npm +minimatch 5.1.0 npm +minipass 3.3.4 npm +minipass-collect 1.0.2 npm +minipass-fetch 2.1.1 npm +minipass-flush 1.0.5 npm +minipass-json-stream 1.0.1 npm +minipass-pipeline 1.2.4 npm +minipass-sized 1.0.3 npm +minizlib 2.1.2 npm +mkdirp 1.0.4 npm +mkdirp-classic 0.5.3 npm +mkdirp-infer-owner 2.0.0 npm +mount 2.37.2-4ubuntu3 deb +ms 2.0.0 npm +ms 2.1.2 npm +ms 2.1.3 npm +mute-stream 0.0.8 npm +nan 2.17.0 npm +ncurses-base 6.3-2ubuntu0.1 deb +ncurses-bin 6.3-2ubuntu0.1 deb +negotiator 0.6.3 npm +netbase 6.3 deb +netcat 1.218-4ubuntu1 deb +netcat-openbsd 1.218-4ubuntu1 deb +node 16.20.1 binary +node-gyp 9.1.0 npm +node-pty 0.10.1 npm +nodejs 16.20.1-deb-1nodesource1 deb +nopt 5.0.0 npm +nopt 6.0.0 npm +normalize-package-data 4.0.1 npm +npm 8.19.4 npm +npm-audit-report 3.0.0 npm +npm-bundled 1.1.2 npm +npm-bundled 2.0.1 npm +npm-init 0.0.0 npm +npm-install-checks 5.0.0 npm +npm-normalize-package-bin 1.0.1 npm +npm-normalize-package-bin 2.0.0 npm +npm-package-arg 9.1.0 npm +npm-packlist 5.1.3 npm +npm-pick-manifest 7.0.2 npm +npm-profile 6.2.1 npm +npm-registry-fetch 13.3.1 npm +npm-user-validate 1.0.1 npm +npmlog 6.0.2 npm +nvidia-container-toolkit 1.13.5-1 deb +nvidia-container-toolkit-base 1.13.5-1 deb +nvidia-docker2 2.13.0-1 deb +object-assign 4.1.1 npm +object-inspect 1.12.3 npm +on-finished 2.4.1 npm +once 1.4.0 npm +opener 1.5.2 npm +openssl 3.0.2-0ubuntu1.10 deb +p-map 4.0.0 npm +pacote 13.6.2 npm +parse-conflict-json 2.0.2 npm +parseurl 1.3.3 npm +passwd 1:4.8.1-2ubuntu2.1 deb +path-is-absolute 1.0.1 npm +path-to-regexp 0.1.7 npm +perl-base 5.34.0-3ubuntu1.2 deb +pigz 2.6-1 deb +pinentry-curses 1.1.1-1build2 deb +postcss-selector-parser 6.0.10 npm +proc-log 2.0.1 npm +procps 2:3.3.17-6ubuntu2 deb +promise-all-reject-late 1.0.1 npm +promise-call-limit 1.0.1 npm +promise-inflight 1.0.1 npm +promise-retry 2.0.1 npm +promzard 0.3.0 npm +proxy-addr 2.0.7 npm +publicsuffix 20211207.1025-1 deb +pump 3.0.0 npm +python 3.10.6 binary +python3 3.10.6-1~22.04 deb +python3-minimal 3.10.6-1~22.04 deb +python3.10 3.10.6-1~22.04.2ubuntu1.1 deb +python3.10-minimal 3.10.6-1~22.04.2ubuntu1.1 deb +qrcode-terminal 0.12.0 npm +qs 6.11.0 npm +range-parser 1.2.1 npm +raw-body 2.5.1 npm +read 1.0.7 npm +read-cmd-shim 3.0.0 npm +read-package-json 5.0.2 npm +read-package-json-fast 2.0.3 npm +readable-stream 3.6.0 npm +readable-stream 3.6.2 npm +readdir-scoped-modules 1.1.0 npm +readline-common 8.1.2-1 deb +retry 0.12.0 npm +rimraf 3.0.2 npm +safe-buffer 5.2.1 npm +safer-buffer 2.1.2 npm +sed 4.8-1ubuntu2 deb +semver 7.3.7 npm +send 0.18.0 npm +sensible-utils 0.0.17 deb +serve-static 1.15.0 npm +set-blocking 2.0.0 npm +setprototypeof 1.2.0 npm +side-channel 1.0.4 npm +signal-exit 3.0.7 npm +sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 go-module +sigs.k8s.io/structured-merge-diff/v4 v4.1.2 go-module +sigs.k8s.io/structured-merge-diff/v4 v4.2.3 go-module +sigs.k8s.io/yaml v1.2.0 go-module +sigs.k8s.io/yaml v1.3.0 go-module +smart-buffer 4.2.0 npm +socket.io 4.7.1 npm +socket.io-adapter 2.5.2 npm +socket.io-parser 4.2.4 npm +socks 2.7.0 npm +socks-proxy-agent 7.0.0 npm +spdx-correct 3.1.1 npm +spdx-exceptions 2.3.0 npm +spdx-expression-parse 3.0.1 npm +spdx-license-ids 3.0.11 npm +split-ca 1.0.1 npm +ssh2 1.14.0 npm +ssri 9.0.1 npm +statuses 2.0.1 npm +string-width 4.2.3 npm +string_decoder 1.3.0 npm +strip-ansi 6.0.1 npm +sudo 1.9.9-1ubuntu2.4 deb +supports-color 7.2.0 npm +systeminformation 5.18.7 npm +sysvinit-utils 3.01-1ubuntu1 deb +tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb +tar 6.1.11 npm +tar-fs 2.0.1 npm +tar-stream 2.2.0 npm +text-table 0.2.0 npm +tiny-relative-date 1.3.0 npm +toidentifier 1.0.1 npm +treeverse 2.0.0 npm +tweetnacl 0.14.5 npm +type-is 1.6.18 npm +tzdata 2023c-0ubuntu0.22.04.2 deb +ubuntu-keyring 2021.03.26 deb +uidmap 1:4.8.1-2ubuntu2.1 deb +unique-filename 2.0.1 npm +unique-slug 3.0.0 npm +unpipe 1.0.0 npm +usrmerge 25ubuntu2 deb +util-deprecate 1.0.2 npm +util-linux 2.37.2-4ubuntu3 deb +utils-merge 1.0.1 npm +validate-npm-package-license 3.0.4 npm +validate-npm-package-name 4.0.0 npm +vary 1.1.2 npm +walk-up-path 1.0.0 npm +wcwidth 1.0.1 npm +which 2.0.2 npm +wide-align 1.1.5 npm +wrappy 1.0.2 npm +write-file-atomic 4.0.2 npm +ws 8.11.0 npm +xfsprogs 5.13.0-1ubuntu2 deb +yallist 4.0.0 npm +zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From 33a6592ce31672476d872f1093195d5abdd5ba0c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 25 Jul 2023 21:43:48 +0000 Subject: [PATCH 129/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index cc663f8..2f23117 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.4.4 npm +@types/node 20.4.5 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -747,7 +747,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.18.7 npm +systeminformation 5.18.8 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From 84bb44665f764129df4d9d3702f3d30b0fd6dffd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 26 Jul 2023 04:38:15 +0000 Subject: [PATCH 130/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2f23117..5c0ff02 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -91,7 +91,7 @@ coreutils 8. cors 2.8.5 npm cpu-features 0.0.8 npm cssesc 3.0.0 npm -curl 7.81.0-1ubuntu1.10 deb +curl 7.81.0-1ubuntu1.13 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb debianutils 5.5-1ubuntu2 deb @@ -497,7 +497,7 @@ libcap-ng0 0. libcap2 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.10 deb +libcurl4 7.81.0-1ubuntu1.13 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb From 20a216220c2530c252c3e3d8f23222a5a1b20bf6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 27 Jul 2023 14:42:25 +0000 Subject: [PATCH 131/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5c0ff02..6d0f472 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -747,7 +747,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.18.8 npm +systeminformation 5.18.9 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From 4ca6bb44971e57cc73fe766024e33760fa359f77 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 28 Jul 2023 16:42:51 +0000 Subject: [PATCH 132/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6d0f472..19bb661 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -747,7 +747,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.18.9 npm +systeminformation 5.18.10 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From 611cd3bb5572dd4e962fcf864b9e3b08d9282d19 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 1 Aug 2023 17:38:27 +0000 Subject: [PATCH 133/337] Bot Updating Package Versions --- package_versions.txt | 43 ++++++++++++++++++++----------------------- 1 file changed, 20 insertions(+), 23 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 19bb661..6a73155 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -80,7 +80,7 @@ columnify 1. common-ancestor-path 1.0.1 npm concat-map 0.0.1 npm console-control-strings 1.1.0 npm -containerd.io 1.6.21-1 deb +containerd.io 1.6.22-1 deb content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.4.2 npm @@ -140,7 +140,7 @@ function-bind 1. fuse-overlayfs 1.7.1-1 deb fuse3 3.10.5-1build1 deb gauge 4.0.4 npm -gcc-12-base 12.1.0-2ubuntu1~22.04 deb +gcc-12-base 12.3.0-1ubuntu1~22.04 deb get-intrinsic 1.2.1 npm github.com/AlecAivazis/survey/v2 v2.3.7 go-module github.com/BurntSushi/toml v1.2.1 go-module @@ -176,7 +176,7 @@ github.com/containerd/aufs v1 github.com/containerd/btrfs v1.0.0 go-module github.com/containerd/cgroups v1.0.4 go-module github.com/containerd/console v1.0.3 go-module -github.com/containerd/containerd v1.6.21 go-module +github.com/containerd/containerd v1.6.22 go-module github.com/containerd/containerd v1.7.2 go-module github.com/containerd/continuity v0.3.0 go-module github.com/containerd/continuity v0.4.1 go-module @@ -185,10 +185,10 @@ github.com/containerd/go-cni v1 github.com/containerd/go-runc v1.0.0 go-module github.com/containerd/imgcrypt v1.1.4 go-module github.com/containerd/nri v0.1.0 go-module -github.com/containerd/ttrpc v1.1.1 go-module +github.com/containerd/ttrpc v1.1.2 go-module github.com/containerd/typeurl v1.0.2 go-module github.com/containerd/typeurl/v2 v2.1.1 go-module -github.com/containerd/zfs v1.0.0 go-module +github.com/containerd/zfs v1.1.0 go-module github.com/containernetworking/cni v1.1.1 go-module github.com/containernetworking/plugins v1.1.1 go-module github.com/containers/ocicrypt v1.1.3 go-module @@ -217,7 +217,6 @@ github.com/docker/go-units v0 github.com/elliotchance/orderedmap v1.4.0 go-module github.com/emicklei/go-restful v2.9.5+incompatible go-module github.com/emicklei/go-restful/v3 v3.10.1 go-module -github.com/emicklei/go-restful/v3 v3.7.3 go-module github.com/fatih/color v1.13.0 go-module github.com/felixge/httpsnoop v1.0.3 go-module github.com/fsnotify/fsnotify v1.4.9 go-module @@ -239,11 +238,10 @@ github.com/golang/mock v1 github.com/golang/protobuf v1.5.2 go-module github.com/golang/protobuf v1.5.3 go-module github.com/google/gnostic v0.5.7-v3refs go-module -github.com/google/go-cmp v0.5.6 go-module github.com/google/go-cmp v0.5.9 go-module github.com/google/gofuzz v1.2.0 go-module github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module -github.com/google/uuid v1.2.0 go-module +github.com/google/uuid v1.3.0 go-module github.com/gorilla/mux v1.8.0 go-module github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module @@ -275,7 +273,7 @@ github.com/matttproud/golang_protobuf_extensions v1 github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module github.com/miekg/pkcs11 v1.1.1 go-module github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module -github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible go-module +github.com/mistifyio/go-zfs/v3 v3.0.1 go-module github.com/mitchellh/mapstructure v1.5.0 go-module github.com/moby/buildkit v0.12.1-0.20230717122532-faa0cc7da353 go-module github.com/moby/locker v1.0.1 go-module @@ -296,7 +294,7 @@ github.com/munnerz/goautoneg v0 github.com/opencontainers/go-digest v1.0.0 go-module github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module github.com/opencontainers/image-spec v1.1.0-rc4 go-module -github.com/opencontainers/runc v0.0.0-20230426214901-860f061b76bb go-module +github.com/opencontainers/runc v0.0.0-20230719051532-82f18fe0e44a go-module github.com/opencontainers/runc v1.1.5 go-module github.com/opencontainers/runc v1.1.6 go-module github.com/opencontainers/runc v1.1.7 go-module @@ -357,7 +355,7 @@ glob 8. gnupg 2.2.27-3ubuntu2.1 deb gnupg-l10n 2.2.27-3ubuntu2.1 deb gnupg-utils 2.2.27-3ubuntu2.1 deb -go.etcd.io/bbolt v1.3.6 go-module +go.etcd.io/bbolt v1.3.7 go-module go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.28.0 go-module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.40.0 go-module @@ -385,7 +383,6 @@ golang.org/x/crypto v0 golang.org/x/exp v0.0.0-20230713183714-613f0c0eb8a1 go-module golang.org/x/mod v0.5.0 go-module golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module -golang.org/x/net v0.0.0-20220722155237-a158d28d115b go-module golang.org/x/net v0.8.0 go-module golang.org/x/net v0.9.0 go-module golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f go-module @@ -393,22 +390,22 @@ golang.org/x/oauth2 v0 golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module golang.org/x/sync v0.3.0 go-module golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module -golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f go-module golang.org/x/sys v0.6.0 go-module golang.org/x/sys v0.7.0 go-module -golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 go-module +golang.org/x/term v0.6.0 go-module golang.org/x/term v0.7.0 go-module golang.org/x/text v0.3.7 go-module +golang.org/x/text v0.8.0 go-module golang.org/x/text v0.9.0 go-module golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module golang.org/x/time v0.3.0 go-module golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63 go-module google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 go-module -google.golang.org/grpc v1.47.0 go-module +google.golang.org/grpc v1.50.1 go-module google.golang.org/grpc v1.56.2 go-module google.golang.org/protobuf v1.27.1 go-module -google.golang.org/protobuf v1.28.0 go-module +google.golang.org/protobuf v1.28.1 go-module google.golang.org/protobuf v1.30.0 go-module gopkg.in/inf.v0 v0.9.1 go-module gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module @@ -508,7 +505,7 @@ libexpat1 2. libext2fs2 1.46.5-2ubuntu1.1 deb libffi8 3.4.2-4 deb libfuse3-3 3.10.5-1build1 deb -libgcc-s1 12.1.0-2ubuntu1~22.04 deb +libgcc-s1 12.3.0-1ubuntu1~22.04 deb libgcrypt20 1.9.4-3ubuntu3 deb libgmp10 2:6.2.1+dfsg-3ubuntu1 deb libgnutls30 3.7.3-4ubuntu1.2 deb @@ -569,8 +566,8 @@ libpcre3 2: libprocps8 2:3.3.17-6ubuntu2 deb libpsl5 0.21.0-1.2build2 deb libpython3-stdlib 3.10.6-1~22.04 deb -libpython3.10-minimal 3.10.6-1~22.04.2ubuntu1.1 deb -libpython3.10-stdlib 3.10.6-1~22.04.2ubuntu1.1 deb +libpython3.10-minimal 3.10.12-1~22.04.2 deb +libpython3.10-stdlib 3.10.12-1~22.04.2 deb libreadline8 8.1.2-1 deb librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb @@ -586,7 +583,7 @@ libsqlite3-0 3. libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.1 deb libssl3 3.0.2-0ubuntu1.10 deb -libstdc++6 12.1.0-2ubuntu1~22.04 deb +libstdc++6 12.3.0-1ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.9 deb libtasn1-6 4.18.0-4build1 deb libtinfo6 6.3-2ubuntu0.1 deb @@ -693,11 +690,11 @@ promzard 0. proxy-addr 2.0.7 npm publicsuffix 20211207.1025-1 deb pump 3.0.0 npm -python 3.10.6 binary +python 3.10.12 binary python3 3.10.6-1~22.04 deb python3-minimal 3.10.6-1~22.04 deb -python3.10 3.10.6-1~22.04.2ubuntu1.1 deb -python3.10-minimal 3.10.6-1~22.04.2ubuntu1.1 deb +python3.10 3.10.12-1~22.04.2 deb +python3.10-minimal 3.10.12-1~22.04.2 deb qrcode-terminal 0.12.0 npm qs 6.11.0 npm range-parser 1.2.1 npm From 5fd8a5c4b02d5b49c5d61754cb4e1d68ac8c79fd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 2 Aug 2023 04:39:41 +0000 Subject: [PATCH 134/337] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6a73155..0c9a509 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -121,8 +121,8 @@ emoji-regex 8. encodeurl 1.0.2 npm encoding 0.1.13 npm end-of-stream 1.4.4 npm -engine.io 6.5.1 npm -engine.io-parser 5.1.0 npm +engine.io 6.5.2 npm +engine.io-parser 5.2.1 npm env-paths 2.2.1 npm err-code 2.0.3 npm escape-html 1.0.3 npm @@ -524,8 +524,8 @@ libkeyutils1 1. libkrb5-3 1.19.2-2ubuntu0.2 deb libkrb5support0 1.19.2-2ubuntu0.2 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.2 deb -libldap-common 2.5.14+dfsg-0ubuntu0.22.04.2 deb +libldap-2.5-0 2.5.15+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.15+dfsg-0ubuntu0.22.04.1 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb liblzo2-2 2.10-2build3 deb From 262f2424c0c46cfb0c61b4086fe5667e27fb9cf0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 7 Aug 2023 17:39:37 +0000 Subject: [PATCH 135/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 0c9a509..7b9c6db 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.4.5 npm +@types/node 20.4.8 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -726,7 +726,7 @@ sigs.k8s.io/structured-merge-diff/v4 v4 sigs.k8s.io/yaml v1.2.0 go-module sigs.k8s.io/yaml v1.3.0 go-module smart-buffer 4.2.0 npm -socket.io 4.7.1 npm +socket.io 4.7.2 npm socket.io-adapter 2.5.2 npm socket.io-parser 4.2.4 npm socks 2.7.0 npm @@ -744,7 +744,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.18.10 npm +systeminformation 5.18.12 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From 49c346cdb28528db395bf14cc991291aa30f8a6b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 8 Aug 2023 21:43:40 +0000 Subject: [PATCH 136/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 7b9c6db..6dc037e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.4.8 npm +@types/node 20.4.9 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -744,7 +744,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.18.12 npm +systeminformation 5.18.13 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From 3ec798b1283dcb92ce971dff68e4ffc429535929 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 9 Aug 2023 21:38:04 +0000 Subject: [PATCH 137/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6dc037e..3a1e8f4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -638,10 +638,10 @@ negotiator 0. netbase 6.3 deb netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb -node 16.20.1 binary +node 16.20.2 binary node-gyp 9.1.0 npm node-pty 0.10.1 npm -nodejs 16.20.1-deb-1nodesource1 deb +nodejs 16.20.2-deb-1nodesource1 deb nopt 5.0.0 npm nopt 6.0.0 npm normalize-package-data 4.0.1 npm @@ -744,7 +744,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.18.13 npm +systeminformation 5.18.14 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From fb4e0345bfc24b74126ea69f68bc8a67617e55a4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 10 Aug 2023 05:39:28 +0000 Subject: [PATCH 138/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3a1e8f4..b54f9dc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -744,7 +744,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.18.14 npm +systeminformation 5.18.15 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From ca9e45c9707f55ad7a7dded2b816051aaefd8dde Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 12 Aug 2023 23:39:29 +0000 Subject: [PATCH 139/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b54f9dc..ed9cd8e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.4.9 npm +@types/node 20.4.10 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 67b0dfd7f782ca9fccdd6816f94fccbae714c0b4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 14 Aug 2023 17:39:59 +0000 Subject: [PATCH 140/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ed9cd8e..8eb6e33 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.4.10 npm +@types/node 20.5.0 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 46c6dc2404c9142859656818ee2f5f6242072cb4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 15 Aug 2023 15:37:58 +0000 Subject: [PATCH 141/337] Bot Updating Package Versions --- package_versions.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8eb6e33..36b9679 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -638,7 +638,6 @@ negotiator 0. netbase 6.3 deb netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb -node 16.20.2 binary node-gyp 9.1.0 npm node-pty 0.10.1 npm nodejs 16.20.2-deb-1nodesource1 deb @@ -690,7 +689,6 @@ promzard 0. proxy-addr 2.0.7 npm publicsuffix 20211207.1025-1 deb pump 3.0.0 npm -python 3.10.12 binary python3 3.10.6-1~22.04 deb python3-minimal 3.10.6-1~22.04 deb python3.10 3.10.12-1~22.04.2 deb From 2a8af5d44273a8a41d2363414e70dbafa9e689b2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 16 Aug 2023 23:38:31 +0000 Subject: [PATCH 142/337] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 36b9679..90cac0a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -34,8 +34,8 @@ aggregate-error 3. ansi-regex 5.0.1 npm ansi-styles 4.3.0 npm aproba 2.0.0 npm -apt 2.4.9 deb -apt-utils 2.4.9 deb +apt 2.4.10 deb +apt-utils 2.4.10 deb archy 1.0.0 npm are-we-there-yet 3.0.1 npm argparse 2.0.1 npm @@ -479,7 +479,7 @@ k8s.io/utils v0 k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 go-module kasm-wizard 0.0.1 npm libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.9 deb +libapt-pkg6.0 2.4.10 deb libassuan0 2.5.5-1build1 deb libattr1 1:2.5.1-1build1 deb libaudit-common 1:3.0.7-1build1 deb @@ -524,8 +524,8 @@ libkeyutils1 1. libkrb5-3 1.19.2-2ubuntu0.2 deb libkrb5support0 1.19.2-2ubuntu0.2 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.15+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.15+dfsg-0ubuntu0.22.04.1 deb +libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.16+dfsg-0ubuntu0.22.04.1 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb liblzo2-2 2.10-2build3 deb From 83ac21c8ae4284f3c3906e68c90bdb7178382551 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 17 Aug 2023 19:38:39 +0000 Subject: [PATCH 143/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 90cac0a..1c955db 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -89,7 +89,7 @@ cookie-signature 1. corepack 0.17.0 npm coreutils 8.32-4.1ubuntu1 deb cors 2.8.5 npm -cpu-features 0.0.8 npm +cpu-features 0.0.9 npm cssesc 3.0.0 npm curl 7.81.0-1ubuntu1.13 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb From 10c7477b19a594b05298454aadf853e5833cb056 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 19 Aug 2023 10:38:39 +0000 Subject: [PATCH 144/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1c955db..bf8c5db 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.5.0 npm +@types/node 20.5.1 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 785378c62346606213e570bf64ae6592bde37991 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 22 Aug 2023 21:44:30 +0000 Subject: [PATCH 145/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index bf8c5db..8fa6125 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.5.1 npm +@types/node 20.5.3 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -742,7 +742,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.18.15 npm +systeminformation 5.19.0 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From ca8ec53e2e122b834e07623bd98c4f70e4c4e32d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 29 Aug 2023 21:42:31 +0000 Subject: [PATCH 146/337] Bot Updating Package Versions --- package_versions.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8fa6125..1b5423c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.13 npm -@types/node 20.5.3 npm +@types/node 20.5.7 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -48,6 +48,7 @@ base-passwd 3. base64-js 1.5.1 npm base64id 2.0.0 npm bash 5.1-6ubuntu1 deb +bash 5.1.16 binary bcrypt-pbkdf 1.0.2 npm bin-links 3.0.3 npm binary-extensions 2.2.0 npm @@ -518,7 +519,7 @@ libinih1 53 libip4tc2 1.8.7-1ubuntu5.1 deb libip6tc2 1.8.7-1ubuntu5.1 deb libjq1 1.6-2.1ubuntu3 deb -libjson-c5 0.15-3~ubuntu1.22.04.1 deb +libjson-c5 0.15-3~ubuntu1.22.04.2 deb libk5crypto3 1.19.2-2ubuntu0.2 deb libkeyutils1 1.6.1-2ubuntu3 deb libkrb5-3 1.19.2-2ubuntu0.2 deb @@ -742,7 +743,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.19.0 npm +systeminformation 5.21.1 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From df4d448c9ceee4f08e5a4a4da2df6a3d3a4ab13b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 5 Sep 2023 15:41:14 +0000 Subject: [PATCH 147/337] Bot Updating Package Versions --- package_versions.txt | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1b5423c..6f949a4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -23,8 +23,8 @@ NAME VE @socket.io/component-emitter 3.1.0 npm @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm -@types/cors 2.8.13 npm -@types/node 20.5.7 npm +@types/cors 2.8.14 npm +@types/node 20.5.9 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -144,11 +144,10 @@ gauge 4. gcc-12-base 12.3.0-1ubuntu1~22.04 deb get-intrinsic 1.2.1 npm github.com/AlecAivazis/survey/v2 v2.3.7 go-module -github.com/BurntSushi/toml v1.2.1 go-module github.com/Masterminds/semver/v3 v3.2.1 go-module github.com/Microsoft/hcsshim v0.9.8 go-module -github.com/NVIDIA/go-nvml v0.12.0-0 go-module -github.com/NVIDIA/nvidia-container-toolkit v1.13.5 go-module +github.com/NVIDIA/go-nvml v0.12.0-1 go-module +github.com/NVIDIA/nvidia-container-toolkit v1.14.0 go-module github.com/a8m/envsubst v1.3.0 go-module github.com/aws/aws-sdk-go-v2 v1.17.6 go-module github.com/aws/aws-sdk-go-v2/config v1.18.16 go-module @@ -172,7 +171,7 @@ github.com/cespare/xxhash/v2 v2 github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module github.com/cilium/ebpf v0.7.0 go-module github.com/compose-spec/compose-go v1.17.0 go-module -github.com/container-orchestrated-devices/container-device-interface v0.5.4-0.20230111111500-5b3b5d81179a go-module +github.com/container-orchestrated-devices/container-device-interface v0.6.0 go-module github.com/containerd/aufs v1.0.0 go-module github.com/containerd/btrfs v1.0.0 go-module github.com/containerd/cgroups v1.0.4 go-module @@ -350,7 +349,7 @@ github.com/vishvananda/netns v0 github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb go-module github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module github.com/xeipuuv/gojsonschema v1.2.0 go-module -gitlab.com/nvidia/cloud-native/go-nvlib v0.0.0-20230209143738-95328d8c4438 go-module +gitlab.com/nvidia/cloud-native/go-nvlib v0.0.0-20230818092907-09424fdc8884 go-module glob 7.2.3 npm glob 8.0.3 npm gnupg 2.2.27-3ubuntu2.1 deb @@ -554,8 +553,8 @@ libnpmteam 4. libnpmversion 3.0.7 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.13.5-1 deb -libnvidia-container1 1.13.5-1 deb +libnvidia-container-tools 1.14.0-1 deb +libnvidia-container1 1.14.0-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.3 deb @@ -660,9 +659,9 @@ npm-profile 6. npm-registry-fetch 13.3.1 npm npm-user-validate 1.0.1 npm npmlog 6.0.2 npm -nvidia-container-toolkit 1.13.5-1 deb -nvidia-container-toolkit-base 1.13.5-1 deb -nvidia-docker2 2.13.0-1 deb +nvidia-container-toolkit 1.14.0-1 deb +nvidia-container-toolkit-base 1.14.0-1 deb +nvidia-docker2 2.14.0-1 deb object-assign 4.1.1 npm object-inspect 1.12.3 npm on-finished 2.4.1 npm @@ -743,7 +742,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.21.1 npm +systeminformation 5.21.4 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From 5edcd6bac9beaf86cf9edfa19c4b304858c66aa3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 5 Sep 2023 21:42:57 +0000 Subject: [PATCH 148/337] Bot Updating Package Versions --- package_versions.txt | 1674 ++++++++++++++++++++++-------------------- 1 file changed, 895 insertions(+), 779 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6f949a4..c078e30 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,779 +1,895 @@ -NAME VERSION TYPE -1to2 1.0.0 npm -@balena/dockerignore 1.0.2 npm -@colors/colors 1.5.0 npm -@gar/promisify 1.1.3 npm -@isaacs/string-locale-compare 1.1.0 npm -@npmcli/arborist 5.6.3 npm -@npmcli/ci-detect 2.0.0 npm -@npmcli/config 4.2.2 npm -@npmcli/disparity-colors 2.0.0 npm -@npmcli/fs 2.1.2 npm -@npmcli/git 3.0.2 npm -@npmcli/installed-package-contents 1.0.7 npm -@npmcli/map-workspaces 2.0.4 npm -@npmcli/metavuln-calculator 3.1.1 npm -@npmcli/move-file 2.0.1 npm -@npmcli/name-from-folder 1.0.1 npm -@npmcli/node-gyp 2.0.0 npm -@npmcli/package-json 2.0.0 npm -@npmcli/promise-spawn 3.0.0 npm -@npmcli/query 1.2.0 npm -@npmcli/run-script 4.2.1 npm -@socket.io/component-emitter 3.1.0 npm -@tootallnate/once 2.0.0 npm -@types/cookie 0.4.1 npm -@types/cors 2.8.14 npm -@types/node 20.5.9 npm -abbrev 1.1.1 npm -accepts 1.3.8 npm -adduser 3.118ubuntu5 deb -agent-base 6.0.2 npm -agentkeepalive 4.2.1 npm -aggregate-error 3.1.0 npm -ansi-regex 5.0.1 npm -ansi-styles 4.3.0 npm -aproba 2.0.0 npm -apt 2.4.10 deb -apt-utils 2.4.10 deb -archy 1.0.0 npm -are-we-there-yet 3.0.1 npm -argparse 2.0.1 npm -array-flatten 1.1.1 npm -asap 2.0.6 npm -asn1 0.2.6 npm -balanced-match 1.0.2 npm -base-files 12ubuntu4.3 deb -base-passwd 3.5.52build1 deb -base64-js 1.5.1 npm -base64id 2.0.0 npm -bash 5.1-6ubuntu1 deb -bash 5.1.16 binary -bcrypt-pbkdf 1.0.2 npm -bin-links 3.0.3 npm -binary-extensions 2.2.0 npm -bl 4.1.0 npm -body-parser 1.20.1 npm -brace-expansion 1.1.11 npm -brace-expansion 2.0.1 npm -bsdutils 1:2.37.2-4ubuntu3 deb -btrfs-progs 5.16.2-1 deb -buffer 5.7.1 npm -buildcheck 0.0.6 npm -builtins 5.0.1 npm -bytes 3.1.2 npm -ca-certificates 20230311ubuntu0.22.04.1 deb -cacache 16.1.3 npm -call-bind 1.0.2 npm -chalk 4.1.2 npm -chownr 1.1.4 npm -chownr 2.0.0 npm -cidr-regex 3.1.1 npm -clean-stack 2.2.0 npm -cli-columns 4.0.0 npm -cli-table3 0.6.2 npm -clone 1.0.4 npm -cmd-shim 5.0.0 npm -color-convert 2.0.1 npm -color-name 1.1.4 npm -color-support 1.1.3 npm -columnify 1.6.0 npm -common-ancestor-path 1.0.1 npm -concat-map 0.0.1 npm -console-control-strings 1.1.0 npm -containerd.io 1.6.22-1 deb -content-disposition 0.5.4 npm -content-type 1.0.5 npm -cookie 0.4.2 npm -cookie 0.5.0 npm -cookie-signature 1.0.6 npm -corepack 0.17.0 npm -coreutils 8.32-4.1ubuntu1 deb -cors 2.8.5 npm -cpu-features 0.0.9 npm -cssesc 3.0.0 npm -curl 7.81.0-1ubuntu1.13 deb -dash 0.5.11+git20210903+057cd650a4ed-3build1 deb -debconf 1.5.79ubuntu1 deb -debianutils 5.5-1ubuntu2 deb -debug 2.6.9 npm -debug 4.3.4 npm -debuglog 1.0.1 npm -defaults 1.0.3 npm -delegates 1.0.0 npm -depd 1.1.2 npm -depd 2.0.0 npm -destroy 1.2.0 npm -dezalgo 1.0.4 npm -diff 5.1.0 npm -diffutils 1:3.8-0ubuntu2 deb -dirmngr 2.2.27-3ubuntu2.1 deb -distro-info-data 0.52ubuntu0.4 deb -docker-ce 5:24.0.5-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:24.0.5-1~ubuntu.22.04~jammy deb -docker-compose-plugin 2.20.2-1~ubuntu.22.04~jammy deb -docker-modem 3.0.8 npm -dockerode 3.3.5 npm -dpkg 1.21.1ubuntu2.2 deb -drm-info 2.2.0-2 deb -e2fsprogs 1.46.5-2ubuntu1.1 deb -ee-first 1.1.1 npm -emoji-regex 8.0.0 npm -encodeurl 1.0.2 npm -encoding 0.1.13 npm -end-of-stream 1.4.4 npm -engine.io 6.5.2 npm -engine.io-parser 5.2.1 npm -env-paths 2.2.1 npm -err-code 2.0.3 npm -escape-html 1.0.3 npm -etag 1.8.1 npm -express 4.18.2 npm -fastest-levenshtein 1.0.12 npm -finalhandler 1.2.0 npm -findutils 4.8.0-1ubuntu3 deb -forwarded 0.2.0 npm -fresh 0.5.2 npm -fs-constants 1.0.0 npm -fs-minipass 2.1.0 npm -fs.realpath 1.0.0 npm -function-bind 1.1.1 npm -fuse-overlayfs 1.7.1-1 deb -fuse3 3.10.5-1build1 deb -gauge 4.0.4 npm -gcc-12-base 12.3.0-1ubuntu1~22.04 deb -get-intrinsic 1.2.1 npm -github.com/AlecAivazis/survey/v2 v2.3.7 go-module -github.com/Masterminds/semver/v3 v3.2.1 go-module -github.com/Microsoft/hcsshim v0.9.8 go-module -github.com/NVIDIA/go-nvml v0.12.0-1 go-module -github.com/NVIDIA/nvidia-container-toolkit v1.14.0 go-module -github.com/a8m/envsubst v1.3.0 go-module -github.com/aws/aws-sdk-go-v2 v1.17.6 go-module -github.com/aws/aws-sdk-go-v2/config v1.18.16 go-module -github.com/aws/aws-sdk-go-v2/credentials v1.13.16 go-module -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.24 go-module -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.30 go-module -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.24 go-module -github.com/aws/aws-sdk-go-v2/internal/ini v1.3.31 go-module -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.24 go-module -github.com/aws/aws-sdk-go-v2/service/sso v1.12.5 go-module -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.5 go-module -github.com/aws/aws-sdk-go-v2/service/sts v1.18.6 go-module -github.com/aws/smithy-go v1.13.5 go-module -github.com/beorn7/perks v1.0.1 go-module -github.com/blang/semver v3.5.1+incompatible go-module -github.com/buger/goterm v1.0.4 go-module -github.com/cenkalti/backoff/v4 v4.1.2 go-module -github.com/cenkalti/backoff/v4 v4.2.0 go-module -github.com/cespare/xxhash/v2 v2.1.2 go-module -github.com/cespare/xxhash/v2 v2.2.0 go-module -github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module -github.com/cilium/ebpf v0.7.0 go-module -github.com/compose-spec/compose-go v1.17.0 go-module -github.com/container-orchestrated-devices/container-device-interface v0.6.0 go-module -github.com/containerd/aufs v1.0.0 go-module -github.com/containerd/btrfs v1.0.0 go-module -github.com/containerd/cgroups v1.0.4 go-module -github.com/containerd/console v1.0.3 go-module -github.com/containerd/containerd v1.6.22 go-module -github.com/containerd/containerd v1.7.2 go-module -github.com/containerd/continuity v0.3.0 go-module -github.com/containerd/continuity v0.4.1 go-module -github.com/containerd/fifo v1.0.0 go-module -github.com/containerd/go-cni v1.1.6 go-module -github.com/containerd/go-runc v1.0.0 go-module -github.com/containerd/imgcrypt v1.1.4 go-module -github.com/containerd/nri v0.1.0 go-module -github.com/containerd/ttrpc v1.1.2 go-module -github.com/containerd/typeurl v1.0.2 go-module -github.com/containerd/typeurl/v2 v2.1.1 go-module -github.com/containerd/zfs v1.1.0 go-module -github.com/containernetworking/cni v1.1.1 go-module -github.com/containernetworking/plugins v1.1.1 go-module -github.com/containers/ocicrypt v1.1.3 go-module -github.com/coreos/go-systemd/v22 v22.3.2 go-module -github.com/cpuguy83/go-md2man/v2 v2.0.0 go-module -github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module -github.com/cpuguy83/go-md2man/v2 v2.0.2 go-module -github.com/cyphar/filepath-securejoin v0.2.3 go-module -github.com/davecgh/go-spew v1.1.1 go-module -github.com/distribution/distribution/v3 v3.0.0-20230601133803-97b1d649c493 go-module -github.com/docker/buildx v0.11.2 go-module -github.com/docker/cli v24.0.4+incompatible go-module -github.com/docker/cli/cmd/docker v24.0.5 go-module -github.com/docker/compose/v2 (devel) go-module -github.com/docker/distribution v2.8.2+incompatible go-module -github.com/docker/docker v24.0.5-0.20230714235725-36e9e796c6fc+incompatible go-module -github.com/docker/docker-credential-helpers v0.7.0 go-module -github.com/docker/docker/cmd/docker-proxy v24.0.5 go-module -github.com/docker/docker/cmd/dockerd v24.0.5 go-module -github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module -github.com/docker/go-connections v0.4.0 go-module -github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module -github.com/docker/go-metrics v0.0.1 go-module -github.com/docker/go-units v0.4.0 go-module -github.com/docker/go-units v0.5.0 go-module -github.com/elliotchance/orderedmap v1.4.0 go-module -github.com/emicklei/go-restful v2.9.5+incompatible go-module -github.com/emicklei/go-restful/v3 v3.10.1 go-module -github.com/fatih/color v1.13.0 go-module -github.com/felixge/httpsnoop v1.0.3 go-module -github.com/fsnotify/fsnotify v1.4.9 go-module -github.com/fsnotify/fsnotify v1.5.4 go-module -github.com/fvbommel/sortorder v1.0.2 go-module -github.com/go-logr/logr v1.2.2 go-module -github.com/go-logr/logr v1.2.4 go-module -github.com/go-logr/stdr v1.2.2 go-module -github.com/go-openapi/jsonpointer v0.19.5 go-module -github.com/go-openapi/jsonreference v0.20.0 go-module -github.com/go-openapi/swag v0.19.14 go-module -github.com/goccy/go-yaml v1.9.5 go-module -github.com/godbus/dbus/v5 v5.0.6 go-module -github.com/gofrs/flock v0.8.1 go-module -github.com/gogo/googleapis v1.3.2 go-module -github.com/gogo/googleapis v1.4.1 go-module -github.com/gogo/protobuf v1.3.2 go-module -github.com/golang/mock v1.6.0 go-module -github.com/golang/protobuf v1.5.2 go-module -github.com/golang/protobuf v1.5.3 go-module -github.com/google/gnostic v0.5.7-v3refs go-module -github.com/google/go-cmp v0.5.9 go-module -github.com/google/gofuzz v1.2.0 go-module -github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module -github.com/google/uuid v1.3.0 go-module -github.com/gorilla/mux v1.8.0 go-module -github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module -github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module -github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module -github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 go-module -github.com/hashicorp/errwrap v1.1.0 go-module -github.com/hashicorp/go-multierror v1.1.1 go-module -github.com/hashicorp/go-version v1.6.0 go-module -github.com/imdario/mergo v0.3.12 go-module -github.com/imdario/mergo v0.3.16 go-module -github.com/in-toto/in-toto-golang v0.5.0 go-module -github.com/intel/goresctrl v0.2.0 go-module -github.com/jinzhu/copier v0.3.5 go-module -github.com/jonboulle/clockwork v0.4.0 go-module -github.com/josharian/intern v1.0.0 go-module -github.com/json-iterator/go v1.1.12 go-module -github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module -github.com/klauspost/compress v1.11.13 go-module -github.com/klauspost/compress v1.16.5 go-module -github.com/magiconair/properties v1.8.6 go-module -github.com/mailru/easyjson v0.7.6 go-module -github.com/mattn/go-colorable v0.1.12 go-module -github.com/mattn/go-colorable v0.1.13 go-module -github.com/mattn/go-isatty v0.0.14 go-module -github.com/mattn/go-isatty v0.0.17 go-module -github.com/mattn/go-runewidth v0.0.14 go-module -github.com/mattn/go-shellwords v1.0.12 go-module -github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module -github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module -github.com/miekg/pkcs11 v1.1.1 go-module -github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module -github.com/mistifyio/go-zfs/v3 v3.0.1 go-module -github.com/mitchellh/mapstructure v1.5.0 go-module -github.com/moby/buildkit v0.12.1-0.20230717122532-faa0cc7da353 go-module -github.com/moby/locker v1.0.1 go-module -github.com/moby/patternmatcher v0.5.0 go-module -github.com/moby/spdystream v0.2.0 go-module -github.com/moby/sys/mountinfo v0.5.0 go-module -github.com/moby/sys/mountinfo v0.6.2 go-module -github.com/moby/sys/sequential v0.5.0 go-module -github.com/moby/sys/signal v0.6.0 go-module -github.com/moby/sys/signal v0.7.0 go-module -github.com/moby/sys/symlink v0.2.0 go-module -github.com/moby/term v0.5.0 go-module -github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module -github.com/modern-go/reflect2 v1.0.2 go-module -github.com/morikuni/aec v1.0.0 go-module -github.com/mrunalp/fileutils v0.5.0 go-module -github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 go-module -github.com/opencontainers/go-digest v1.0.0 go-module -github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module -github.com/opencontainers/image-spec v1.1.0-rc4 go-module -github.com/opencontainers/runc v0.0.0-20230719051532-82f18fe0e44a go-module -github.com/opencontainers/runc v1.1.5 go-module -github.com/opencontainers/runc v1.1.6 go-module -github.com/opencontainers/runc v1.1.7 go-module -github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module -github.com/opencontainers/runtime-spec v1.1.0-rc.2 go-module -github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module -github.com/opencontainers/selinux v1.10.0 go-module -github.com/opencontainers/selinux v1.10.1 go-module -github.com/pelletier/go-toml v1.9.4 go-module -github.com/pelletier/go-toml v1.9.5 go-module -github.com/pkg/errors v0.9.1 go-module -github.com/pmezard/go-difflib v1.0.0 go-module -github.com/prometheus/client_golang v1.11.1 go-module -github.com/prometheus/client_golang v1.14.0 go-module -github.com/prometheus/client_model v0.2.0 go-module -github.com/prometheus/client_model v0.3.0 go-module -github.com/prometheus/common v0.30.0 go-module -github.com/prometheus/common v0.42.0 go-module -github.com/prometheus/procfs v0.7.3 go-module -github.com/prometheus/procfs v0.9.0 go-module -github.com/rivo/uniseg v0.2.0 go-module -github.com/russross/blackfriday/v2 v2.0.1 go-module -github.com/russross/blackfriday/v2 v2.1.0 go-module -github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 go-module -github.com/secure-systems-lab/go-securesystemslib v0.4.0 go-module -github.com/serialx/hashring v0.0.0-20190422032157-8b2912629002 go-module -github.com/shibumi/go-pathspec v1.3.0 go-module -github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module -github.com/sirupsen/logrus v1.8.1 go-module -github.com/sirupsen/logrus v1.9.0 go-module -github.com/sirupsen/logrus v1.9.3 go-module -github.com/spf13/cobra v1.4.0 go-module -github.com/spf13/cobra v1.7.0 go-module -github.com/spf13/pflag v1.0.5 go-module -github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 go-module -github.com/stretchr/testify v1.8.4 go-module -github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module -github.com/tchap/go-patricia v2.2.6+incompatible go-module -github.com/theupdateframework/notary v0.7.0 go-module -github.com/tilt-dev/fsnotify v1.4.8-0.20220602155310-fff9c274a375 go-module -github.com/timtadh/data-structures v0.5.3 go-module -github.com/timtadh/lexmachine v0.2.2 go-module -github.com/tonistiigi/fsutil v0.0.0-20230629203738-36ef4d8c0dbb go-module -github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module -github.com/tonistiigi/vt100 v0.0.0-20230623042737-f9a4f7ef6531 go-module -github.com/urfave/cli v1.22.1 go-module -github.com/urfave/cli/v2 v2.3.0 go-module -github.com/vishvananda/netlink v1.1.0 go-module -github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5 go-module -github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df go-module -github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f go-module -github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb go-module -github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module -github.com/xeipuuv/gojsonschema v1.2.0 go-module -gitlab.com/nvidia/cloud-native/go-nvlib v0.0.0-20230818092907-09424fdc8884 go-module -glob 7.2.3 npm -glob 8.0.3 npm -gnupg 2.2.27-3ubuntu2.1 deb -gnupg-l10n 2.2.27-3ubuntu2.1 deb -gnupg-utils 2.2.27-3ubuntu2.1 deb -go.etcd.io/bbolt v1.3.7 go-module -go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.28.0 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.40.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.40.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.40.0 go-module -go.opentelemetry.io/otel v1.14.0 go-module -go.opentelemetry.io/otel v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.14.0 go-module -go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.14.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.14.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.14.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.3.0 go-module -go.opentelemetry.io/otel/metric v0.37.0 go-module -go.opentelemetry.io/otel/sdk v1.14.0 go-module -go.opentelemetry.io/otel/sdk v1.3.0 go-module -go.opentelemetry.io/otel/trace v1.14.0 go-module -go.opentelemetry.io/otel/trace v1.3.0 go-module -go.opentelemetry.io/proto/otlp v0.11.0 go-module -go.opentelemetry.io/proto/otlp v0.19.0 go-module -golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd go-module -golang.org/x/crypto v0.7.0 go-module -golang.org/x/exp v0.0.0-20230713183714-613f0c0eb8a1 go-module -golang.org/x/mod v0.5.0 go-module -golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module -golang.org/x/net v0.8.0 go-module -golang.org/x/net v0.9.0 go-module -golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f go-module -golang.org/x/oauth2 v0.7.0 go-module -golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module -golang.org/x/sync v0.3.0 go-module -golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module -golang.org/x/sys v0.6.0 go-module -golang.org/x/sys v0.7.0 go-module -golang.org/x/term v0.6.0 go-module -golang.org/x/term v0.7.0 go-module -golang.org/x/text v0.3.7 go-module -golang.org/x/text v0.8.0 go-module -golang.org/x/text v0.9.0 go-module -golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module -golang.org/x/time v0.3.0 go-module -golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module -google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63 go-module -google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 go-module -google.golang.org/grpc v1.50.1 go-module -google.golang.org/grpc v1.56.2 go-module -google.golang.org/protobuf v1.27.1 go-module -google.golang.org/protobuf v1.28.1 go-module -google.golang.org/protobuf v1.30.0 go-module -gopkg.in/inf.v0 v0.9.1 go-module -gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module -gopkg.in/square/go-jose.v2 v2.5.1 go-module -gopkg.in/yaml.v2 v2.4.0 go-module -gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b go-module -gopkg.in/yaml.v3 v3.0.1 go-module -gpg 2.2.27-3ubuntu2.1 deb -gpg-agent 2.2.27-3ubuntu2.1 deb -gpg-wks-client 2.2.27-3ubuntu2.1 deb -gpg-wks-server 2.2.27-3ubuntu2.1 deb -gpgconf 2.2.27-3ubuntu2.1 deb -gpgsm 2.2.27-3ubuntu2.1 deb -gpgv 2.2.27-3ubuntu2.1 deb -graceful-fs 4.2.10 npm -grep 3.7-1build1 deb -gzip 1.10-4ubuntu4.1 deb -has 1.0.3 npm -has-flag 4.0.0 npm -has-proto 1.0.1 npm -has-symbols 1.0.3 npm -has-unicode 2.0.1 npm -hosted-git-info 5.2.1 npm -hostname 3.23ubuntu2 deb -http-cache-semantics 4.1.1 npm -http-errors 2.0.0 npm -http-proxy-agent 5.0.0 npm -https-proxy-agent 5.0.1 npm -humanize-ms 1.2.1 npm -iconv-lite 0.4.24 npm -iconv-lite 0.6.3 npm -ieee754 1.2.1 npm -ignore-walk 5.0.1 npm -imurmurhash 0.1.4 npm -indent-string 4.0.0 npm -infer-owner 1.0.4 npm -inflight 1.0.6 npm -inherits 2.0.4 npm -ini 3.0.1 npm -init-package-json 3.0.2 npm -init-system-helpers 1.62 deb -ip 2.0.0 npm -ip-regex 4.3.0 npm -ipaddr.js 1.9.1 npm -iptables 1.8.7-1ubuntu5.1 deb -is-cidr 4.0.2 npm -is-core-module 2.10.0 npm -is-fullwidth-code-point 3.0.0 npm -is-lambda 1.0.1 npm -isexe 2.0.0 npm -jq 1.6-2.1ubuntu3 deb -js-yaml 4.1.0 npm -json-parse-even-better-errors 2.3.1 npm -json-stringify-nice 1.1.4 npm -jsonparse 1.3.1 npm -just-diff 5.1.1 npm -just-diff-apply 5.4.1 npm -k8s.io/api v0.22.5 go-module -k8s.io/api v0.26.2 go-module -k8s.io/apimachinery v0.22.5 go-module -k8s.io/apimachinery v0.26.2 go-module -k8s.io/apiserver v0.22.5 go-module -k8s.io/client-go v0.22.5 go-module -k8s.io/client-go v0.26.2 go-module -k8s.io/component-base v0.22.5 go-module -k8s.io/cri-api v0.25.0 go-module -k8s.io/klog/v2 v2.30.0 go-module -k8s.io/klog/v2 v2.90.1 go-module -k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 go-module -k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b go-module -k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 go-module -kasm-wizard 0.0.1 npm -libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.10 deb -libassuan0 2.5.5-1build1 deb -libattr1 1:2.5.1-1build1 deb -libaudit-common 1:3.0.7-1build1 deb -libaudit1 1:3.0.7-1build1 deb -libblkid1 2.37.2-4ubuntu3 deb -libbrotli1 1.0.9-2build6 deb -libbsd0 0.11.5-1 deb -libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.1 deb -libc6 2.35-0ubuntu3.1 deb -libcap-ng0 0.7.9-2.2build3 deb -libcap2 1:2.44-1ubuntu0.22.04.1 deb -libcom-err2 1.46.5-2ubuntu1.1 deb -libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.13 deb -libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb -libdebconfclient0 0.261ubuntu1 deb -libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb -libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb -libdrm2 2.4.113-2~ubuntu0.22.04.1 deb -libedit2 3.1-20210910-1build1 deb -libexpat1 2.4.7-1ubuntu0.2 deb -libext2fs2 1.46.5-2ubuntu1.1 deb -libffi8 3.4.2-4 deb -libfuse3-3 3.10.5-1build1 deb -libgcc-s1 12.3.0-1ubuntu1~22.04 deb -libgcrypt20 1.9.4-3ubuntu3 deb -libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.2 deb -libgpg-error0 1.43-3 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb -libhogweed6 3.7.3-1build2 deb -libicu70 70.1-2 deb -libidn2-0 2.3.2-2build1 deb -libinih1 53-1ubuntu3 deb -libip4tc2 1.8.7-1ubuntu5.1 deb -libip6tc2 1.8.7-1ubuntu5.1 deb -libjq1 1.6-2.1ubuntu3 deb -libjson-c5 0.15-3~ubuntu1.22.04.2 deb -libk5crypto3 1.19.2-2ubuntu0.2 deb -libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.2 deb -libkrb5support0 1.19.2-2ubuntu0.2 deb -libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.16+dfsg-0ubuntu0.22.04.1 deb -liblz4-1 1.9.3-2build2 deb -liblzma5 5.2.5-2ubuntu1 deb -liblzo2-2 2.10-2build3 deb -libmd0 1.0.4-1build1 deb -libmnl0 1.0.4-3build2 deb -libmount1 2.37.2-4ubuntu3 deb -libmpdec3 2.5.1-2build2 deb -libncurses6 6.3-2ubuntu0.1 deb -libncursesw6 6.3-2ubuntu0.1 deb -libnetfilter-conntrack3 1.0.9-1 deb -libnettle8 3.7.3-1build2 deb -libnfnetlink0 1.0.1-3build3 deb -libnftnl11 1.2.1-1build1 deb -libnghttp2-14 1.43.0-1build3 deb -libnpmaccess 6.0.4 npm -libnpmdiff 4.0.5 npm -libnpmexec 4.0.14 npm -libnpmfund 3.0.5 npm -libnpmhook 8.0.4 npm -libnpmorg 4.0.4 npm -libnpmpack 4.1.3 npm -libnpmpublish 6.0.5 npm -libnpmsearch 5.0.4 npm -libnpmteam 4.0.4 npm -libnpmversion 3.0.7 npm -libnpth0 1.6-3build2 deb -libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.14.0-1 deb -libnvidia-container1 1.14.0-1 deb -libonig5 6.9.7.1-2build1 deb -libp11-kit0 0.24.0-6build1 deb -libpam-modules 1.4.0-11ubuntu2.3 deb -libpam-modules-bin 1.4.0-11ubuntu2.3 deb -libpam-runtime 1.4.0-11ubuntu2.3 deb -libpam0g 1.4.0-11ubuntu2.3 deb -libpcre2-8-0 10.39-3ubuntu0.1 deb -libpcre3 2:8.39-13ubuntu0.22.04.1 deb -libprocps8 2:3.3.17-6ubuntu2 deb -libpsl5 0.21.0-1.2build2 deb -libpython3-stdlib 3.10.6-1~22.04 deb -libpython3.10-minimal 3.10.12-1~22.04.2 deb -libpython3.10-stdlib 3.10.12-1~22.04.2 deb -libreadline8 8.1.2-1 deb -librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb -libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libseccomp2 2.5.3-2ubuntu2 deb -libselinux1 3.3-1build2 deb -libsemanage-common 3.3-1build2 deb -libsemanage2 3.3-1build2 deb -libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3 deb -libsqlite3-0 3.37.2-2ubuntu0.1 deb -libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2ubuntu0.22.04.1 deb -libssl3 3.0.2-0ubuntu1.10 deb -libstdc++6 12.3.0-1ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.9 deb -libtasn1-6 4.18.0-4build1 deb -libtinfo6 6.3-2ubuntu0.1 deb -libtirpc-common 1.3.2-2ubuntu0.1 deb -libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.9 deb -libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3 deb -libxtables12 1.8.7-1ubuntu5.1 deb -libxxhash0 0.8.1-1 deb -libzstd1 1.4.8+dfsg-3build1 deb -locales 2.35-0ubuntu3.1 deb -lodash 4.17.21 npm -login 1:4.8.1-2ubuntu2.1 deb -logsave 1.46.5-2ubuntu1.1 deb -lru-cache 6.0.0 npm -lru-cache 7.13.2 npm -lsb-base 11.1.0ubuntu4 deb -lsb-release 11.1.0ubuntu4 deb -lsof 4.93.2+dfsg-1.1build2 deb -make-fetch-happen 10.2.1 npm -mawk 1.3.4.20200120-3 deb -media-typer 0.3.0 npm -media-types 7.0.0 deb -merge-descriptors 1.0.1 npm -methods 1.1.2 npm -mime 1.6.0 npm -mime-db 1.52.0 npm -mime-types 2.1.35 npm -minimatch 3.1.2 npm -minimatch 5.1.0 npm -minipass 3.3.4 npm -minipass-collect 1.0.2 npm -minipass-fetch 2.1.1 npm -minipass-flush 1.0.5 npm -minipass-json-stream 1.0.1 npm -minipass-pipeline 1.2.4 npm -minipass-sized 1.0.3 npm -minizlib 2.1.2 npm -mkdirp 1.0.4 npm -mkdirp-classic 0.5.3 npm -mkdirp-infer-owner 2.0.0 npm -mount 2.37.2-4ubuntu3 deb -ms 2.0.0 npm -ms 2.1.2 npm -ms 2.1.3 npm -mute-stream 0.0.8 npm -nan 2.17.0 npm -ncurses-base 6.3-2ubuntu0.1 deb -ncurses-bin 6.3-2ubuntu0.1 deb -negotiator 0.6.3 npm -netbase 6.3 deb -netcat 1.218-4ubuntu1 deb -netcat-openbsd 1.218-4ubuntu1 deb -node-gyp 9.1.0 npm -node-pty 0.10.1 npm -nodejs 16.20.2-deb-1nodesource1 deb -nopt 5.0.0 npm -nopt 6.0.0 npm -normalize-package-data 4.0.1 npm -npm 8.19.4 npm -npm-audit-report 3.0.0 npm -npm-bundled 1.1.2 npm -npm-bundled 2.0.1 npm -npm-init 0.0.0 npm -npm-install-checks 5.0.0 npm -npm-normalize-package-bin 1.0.1 npm -npm-normalize-package-bin 2.0.0 npm -npm-package-arg 9.1.0 npm -npm-packlist 5.1.3 npm -npm-pick-manifest 7.0.2 npm -npm-profile 6.2.1 npm -npm-registry-fetch 13.3.1 npm -npm-user-validate 1.0.1 npm -npmlog 6.0.2 npm -nvidia-container-toolkit 1.14.0-1 deb -nvidia-container-toolkit-base 1.14.0-1 deb -nvidia-docker2 2.14.0-1 deb -object-assign 4.1.1 npm -object-inspect 1.12.3 npm -on-finished 2.4.1 npm -once 1.4.0 npm -opener 1.5.2 npm -openssl 3.0.2-0ubuntu1.10 deb -p-map 4.0.0 npm -pacote 13.6.2 npm -parse-conflict-json 2.0.2 npm -parseurl 1.3.3 npm -passwd 1:4.8.1-2ubuntu2.1 deb -path-is-absolute 1.0.1 npm -path-to-regexp 0.1.7 npm -perl-base 5.34.0-3ubuntu1.2 deb -pigz 2.6-1 deb -pinentry-curses 1.1.1-1build2 deb -postcss-selector-parser 6.0.10 npm -proc-log 2.0.1 npm -procps 2:3.3.17-6ubuntu2 deb -promise-all-reject-late 1.0.1 npm -promise-call-limit 1.0.1 npm -promise-inflight 1.0.1 npm -promise-retry 2.0.1 npm -promzard 0.3.0 npm -proxy-addr 2.0.7 npm -publicsuffix 20211207.1025-1 deb -pump 3.0.0 npm -python3 3.10.6-1~22.04 deb -python3-minimal 3.10.6-1~22.04 deb -python3.10 3.10.12-1~22.04.2 deb -python3.10-minimal 3.10.12-1~22.04.2 deb -qrcode-terminal 0.12.0 npm -qs 6.11.0 npm -range-parser 1.2.1 npm -raw-body 2.5.1 npm -read 1.0.7 npm -read-cmd-shim 3.0.0 npm -read-package-json 5.0.2 npm -read-package-json-fast 2.0.3 npm -readable-stream 3.6.0 npm -readable-stream 3.6.2 npm -readdir-scoped-modules 1.1.0 npm -readline-common 8.1.2-1 deb -retry 0.12.0 npm -rimraf 3.0.2 npm -safe-buffer 5.2.1 npm -safer-buffer 2.1.2 npm -sed 4.8-1ubuntu2 deb -semver 7.3.7 npm -send 0.18.0 npm -sensible-utils 0.0.17 deb -serve-static 1.15.0 npm -set-blocking 2.0.0 npm -setprototypeof 1.2.0 npm -side-channel 1.0.4 npm -signal-exit 3.0.7 npm -sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 go-module -sigs.k8s.io/structured-merge-diff/v4 v4.1.2 go-module -sigs.k8s.io/structured-merge-diff/v4 v4.2.3 go-module -sigs.k8s.io/yaml v1.2.0 go-module -sigs.k8s.io/yaml v1.3.0 go-module -smart-buffer 4.2.0 npm -socket.io 4.7.2 npm -socket.io-adapter 2.5.2 npm -socket.io-parser 4.2.4 npm -socks 2.7.0 npm -socks-proxy-agent 7.0.0 npm -spdx-correct 3.1.1 npm -spdx-exceptions 2.3.0 npm -spdx-expression-parse 3.0.1 npm -spdx-license-ids 3.0.11 npm -split-ca 1.0.1 npm -ssh2 1.14.0 npm -ssri 9.0.1 npm -statuses 2.0.1 npm -string-width 4.2.3 npm -string_decoder 1.3.0 npm -strip-ansi 6.0.1 npm -sudo 1.9.9-1ubuntu2.4 deb -supports-color 7.2.0 npm -systeminformation 5.21.4 npm -sysvinit-utils 3.01-1ubuntu1 deb -tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tar 6.1.11 npm -tar-fs 2.0.1 npm -tar-stream 2.2.0 npm -text-table 0.2.0 npm -tiny-relative-date 1.3.0 npm -toidentifier 1.0.1 npm -treeverse 2.0.0 npm -tweetnacl 0.14.5 npm -type-is 1.6.18 npm -tzdata 2023c-0ubuntu0.22.04.2 deb -ubuntu-keyring 2021.03.26 deb -uidmap 1:4.8.1-2ubuntu2.1 deb -unique-filename 2.0.1 npm -unique-slug 3.0.0 npm -unpipe 1.0.0 npm -usrmerge 25ubuntu2 deb -util-deprecate 1.0.2 npm -util-linux 2.37.2-4ubuntu3 deb -utils-merge 1.0.1 npm -validate-npm-package-license 3.0.4 npm -validate-npm-package-name 4.0.0 npm -vary 1.1.2 npm -walk-up-path 1.0.0 npm -wcwidth 1.0.1 npm -which 2.0.2 npm -wide-align 1.1.5 npm -wrappy 1.0.2 npm -write-file-atomic 4.0.2 npm -ws 8.11.0 npm -xfsprogs 5.13.0-1ubuntu2 deb -yallist 4.0.0 npm -zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb +NAME VERSION TYPE +1to2 1.0.0 npm +@balena/dockerignore 1.0.2 npm +@colors/colors 1.5.0 npm +@gar/promisify 1.1.3 npm +@isaacs/string-locale-compare 1.1.0 npm +@npmcli/arborist 5.6.3 npm +@npmcli/ci-detect 2.0.0 npm +@npmcli/config 4.2.2 npm +@npmcli/disparity-colors 2.0.0 npm +@npmcli/fs 2.1.2 npm +@npmcli/git 3.0.2 npm +@npmcli/installed-package-contents 1.0.7 npm +@npmcli/map-workspaces 2.0.4 npm +@npmcli/metavuln-calculator 3.1.1 npm +@npmcli/move-file 2.0.1 npm +@npmcli/name-from-folder 1.0.1 npm +@npmcli/node-gyp 2.0.0 npm +@npmcli/package-json 2.0.0 npm +@npmcli/promise-spawn 3.0.0 npm +@npmcli/query 1.2.0 npm +@npmcli/run-script 4.2.1 npm +@socket.io/component-emitter 3.1.0 npm +@tootallnate/once 2.0.0 npm +@types/cookie 0.4.1 npm +@types/cors 2.8.14 npm +@types/node 20.5.9 npm +abbrev 1.1.1 npm +accepts 1.3.8 npm +adduser 3.118ubuntu5 deb +agent-base 6.0.2 npm +agentkeepalive 4.2.1 npm +aggregate-error 3.1.0 npm +ansi-regex 5.0.1 npm +ansi-styles 4.3.0 npm +aproba 2.0.0 npm +apt 2.4.10 deb +apt-utils 2.4.10 deb +archy 1.0.0 npm +are-we-there-yet 3.0.1 npm +argparse 2.0.1 npm +array-flatten 1.1.1 npm +asap 2.0.6 npm +asn1 0.2.6 npm +balanced-match 1.0.2 npm +base-files 12ubuntu4.3 deb +base-passwd 3.5.52build1 deb +base64-js 1.5.1 npm +base64id 2.0.0 npm +bash 5.1-6ubuntu1 deb +bash 5.1.16 binary +bcrypt-pbkdf 1.0.2 npm +bin-links 3.0.3 npm +binary-extensions 2.2.0 npm +bl 4.1.0 npm +body-parser 1.20.1 npm +brace-expansion 1.1.11 npm +brace-expansion 2.0.1 npm +bsdutils 1:2.37.2-4ubuntu3 deb +btrfs-progs 5.16.2-1 deb +buffer 5.7.1 npm +buildcheck 0.0.6 npm +builtins 5.0.1 npm +bytes 3.1.2 npm +ca-certificates 20230311ubuntu0.22.04.1 deb +cacache 16.1.3 npm +call-bind 1.0.2 npm +chalk 4.1.2 npm +chownr 1.1.4 npm +chownr 2.0.0 npm +cidr-regex 3.1.1 npm +clean-stack 2.2.0 npm +cli-columns 4.0.0 npm +cli-table3 0.6.2 npm +clone 1.0.4 npm +cloud.google.com/go v0.102.1 go-module +cloud.google.com/go/compute v1.7.0 go-module +cloud.google.com/go/logging v1.4.2 go-module +cmd-shim 5.0.0 npm +code.cloudfoundry.org/clock v1.0.0 go-module +color-convert 2.0.1 npm +color-name 1.1.4 npm +color-support 1.1.3 npm +columnify 1.6.0 npm +common-ancestor-path 1.0.1 npm +concat-map 0.0.1 npm +console-control-strings 1.1.0 npm +containerd.io 1.6.22-1 deb +content-disposition 0.5.4 npm +content-type 1.0.5 npm +cookie 0.4.2 npm +cookie 0.5.0 npm +cookie-signature 1.0.6 npm +corepack 0.17.0 npm +coreutils 8.32-4.1ubuntu1 deb +cors 2.8.5 npm +cpu-features 0.0.9 npm +cssesc 3.0.0 npm +curl 7.81.0-1ubuntu1.13 deb +dash 0.5.11+git20210903+057cd650a4ed-3build1 deb +debconf 1.5.79ubuntu1 deb +debianutils 5.5-1ubuntu2 deb +debug 2.6.9 npm +debug 4.3.4 npm +debuglog 1.0.1 npm +defaults 1.0.3 npm +delegates 1.0.0 npm +depd 1.1.2 npm +depd 2.0.0 npm +destroy 1.2.0 npm +dezalgo 1.0.4 npm +diff 5.1.0 npm +diffutils 1:3.8-0ubuntu2 deb +dirmngr 2.2.27-3ubuntu2.1 deb +distro-info-data 0.52ubuntu0.4 deb +docker-ce 5:24.0.6-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:24.0.6-1~ubuntu.22.04~jammy deb +docker-compose-plugin 2.21.0-1~ubuntu.22.04~jammy deb +docker-modem 3.0.8 npm +dockerode 3.3.5 npm +dpkg 1.21.1ubuntu2.2 deb +drm-info 2.2.0-2 deb +e2fsprogs 1.46.5-2ubuntu1.1 deb +ee-first 1.1.1 npm +emoji-regex 8.0.0 npm +encodeurl 1.0.2 npm +encoding 0.1.13 npm +end-of-stream 1.4.4 npm +engine.io 6.5.2 npm +engine.io-parser 5.2.1 npm +env-paths 2.2.1 npm +err-code 2.0.3 npm +escape-html 1.0.3 npm +etag 1.8.1 npm +express 4.18.2 npm +fastest-levenshtein 1.0.12 npm +finalhandler 1.2.0 npm +findutils 4.8.0-1ubuntu3 deb +forwarded 0.2.0 npm +fresh 0.5.2 npm +fs-constants 1.0.0 npm +fs-minipass 2.1.0 npm +fs.realpath 1.0.0 npm +function-bind 1.1.1 npm +fuse-overlayfs 1.7.1-1 deb +fuse3 3.10.5-1build1 deb +gauge 4.0.4 npm +gcc-12-base 12.3.0-1ubuntu1~22.04 deb +get-intrinsic 1.2.1 npm +github.com/AlecAivazis/survey/v2 v2.3.7 go-module +github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module +github.com/Masterminds/semver/v3 v3.2.1 go-module +github.com/Microsoft/hcsshim v0.9.8 go-module +github.com/NVIDIA/go-nvml v0.12.0-1 go-module +github.com/NVIDIA/nvidia-container-toolkit v1.14.0 go-module +github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module +github.com/a8m/envsubst v1.3.0 go-module +github.com/adrg/xdg v0.4.0 go-module +github.com/agext/levenshtein v1.2.3 go-module +github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 go-module +github.com/armon/go-metrics v0.4.1 go-module +github.com/aws/aws-sdk-go-v2 v1.16.13 go-module +github.com/aws/aws-sdk-go-v2 v1.17.6 go-module +github.com/aws/aws-sdk-go-v2/config v1.17.4 go-module +github.com/aws/aws-sdk-go-v2/config v1.18.16 go-module +github.com/aws/aws-sdk-go-v2/credentials v1.12.17 go-module +github.com/aws/aws-sdk-go-v2/credentials v1.13.16 go-module +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.14 go-module +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.24 go-module +github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.20 go-module +github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.30 go-module +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.14 go-module +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.24 go-module +github.com/aws/aws-sdk-go-v2/internal/ini v1.3.21 go-module +github.com/aws/aws-sdk-go-v2/internal/ini v1.3.31 go-module +github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.15.17 go-module +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.14 go-module +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.24 go-module +github.com/aws/aws-sdk-go-v2/service/sso v1.11.20 go-module +github.com/aws/aws-sdk-go-v2/service/sso v1.12.5 go-module +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.13.2 go-module +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.5 go-module +github.com/aws/aws-sdk-go-v2/service/sts v1.16.16 go-module +github.com/aws/aws-sdk-go-v2/service/sts v1.18.6 go-module +github.com/aws/smithy-go v1.13.1 go-module +github.com/aws/smithy-go v1.13.5 go-module +github.com/beorn7/perks v1.0.1 go-module +github.com/blang/semver v3.5.1+incompatible go-module +github.com/bsphere/le_go v0.0.0-20200109081728-fc06dab2caa8 go-module +github.com/buger/goterm v1.0.4 go-module +github.com/cenkalti/backoff/v4 v4.1.2 go-module +github.com/cenkalti/backoff/v4 v4.2.0 go-module +github.com/cespare/xxhash/v2 v2.1.2 go-module +github.com/cespare/xxhash/v2 v2.2.0 go-module +github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module +github.com/cilium/ebpf v0.7.0 go-module +github.com/cilium/ebpf v0.9.1 go-module +github.com/cloudflare/cfssl v0.0.0-20180323000720-5d63dbd981b5 go-module +github.com/compose-spec/compose-go v1.18.3 go-module +github.com/container-orchestrated-devices/container-device-interface v0.6.0 go-module +github.com/container-storage-interface/spec v1.5.0 go-module +github.com/containerd/aufs v1.0.0 go-module +github.com/containerd/btrfs v1.0.0 go-module +github.com/containerd/cgroups v1.0.4 go-module +github.com/containerd/cgroups/v3 v3.0.2 go-module +github.com/containerd/console v1.0.3 go-module +github.com/containerd/containerd v1.6.22 go-module +github.com/containerd/containerd v1.7.3 go-module +github.com/containerd/continuity v0.3.0 go-module +github.com/containerd/continuity v0.4.1 go-module +github.com/containerd/fifo v1.0.0 go-module +github.com/containerd/fifo v1.1.0 go-module +github.com/containerd/go-cni v1.1.6 go-module +github.com/containerd/go-runc v1.0.0 go-module +github.com/containerd/go-runc v1.1.0 go-module +github.com/containerd/imgcrypt v1.1.4 go-module +github.com/containerd/nri v0.1.0 go-module +github.com/containerd/stargz-snapshotter/estargz v0.13.0 go-module +github.com/containerd/ttrpc v1.1.2 go-module +github.com/containerd/typeurl v1.0.2 go-module +github.com/containerd/typeurl/v2 v2.1.0 go-module +github.com/containerd/typeurl/v2 v2.1.1 go-module +github.com/containerd/zfs v1.1.0 go-module +github.com/containernetworking/cni v1.1.1 go-module +github.com/containernetworking/plugins v1.1.1 go-module +github.com/containers/ocicrypt v1.1.3 go-module +github.com/coreos/go-systemd/v22 v22.3.2 go-module +github.com/coreos/go-systemd/v22 v22.5.0 go-module +github.com/cpuguy83/go-md2man/v2 v2.0.0 go-module +github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module +github.com/cpuguy83/go-md2man/v2 v2.0.2 go-module +github.com/cyphar/filepath-securejoin v0.2.3 go-module +github.com/davecgh/go-spew v1.1.1 go-module +github.com/deckarep/golang-set/v2 v2.3.0 go-module +github.com/dimchansky/utfbom v1.1.1 go-module +github.com/distribution/distribution/v3 v3.0.0-20230601133803-97b1d649c493 go-module +github.com/docker/buildx v0.11.2 go-module +github.com/docker/cli v24.0.5+incompatible go-module +github.com/docker/cli/cmd/docker v24.0.6 go-module +github.com/docker/compose/v2 (devel) go-module +github.com/docker/distribution v2.8.2+incompatible go-module +github.com/docker/docker v24.0.5+incompatible go-module +github.com/docker/docker v24.0.6 go-module +github.com/docker/docker-credential-helpers v0.7.0 go-module +github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module +github.com/docker/go-connections v0.4.0 go-module +github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module +github.com/docker/go-metrics v0.0.1 go-module +github.com/docker/go-units v0.4.0 go-module +github.com/docker/go-units v0.5.0 go-module +github.com/docker/libkv v0.2.2-0.20211217103745-e480589147e3 go-module +github.com/docker/libtrust v0.0.0-20150526203908-9cbd2a1374f4 go-module +github.com/dustin/go-humanize v1.0.0 go-module +github.com/elliotchance/orderedmap v1.4.0 go-module +github.com/emicklei/go-restful v2.9.5+incompatible go-module +github.com/emicklei/go-restful/v3 v3.10.1 go-module +github.com/fatih/color v1.13.0 go-module +github.com/felixge/httpsnoop v1.0.2 go-module +github.com/felixge/httpsnoop v1.0.3 go-module +github.com/fernet/fernet-go v0.0.0-20211208181803-9f70042a33ee go-module +github.com/fluent/fluent-logger-golang v1.9.0 go-module +github.com/fsnotify/fsnotify v1.4.9 go-module +github.com/fsnotify/fsnotify v1.5.4 go-module +github.com/fvbommel/sortorder v1.0.2 go-module +github.com/go-logr/logr v1.2.2 go-module +github.com/go-logr/logr v1.2.3 go-module +github.com/go-logr/logr v1.2.4 go-module +github.com/go-logr/stdr v1.2.2 go-module +github.com/go-openapi/jsonpointer v0.19.5 go-module +github.com/go-openapi/jsonreference v0.20.0 go-module +github.com/go-openapi/swag v0.19.14 go-module +github.com/goccy/go-yaml v1.9.5 go-module +github.com/godbus/dbus/v5 v5.0.6 go-module +github.com/godbus/dbus/v5 v5.1.0 go-module +github.com/gofrs/flock v0.8.1 go-module +github.com/gogo/googleapis v1.3.2 go-module +github.com/gogo/googleapis v1.4.1 go-module +github.com/gogo/protobuf v1.3.2 go-module +github.com/golang-jwt/jwt/v4 v4.4.2 go-module +github.com/golang/gddo v0.0.0-20190904175337-72a348e765d2 go-module +github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da go-module +github.com/golang/mock v1.6.0 go-module +github.com/golang/protobuf v1.5.2 go-module +github.com/golang/protobuf v1.5.3 go-module +github.com/google/btree v1.1.2 go-module +github.com/google/certificate-transparency-go v1.1.4 go-module +github.com/google/gnostic v0.5.7-v3refs go-module +github.com/google/go-cmp v0.5.9 go-module +github.com/google/gofuzz v1.2.0 go-module +github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module +github.com/google/uuid v1.3.0 go-module +github.com/googleapis/enterprise-certificate-proxy v0.1.0 go-module +github.com/googleapis/gax-go/v2 v2.4.0 go-module +github.com/gorilla/mux v1.8.0 go-module +github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module +github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module +github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module +github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 go-module +github.com/hashicorp/errwrap v1.1.0 go-module +github.com/hashicorp/go-immutable-radix v1.3.1 go-module +github.com/hashicorp/go-memdb v1.3.2 go-module +github.com/hashicorp/go-msgpack v0.5.5 go-module +github.com/hashicorp/go-multierror v1.1.1 go-module +github.com/hashicorp/go-sockaddr v1.0.2 go-module +github.com/hashicorp/go-version v1.6.0 go-module +github.com/hashicorp/golang-lru v0.5.4 go-module +github.com/hashicorp/memberlist v0.4.0 go-module +github.com/hashicorp/serf v0.8.5 go-module +github.com/imdario/mergo v0.3.12 go-module +github.com/imdario/mergo v0.3.13 go-module +github.com/imdario/mergo v0.3.16 go-module +github.com/in-toto/in-toto-golang v0.5.0 go-module +github.com/intel/goresctrl v0.2.0 go-module +github.com/ishidawataru/sctp v0.0.0-20230406120618-7ff4192f6ff2 go-module +github.com/jinzhu/copier v0.3.5 go-module +github.com/jonboulle/clockwork v0.4.0 go-module +github.com/josharian/intern v1.0.0 go-module +github.com/json-iterator/go v1.1.12 go-module +github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module +github.com/klauspost/compress v1.11.13 go-module +github.com/klauspost/compress v1.16.3 go-module +github.com/klauspost/compress v1.16.5 go-module +github.com/magiconair/properties v1.8.6 go-module +github.com/mailru/easyjson v0.7.6 go-module +github.com/mattn/go-colorable v0.1.12 go-module +github.com/mattn/go-colorable v0.1.13 go-module +github.com/mattn/go-isatty v0.0.14 go-module +github.com/mattn/go-isatty v0.0.17 go-module +github.com/mattn/go-runewidth v0.0.14 go-module +github.com/mattn/go-shellwords v1.0.12 go-module +github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module +github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module +github.com/miekg/dns v1.1.43 go-module +github.com/miekg/pkcs11 v1.1.1 go-module +github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module +github.com/mistifyio/go-zfs/v3 v3.0.1 go-module +github.com/mitchellh/hashstructure/v2 v2.0.2 go-module +github.com/mitchellh/mapstructure v1.5.0 go-module +github.com/moby/buildkit v0.11.7-0.20230723230859-616c3f613b54 go-module +github.com/moby/buildkit v0.12.1 go-module +github.com/moby/ipvs v1.1.0 go-module +github.com/moby/locker v1.0.1 go-module +github.com/moby/patternmatcher v0.5.0 go-module +github.com/moby/patternmatcher v0.6.0 go-module +github.com/moby/pubsub v1.0.0 go-module +github.com/moby/spdystream v0.2.0 go-module +github.com/moby/swarmkit/v2 v2.0.0-20230531205928-01bb7a41396b go-module +github.com/moby/sys/mount v0.3.3 go-module +github.com/moby/sys/mountinfo v0.5.0 go-module +github.com/moby/sys/mountinfo v0.6.2 go-module +github.com/moby/sys/sequential v0.5.0 go-module +github.com/moby/sys/signal v0.6.0 go-module +github.com/moby/sys/signal v0.7.0 go-module +github.com/moby/sys/symlink v0.2.0 go-module +github.com/moby/term v0.5.0 go-module +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module +github.com/modern-go/reflect2 v1.0.2 go-module +github.com/morikuni/aec v1.0.0 go-module +github.com/mrunalp/fileutils v0.5.0 go-module +github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 go-module +github.com/opencontainers/go-digest v1.0.0 go-module +github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module +github.com/opencontainers/image-spec v1.1.0-rc3 go-module +github.com/opencontainers/image-spec v1.1.0-rc4 go-module +github.com/opencontainers/runc v0.0.0-20230719051532-82f18fe0e44a go-module +github.com/opencontainers/runc v1.1.5 go-module +github.com/opencontainers/runc v1.1.6 go-module +github.com/opencontainers/runc v1.1.7 go-module +github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module +github.com/opencontainers/runtime-spec v1.1.0-rc.2 go-module +github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module +github.com/opencontainers/selinux v1.10.0 go-module +github.com/opencontainers/selinux v1.10.1 go-module +github.com/opencontainers/selinux v1.11.0 go-module +github.com/package-url/packageurl-go v0.1.1-0.20220428063043-89078438f170 go-module +github.com/pelletier/go-toml v1.9.4 go-module +github.com/pelletier/go-toml v1.9.5 go-module +github.com/philhofer/fwd v1.1.2 go-module +github.com/pkg/errors v0.9.1 go-module +github.com/pmezard/go-difflib v1.0.0 go-module +github.com/prometheus/client_golang v1.11.1 go-module +github.com/prometheus/client_golang v1.14.0 go-module +github.com/prometheus/client_model v0.2.0 go-module +github.com/prometheus/client_model v0.3.0 go-module +github.com/prometheus/common v0.30.0 go-module +github.com/prometheus/common v0.37.0 go-module +github.com/prometheus/common v0.42.0 go-module +github.com/prometheus/procfs v0.7.3 go-module +github.com/prometheus/procfs v0.8.0 go-module +github.com/prometheus/procfs v0.9.0 go-module +github.com/rivo/uniseg v0.2.0 go-module +github.com/rootless-containers/rootlesskit v1.1.1 go-module +github.com/russross/blackfriday/v2 v2.0.1 go-module +github.com/russross/blackfriday/v2 v2.1.0 go-module +github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 go-module +github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 go-module +github.com/secure-systems-lab/go-securesystemslib v0.4.0 go-module +github.com/serialx/hashring v0.0.0-20190422032157-8b2912629002 go-module +github.com/shibumi/go-pathspec v1.3.0 go-module +github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module +github.com/sirupsen/logrus v1.8.1 go-module +github.com/sirupsen/logrus v1.9.0 go-module +github.com/sirupsen/logrus v1.9.3 go-module +github.com/spdx/tools-golang v0.3.1-0.20230104082527-d6f58551be3f go-module +github.com/spf13/cobra v1.4.0 go-module +github.com/spf13/cobra v1.6.1 go-module +github.com/spf13/cobra v1.7.0 go-module +github.com/spf13/pflag v1.0.5 go-module +github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 go-module +github.com/stretchr/testify v1.8.4 go-module +github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module +github.com/tchap/go-patricia v2.2.6+incompatible go-module +github.com/theupdateframework/notary v0.7.0 go-module +github.com/tilt-dev/fsnotify v1.4.8-0.20220602155310-fff9c274a375 go-module +github.com/timtadh/data-structures v0.5.3 go-module +github.com/timtadh/lexmachine v0.2.2 go-module +github.com/tinylib/msgp v1.1.6 go-module +github.com/tonistiigi/fsutil v0.0.0-20230105215944-fb433841cbfa go-module +github.com/tonistiigi/fsutil v0.0.0-20230629203738-36ef4d8c0dbb go-module +github.com/tonistiigi/go-actions-cache v0.0.0-20220404170428-0bdeb6e1eac7 go-module +github.com/tonistiigi/go-archvariant v1.0.0 go-module +github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module +github.com/tonistiigi/vt100 v0.0.0-20230623042737-f9a4f7ef6531 go-module +github.com/urfave/cli v1.22.1 go-module +github.com/urfave/cli/v2 v2.3.0 go-module +github.com/vbatts/tar-split v0.11.2 go-module +github.com/vishvananda/netlink v1.1.0 go-module +github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5 go-module +github.com/vishvananda/netlink v1.2.1-beta.2 go-module +github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df go-module +github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f go-module +github.com/vishvananda/netns v0.0.2 go-module +github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb go-module +github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module +github.com/xeipuuv/gojsonschema v1.2.0 go-module +gitlab.com/nvidia/cloud-native/go-nvlib v0.0.0-20230818092907-09424fdc8884 go-module +glob 7.2.3 npm +glob 8.0.3 npm +gnupg 2.2.27-3ubuntu2.1 deb +gnupg-l10n 2.2.27-3ubuntu2.1 deb +gnupg-utils 2.2.27-3ubuntu2.1 deb +go.etcd.io/bbolt v1.3.7 go-module +go.etcd.io/etcd/client/pkg/v3 v3.5.6 go-module +go.etcd.io/etcd/pkg/v3 v3.5.6 go-module +go.etcd.io/etcd/raft/v3 v3.5.6 go-module +go.etcd.io/etcd/server/v3 v3.5.6 go-module +go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module +go.opencensus.io v0.23.0 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.28.0 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.29.0 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.40.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.29.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.40.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.29.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.40.0 go-module +go.opentelemetry.io/otel v1.14.0 go-module +go.opentelemetry.io/otel v1.3.0 go-module +go.opentelemetry.io/otel v1.4.1 go-module +go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.14.0 go-module +go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.4.1 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.14.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.4.1 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.14.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.4.1 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.14.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.4.1 go-module +go.opentelemetry.io/otel/internal/metric v0.27.0 go-module +go.opentelemetry.io/otel/metric v0.27.0 go-module +go.opentelemetry.io/otel/metric v0.37.0 go-module +go.opentelemetry.io/otel/sdk v1.14.0 go-module +go.opentelemetry.io/otel/sdk v1.3.0 go-module +go.opentelemetry.io/otel/sdk v1.4.1 go-module +go.opentelemetry.io/otel/trace v1.14.0 go-module +go.opentelemetry.io/otel/trace v1.3.0 go-module +go.opentelemetry.io/otel/trace v1.4.1 go-module +go.opentelemetry.io/proto/otlp v0.11.0 go-module +go.opentelemetry.io/proto/otlp v0.12.0 go-module +go.opentelemetry.io/proto/otlp v0.19.0 go-module +go.uber.org/atomic v1.9.0 go-module +go.uber.org/multierr v1.8.0 go-module +go.uber.org/zap v1.21.0 go-module +golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd go-module +golang.org/x/crypto v0.2.0 go-module +golang.org/x/crypto v0.7.0 go-module +golang.org/x/exp v0.0.0-20230713183714-613f0c0eb8a1 go-module +golang.org/x/mod v0.5.0 go-module +golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module +golang.org/x/net v0.10.0 go-module +golang.org/x/net v0.8.0 go-module +golang.org/x/net v0.9.0 go-module +golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f go-module +golang.org/x/oauth2 v0.1.0 go-module +golang.org/x/oauth2 v0.7.0 go-module +golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module +golang.org/x/sync v0.1.0 go-module +golang.org/x/sync v0.3.0 go-module +golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module +golang.org/x/sys v0.6.0 go-module +golang.org/x/sys v0.7.0 go-module +golang.org/x/sys v0.8.0 go-module +golang.org/x/term v0.6.0 go-module +golang.org/x/term v0.7.0 go-module +golang.org/x/text v0.3.7 go-module +golang.org/x/text v0.8.0 go-module +golang.org/x/text v0.9.0 go-module +golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module +golang.org/x/time v0.3.0 go-module +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module +google.golang.org/api v0.93.0 go-module +google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63 go-module +google.golang.org/genproto v0.0.0-20220706185917-7780775163c4 go-module +google.golang.org/genproto v0.0.0-20230526161137-0005af68ea54 go-module +google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9 go-module +google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19 go-module +google.golang.org/grpc v1.50.1 go-module +google.golang.org/grpc v1.57.0 go-module +google.golang.org/protobuf v1.27.1 go-module +google.golang.org/protobuf v1.28.1 go-module +google.golang.org/protobuf v1.30.0 go-module +gopkg.in/inf.v0 v0.9.1 go-module +gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module +gopkg.in/square/go-jose.v2 v2.5.1 go-module +gopkg.in/yaml.v2 v2.4.0 go-module +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b go-module +gopkg.in/yaml.v3 v3.0.1 go-module +gpg 2.2.27-3ubuntu2.1 deb +gpg-agent 2.2.27-3ubuntu2.1 deb +gpg-wks-client 2.2.27-3ubuntu2.1 deb +gpg-wks-server 2.2.27-3ubuntu2.1 deb +gpgconf 2.2.27-3ubuntu2.1 deb +gpgsm 2.2.27-3ubuntu2.1 deb +gpgv 2.2.27-3ubuntu2.1 deb +graceful-fs 4.2.10 npm +grep 3.7-1build1 deb +gzip 1.10-4ubuntu4.1 deb +has 1.0.3 npm +has-flag 4.0.0 npm +has-proto 1.0.1 npm +has-symbols 1.0.3 npm +has-unicode 2.0.1 npm +hosted-git-info 5.2.1 npm +hostname 3.23ubuntu2 deb +http-cache-semantics 4.1.1 npm +http-errors 2.0.0 npm +http-proxy-agent 5.0.0 npm +https-proxy-agent 5.0.1 npm +humanize-ms 1.2.1 npm +iconv-lite 0.4.24 npm +iconv-lite 0.6.3 npm +ieee754 1.2.1 npm +ignore-walk 5.0.1 npm +imurmurhash 0.1.4 npm +indent-string 4.0.0 npm +infer-owner 1.0.4 npm +inflight 1.0.6 npm +inherits 2.0.4 npm +ini 3.0.1 npm +init-package-json 3.0.2 npm +init-system-helpers 1.62 deb +ip 2.0.0 npm +ip-regex 4.3.0 npm +ipaddr.js 1.9.1 npm +iptables 1.8.7-1ubuntu5.1 deb +is-cidr 4.0.2 npm +is-core-module 2.10.0 npm +is-fullwidth-code-point 3.0.0 npm +is-lambda 1.0.1 npm +isexe 2.0.0 npm +jq 1.6-2.1ubuntu3 deb +js-yaml 4.1.0 npm +json-parse-even-better-errors 2.3.1 npm +json-stringify-nice 1.1.4 npm +jsonparse 1.3.1 npm +just-diff 5.1.1 npm +just-diff-apply 5.4.1 npm +k8s.io/api v0.22.5 go-module +k8s.io/api v0.26.2 go-module +k8s.io/apimachinery v0.22.5 go-module +k8s.io/apimachinery v0.26.2 go-module +k8s.io/apiserver v0.22.5 go-module +k8s.io/client-go v0.22.5 go-module +k8s.io/client-go v0.26.2 go-module +k8s.io/component-base v0.22.5 go-module +k8s.io/cri-api v0.25.0 go-module +k8s.io/klog/v2 v2.30.0 go-module +k8s.io/klog/v2 v2.80.1 go-module +k8s.io/klog/v2 v2.90.1 go-module +k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 go-module +k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b go-module +k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 go-module +kasm-wizard 0.0.1 npm +libacl1 2.3.1-1 deb +libapt-pkg6.0 2.4.10 deb +libassuan0 2.5.5-1build1 deb +libattr1 1:2.5.1-1build1 deb +libaudit-common 1:3.0.7-1build1 deb +libaudit1 1:3.0.7-1build1 deb +libblkid1 2.37.2-4ubuntu3 deb +libbrotli1 1.0.9-2build6 deb +libbsd0 0.11.5-1 deb +libbz2-1.0 1.0.8-5build1 deb +libc-bin 2.35-0ubuntu3.1 deb +libc6 2.35-0ubuntu3.1 deb +libcap-ng0 0.7.9-2.2build3 deb +libcap2 1:2.44-1ubuntu0.22.04.1 deb +libcom-err2 1.46.5-2ubuntu1.1 deb +libcrypt1 1:4.4.27-1 deb +libcurl4 7.81.0-1ubuntu1.13 deb +libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb +libdebconfclient0 0.261ubuntu1 deb +libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb +libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb +libdrm2 2.4.113-2~ubuntu0.22.04.1 deb +libedit2 3.1-20210910-1build1 deb +libexpat1 2.4.7-1ubuntu0.2 deb +libext2fs2 1.46.5-2ubuntu1.1 deb +libffi8 3.4.2-4 deb +libfuse3-3 3.10.5-1build1 deb +libgcc-s1 12.3.0-1ubuntu1~22.04 deb +libgcrypt20 1.9.4-3ubuntu3 deb +libgmp10 2:6.2.1+dfsg-3ubuntu1 deb +libgnutls30 3.7.3-4ubuntu1.2 deb +libgpg-error0 1.43-3 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb +libhogweed6 3.7.3-1build2 deb +libicu70 70.1-2 deb +libidn2-0 2.3.2-2build1 deb +libinih1 53-1ubuntu3 deb +libip4tc2 1.8.7-1ubuntu5.1 deb +libip6tc2 1.8.7-1ubuntu5.1 deb +libjq1 1.6-2.1ubuntu3 deb +libjson-c5 0.15-3~ubuntu1.22.04.2 deb +libk5crypto3 1.19.2-2ubuntu0.2 deb +libkeyutils1 1.6.1-2ubuntu3 deb +libkrb5-3 1.19.2-2ubuntu0.2 deb +libkrb5support0 1.19.2-2ubuntu0.2 deb +libksba8 1.6.0-2ubuntu0.2 deb +libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.16+dfsg-0ubuntu0.22.04.1 deb +liblz4-1 1.9.3-2build2 deb +liblzma5 5.2.5-2ubuntu1 deb +liblzo2-2 2.10-2build3 deb +libmd0 1.0.4-1build1 deb +libmnl0 1.0.4-3build2 deb +libmount1 2.37.2-4ubuntu3 deb +libmpdec3 2.5.1-2build2 deb +libncurses6 6.3-2ubuntu0.1 deb +libncursesw6 6.3-2ubuntu0.1 deb +libnetfilter-conntrack3 1.0.9-1 deb +libnettle8 3.7.3-1build2 deb +libnfnetlink0 1.0.1-3build3 deb +libnftnl11 1.2.1-1build1 deb +libnghttp2-14 1.43.0-1build3 deb +libnpmaccess 6.0.4 npm +libnpmdiff 4.0.5 npm +libnpmexec 4.0.14 npm +libnpmfund 3.0.5 npm +libnpmhook 8.0.4 npm +libnpmorg 4.0.4 npm +libnpmpack 4.1.3 npm +libnpmpublish 6.0.5 npm +libnpmsearch 5.0.4 npm +libnpmteam 4.0.4 npm +libnpmversion 3.0.7 npm +libnpth0 1.6-3build2 deb +libnsl2 1.3.0-2build2 deb +libnvidia-container-tools 1.14.0-1 deb +libnvidia-container1 1.14.0-1 deb +libonig5 6.9.7.1-2build1 deb +libp11-kit0 0.24.0-6build1 deb +libpam-modules 1.4.0-11ubuntu2.3 deb +libpam-modules-bin 1.4.0-11ubuntu2.3 deb +libpam-runtime 1.4.0-11ubuntu2.3 deb +libpam0g 1.4.0-11ubuntu2.3 deb +libpcre2-8-0 10.39-3ubuntu0.1 deb +libpcre3 2:8.39-13ubuntu0.22.04.1 deb +libprocps8 2:3.3.17-6ubuntu2 deb +libpsl5 0.21.0-1.2build2 deb +libpython3-stdlib 3.10.6-1~22.04 deb +libpython3.10-minimal 3.10.12-1~22.04.2 deb +libpython3.10-stdlib 3.10.12-1~22.04.2 deb +libreadline8 8.1.2-1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb +libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb +libseccomp2 2.5.3-2ubuntu2 deb +libselinux1 3.3-1build2 deb +libsemanage-common 3.3-1build2 deb +libsemanage2 3.3-1build2 deb +libsepol2 3.3-1build1 deb +libsmartcols1 2.37.2-4ubuntu3 deb +libsqlite3-0 3.37.2-2ubuntu0.1 deb +libss2 1.46.5-2ubuntu1.1 deb +libssh-4 0.9.6-2ubuntu0.22.04.1 deb +libssl3 3.0.2-0ubuntu1.10 deb +libstdc++6 12.3.0-1ubuntu1~22.04 deb +libsystemd0 249.11-0ubuntu3.9 deb +libtasn1-6 4.18.0-4build1 deb +libtinfo6 6.3-2ubuntu0.1 deb +libtirpc-common 1.3.2-2ubuntu0.1 deb +libtirpc3 1.3.2-2ubuntu0.1 deb +libudev1 249.11-0ubuntu3.9 deb +libunistring2 1.0-1 deb +libuuid1 2.37.2-4ubuntu3 deb +libxtables12 1.8.7-1ubuntu5.1 deb +libxxhash0 0.8.1-1 deb +libzstd1 1.4.8+dfsg-3build1 deb +locales 2.35-0ubuntu3.1 deb +lodash 4.17.21 npm +login 1:4.8.1-2ubuntu2.1 deb +logsave 1.46.5-2ubuntu1.1 deb +lru-cache 6.0.0 npm +lru-cache 7.13.2 npm +lsb-base 11.1.0ubuntu4 deb +lsb-release 11.1.0ubuntu4 deb +lsof 4.93.2+dfsg-1.1build2 deb +make-fetch-happen 10.2.1 npm +mawk 1.3.4.20200120-3 deb +media-typer 0.3.0 npm +media-types 7.0.0 deb +merge-descriptors 1.0.1 npm +methods 1.1.2 npm +mime 1.6.0 npm +mime-db 1.52.0 npm +mime-types 2.1.35 npm +minimatch 3.1.2 npm +minimatch 5.1.0 npm +minipass 3.3.4 npm +minipass-collect 1.0.2 npm +minipass-fetch 2.1.1 npm +minipass-flush 1.0.5 npm +minipass-json-stream 1.0.1 npm +minipass-pipeline 1.2.4 npm +minipass-sized 1.0.3 npm +minizlib 2.1.2 npm +mkdirp 1.0.4 npm +mkdirp-classic 0.5.3 npm +mkdirp-infer-owner 2.0.0 npm +mount 2.37.2-4ubuntu3 deb +ms 2.0.0 npm +ms 2.1.2 npm +ms 2.1.3 npm +mute-stream 0.0.8 npm +nan 2.17.0 npm +ncurses-base 6.3-2ubuntu0.1 deb +ncurses-bin 6.3-2ubuntu0.1 deb +negotiator 0.6.3 npm +netbase 6.3 deb +netcat 1.218-4ubuntu1 deb +netcat-openbsd 1.218-4ubuntu1 deb +node-gyp 9.1.0 npm +node-pty 0.10.1 npm +nodejs 16.20.2-deb-1nodesource1 deb +nopt 5.0.0 npm +nopt 6.0.0 npm +normalize-package-data 4.0.1 npm +npm 8.19.4 npm +npm-audit-report 3.0.0 npm +npm-bundled 1.1.2 npm +npm-bundled 2.0.1 npm +npm-init 0.0.0 npm +npm-install-checks 5.0.0 npm +npm-normalize-package-bin 1.0.1 npm +npm-normalize-package-bin 2.0.0 npm +npm-package-arg 9.1.0 npm +npm-packlist 5.1.3 npm +npm-pick-manifest 7.0.2 npm +npm-profile 6.2.1 npm +npm-registry-fetch 13.3.1 npm +npm-user-validate 1.0.1 npm +npmlog 6.0.2 npm +nvidia-container-toolkit 1.14.0-1 deb +nvidia-container-toolkit-base 1.14.0-1 deb +nvidia-docker2 2.14.0-1 deb +object-assign 4.1.1 npm +object-inspect 1.12.3 npm +on-finished 2.4.1 npm +once 1.4.0 npm +opener 1.5.2 npm +openssl 3.0.2-0ubuntu1.10 deb +p-map 4.0.0 npm +pacote 13.6.2 npm +parse-conflict-json 2.0.2 npm +parseurl 1.3.3 npm +passwd 1:4.8.1-2ubuntu2.1 deb +path-is-absolute 1.0.1 npm +path-to-regexp 0.1.7 npm +perl-base 5.34.0-3ubuntu1.2 deb +pigz 2.6-1 deb +pinentry-curses 1.1.1-1build2 deb +postcss-selector-parser 6.0.10 npm +proc-log 2.0.1 npm +procps 2:3.3.17-6ubuntu2 deb +promise-all-reject-late 1.0.1 npm +promise-call-limit 1.0.1 npm +promise-inflight 1.0.1 npm +promise-retry 2.0.1 npm +promzard 0.3.0 npm +proxy-addr 2.0.7 npm +publicsuffix 20211207.1025-1 deb +pump 3.0.0 npm +python3 3.10.6-1~22.04 deb +python3-minimal 3.10.6-1~22.04 deb +python3.10 3.10.12-1~22.04.2 deb +python3.10-minimal 3.10.12-1~22.04.2 deb +qrcode-terminal 0.12.0 npm +qs 6.11.0 npm +range-parser 1.2.1 npm +raw-body 2.5.1 npm +read 1.0.7 npm +read-cmd-shim 3.0.0 npm +read-package-json 5.0.2 npm +read-package-json-fast 2.0.3 npm +readable-stream 3.6.0 npm +readable-stream 3.6.2 npm +readdir-scoped-modules 1.1.0 npm +readline-common 8.1.2-1 deb +resenje.org/singleflight v0.3.0 go-module +retry 0.12.0 npm +rimraf 3.0.2 npm +safe-buffer 5.2.1 npm +safer-buffer 2.1.2 npm +sed 4.8-1ubuntu2 deb +semver 7.3.7 npm +send 0.18.0 npm +sensible-utils 0.0.17 deb +serve-static 1.15.0 npm +set-blocking 2.0.0 npm +setprototypeof 1.2.0 npm +side-channel 1.0.4 npm +signal-exit 3.0.7 npm +sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 go-module +sigs.k8s.io/structured-merge-diff/v4 v4.1.2 go-module +sigs.k8s.io/structured-merge-diff/v4 v4.2.3 go-module +sigs.k8s.io/yaml v1.2.0 go-module +sigs.k8s.io/yaml v1.3.0 go-module +smart-buffer 4.2.0 npm +socket.io 4.7.2 npm +socket.io-adapter 2.5.2 npm +socket.io-parser 4.2.4 npm +socks 2.7.0 npm +socks-proxy-agent 7.0.0 npm +spdx-correct 3.1.1 npm +spdx-exceptions 2.3.0 npm +spdx-expression-parse 3.0.1 npm +spdx-license-ids 3.0.11 npm +split-ca 1.0.1 npm +ssh2 1.14.0 npm +ssri 9.0.1 npm +statuses 2.0.1 npm +string-width 4.2.3 npm +string_decoder 1.3.0 npm +strip-ansi 6.0.1 npm +sudo 1.9.9-1ubuntu2.4 deb +supports-color 7.2.0 npm +systeminformation 5.21.4 npm +sysvinit-utils 3.01-1ubuntu1 deb +tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb +tar 6.1.11 npm +tar-fs 2.0.1 npm +tar-stream 2.2.0 npm +text-table 0.2.0 npm +tiny-relative-date 1.3.0 npm +toidentifier 1.0.1 npm +treeverse 2.0.0 npm +tweetnacl 0.14.5 npm +type-is 1.6.18 npm +tzdata 2023c-0ubuntu0.22.04.2 deb +ubuntu-keyring 2021.03.26 deb +uidmap 1:4.8.1-2ubuntu2.1 deb +unique-filename 2.0.1 npm +unique-slug 3.0.0 npm +unpipe 1.0.0 npm +usrmerge 25ubuntu2 deb +util-deprecate 1.0.2 npm +util-linux 2.37.2-4ubuntu3 deb +utils-merge 1.0.1 npm +validate-npm-package-license 3.0.4 npm +validate-npm-package-name 4.0.0 npm +vary 1.1.2 npm +walk-up-path 1.0.0 npm +wcwidth 1.0.1 npm +which 2.0.2 npm +wide-align 1.1.5 npm +wrappy 1.0.2 npm +write-file-atomic 4.0.2 npm +ws 8.11.0 npm +xfsprogs 5.13.0-1ubuntu2 deb +yallist 4.0.0 npm +zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From 553bf88fe6554d3e99f0872309c8041117b8b512 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 8 Sep 2023 17:40:02 +0000 Subject: [PATCH 149/337] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index c078e30..bec1b8a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -152,7 +152,7 @@ github.com/Graylog2/go-gelf v0 github.com/Masterminds/semver/v3 v3.2.1 go-module github.com/Microsoft/hcsshim v0.9.8 go-module github.com/NVIDIA/go-nvml v0.12.0-1 go-module -github.com/NVIDIA/nvidia-container-toolkit v1.14.0 go-module +github.com/NVIDIA/nvidia-container-toolkit v1.14.1 go-module github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module github.com/a8m/envsubst v1.3.0 go-module github.com/adrg/xdg v0.4.0 go-module @@ -668,8 +668,8 @@ libnpmteam 4. libnpmversion 3.0.7 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.14.0-1 deb -libnvidia-container1 1.14.0-1 deb +libnvidia-container-tools 1.14.1-1 deb +libnvidia-container1 1.14.1-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.3 deb @@ -774,8 +774,8 @@ npm-profile 6. npm-registry-fetch 13.3.1 npm npm-user-validate 1.0.1 npm npmlog 6.0.2 npm -nvidia-container-toolkit 1.14.0-1 deb -nvidia-container-toolkit-base 1.14.0-1 deb +nvidia-container-toolkit 1.14.1-1 deb +nvidia-container-toolkit-base 1.14.1-1 deb nvidia-docker2 2.14.0-1 deb object-assign 4.1.1 npm object-inspect 1.12.3 npm From b1c895b1a4eb833399454e644f2f9bfa2aaf2bee Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Sep 2023 21:43:09 +0000 Subject: [PATCH 150/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index bec1b8a..68a7cd8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.14 npm -@types/node 20.5.9 npm +@types/node 20.6.0 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -604,7 +604,7 @@ libbrotli1 1. libbsd0 0.11.5-1 deb libbz2-1.0 1.0.8-5build1 deb libc-bin 2.35-0ubuntu3.1 deb -libc6 2.35-0ubuntu3.1 deb +libc6 2.35-0ubuntu3.3 deb libcap-ng0 0.7.9-2.2build3 deb libcap2 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb @@ -746,7 +746,7 @@ ms 2. ms 2.1.2 npm ms 2.1.3 npm mute-stream 0.0.8 npm -nan 2.17.0 npm +nan 2.18.0 npm ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb negotiator 0.6.3 npm From 077cad133cd6f2224120ec9d9d22aed8fa2d05c5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 14 Sep 2023 21:39:47 +0000 Subject: [PATCH 151/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 68a7cd8..577d402 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -710,7 +710,7 @@ libuuid1 2. libxtables12 1.8.7-1ubuntu5.1 deb libxxhash0 0.8.1-1 deb libzstd1 1.4.8+dfsg-3build1 deb -locales 2.35-0ubuntu3.1 deb +locales 2.35-0ubuntu3.3 deb lodash 4.17.21 npm login 1:4.8.1-2ubuntu2.1 deb logsave 1.46.5-2ubuntu1.1 deb From a35af113fd9568bca8921aaa01cbcdff28941e8c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 15 Sep 2023 16:41:57 +0000 Subject: [PATCH 152/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 577d402..1bc53fc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.14 npm -@types/node 20.6.0 npm +@types/node 20.6.1 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -858,7 +858,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.21.4 npm +systeminformation 5.21.5 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From 8acd73f9cbccf58cf1dc6f57bd9751528b8804ab Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Sep 2023 18:41:12 +0000 Subject: [PATCH 153/337] Bot Updating Package Versions --- package_versions.txt | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1bc53fc..a2ff981 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.14 npm -@types/node 20.6.1 npm +@types/node 20.6.2 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -85,7 +85,7 @@ columnify 1. common-ancestor-path 1.0.1 npm concat-map 0.0.1 npm console-control-strings 1.1.0 npm -containerd.io 1.6.22-1 deb +containerd.io 1.6.24-1 deb content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.4.2 npm @@ -150,6 +150,7 @@ get-intrinsic 1. github.com/AlecAivazis/survey/v2 v2.3.7 go-module github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module github.com/Masterminds/semver/v3 v3.2.1 go-module +github.com/Microsoft/hcsshim v0.9.10 go-module github.com/Microsoft/hcsshim v0.9.8 go-module github.com/NVIDIA/go-nvml v0.12.0-1 go-module github.com/NVIDIA/nvidia-container-toolkit v1.14.1 go-module @@ -205,6 +206,7 @@ github.com/containerd/cgroups v1 github.com/containerd/cgroups/v3 v3.0.2 go-module github.com/containerd/console v1.0.3 go-module github.com/containerd/containerd v1.6.22 go-module +github.com/containerd/containerd v1.6.24 go-module github.com/containerd/containerd v1.7.3 go-module github.com/containerd/continuity v0.3.0 go-module github.com/containerd/continuity v0.4.1 go-module @@ -362,7 +364,7 @@ github.com/opencontainers/go-digest v1 github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module github.com/opencontainers/image-spec v1.1.0-rc3 go-module github.com/opencontainers/image-spec v1.1.0-rc4 go-module -github.com/opencontainers/runc v0.0.0-20230719051532-82f18fe0e44a go-module +github.com/opencontainers/runc v0.0.0-20230810173218-ccaecfcbc907 go-module github.com/opencontainers/runc v1.1.5 go-module github.com/opencontainers/runc v1.1.6 go-module github.com/opencontainers/runc v1.1.7 go-module @@ -495,7 +497,6 @@ golang.org/x/net v0 golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f go-module golang.org/x/oauth2 v0.1.0 go-module golang.org/x/oauth2 v0.7.0 go-module -golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module golang.org/x/sync v0.1.0 go-module golang.org/x/sync v0.3.0 go-module golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module @@ -858,7 +859,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.21.5 npm +systeminformation 5.21.7 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From 4a35602f13fe41a37c81f1eb5b9c06de6a85af9a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 26 Sep 2023 21:43:12 +0000 Subject: [PATCH 154/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index a2ff981..810d3f2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.14 npm -@types/node 20.6.2 npm +@types/node 20.7.0 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -859,7 +859,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.21.7 npm +systeminformation 5.21.9 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From 4647fa9d02058534eee8b1af6e15a8a366d9e951 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 3 Oct 2023 21:44:32 +0000 Subject: [PATCH 155/337] Bot Updating Package Versions --- package_versions.txt | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 810d3f2..207b752 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.14 npm -@types/node 20.7.0 npm +@types/node 20.8.2 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -153,7 +153,7 @@ github.com/Masterminds/semver/v3 v3 github.com/Microsoft/hcsshim v0.9.10 go-module github.com/Microsoft/hcsshim v0.9.8 go-module github.com/NVIDIA/go-nvml v0.12.0-1 go-module -github.com/NVIDIA/nvidia-container-toolkit v1.14.1 go-module +github.com/NVIDIA/nvidia-container-toolkit v1.14.2 go-module github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module github.com/a8m/envsubst v1.3.0 go-module github.com/adrg/xdg v0.4.0 go-module @@ -539,6 +539,7 @@ graceful-fs 4. grep 3.7-1build1 deb gzip 1.10-4ubuntu4.1 deb has 1.0.3 npm +has 1.0.4 npm has-flag 4.0.0 npm has-proto 1.0.1 npm has-symbols 1.0.3 npm @@ -605,7 +606,7 @@ libbrotli1 1. libbsd0 0.11.5-1 deb libbz2-1.0 1.0.8-5build1 deb libc-bin 2.35-0ubuntu3.1 deb -libc6 2.35-0ubuntu3.3 deb +libc6 2.35-0ubuntu3.4 deb libcap-ng0 0.7.9-2.2build3 deb libcap2 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb @@ -669,8 +670,8 @@ libnpmteam 4. libnpmversion 3.0.7 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.14.1-1 deb -libnvidia-container1 1.14.1-1 deb +libnvidia-container-tools 1.14.2-1 deb +libnvidia-container1 1.14.2-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.3 deb @@ -775,8 +776,8 @@ npm-profile 6. npm-registry-fetch 13.3.1 npm npm-user-validate 1.0.1 npm npmlog 6.0.2 npm -nvidia-container-toolkit 1.14.1-1 deb -nvidia-container-toolkit-base 1.14.1-1 deb +nvidia-container-toolkit 1.14.2-1 deb +nvidia-container-toolkit-base 1.14.2-1 deb nvidia-docker2 2.14.0-1 deb object-assign 4.1.1 npm object-inspect 1.12.3 npm From 25ca678db7f1205fcde76b04776b960531291460 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 4 Oct 2023 17:41:27 +0000 Subject: [PATCH 156/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 207b752..910171c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -712,7 +712,7 @@ libuuid1 2. libxtables12 1.8.7-1ubuntu5.1 deb libxxhash0 0.8.1-1 deb libzstd1 1.4.8+dfsg-3build1 deb -locales 2.35-0ubuntu3.3 deb +locales 2.35-0ubuntu3.4 deb lodash 4.17.21 npm login 1:4.8.1-2ubuntu2.1 deb logsave 1.46.5-2ubuntu1.1 deb From 6e9799cfd29a274c3cb3b8f0f8d03c883142bead Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 6 Oct 2023 13:40:19 +0000 Subject: [PATCH 157/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 910171c..85dc1e8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -126,7 +126,7 @@ emoji-regex 8. encodeurl 1.0.2 npm encoding 0.1.13 npm end-of-stream 1.4.4 npm -engine.io 6.5.2 npm +engine.io 6.5.3 npm engine.io-parser 5.2.1 npm env-paths 2.2.1 npm err-code 2.0.3 npm @@ -860,7 +860,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.21.9 npm +systeminformation 5.21.11 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From c850e3cc322497c7843f1bc057d7352bc4c6cc65 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Oct 2023 21:41:03 +0000 Subject: [PATCH 158/337] Bot Updating Templated Files --- Jenkinsfile | 77 ++++++++++++++++++++++++++++------------------------- 1 file changed, 41 insertions(+), 36 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 50043e4..a270798 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,7 +16,6 @@ pipeline { GITHUB_TOKEN=credentials('498b4638-2d02-4ce5-832d-8a57d01d97ab') GITLAB_TOKEN=credentials('b6f0f1dd-6952-4cf6-95d1-9c06380283f0') GITLAB_NAMESPACE=credentials('gitlab-namespace-id') - SCARF_TOKEN=credentials('scarf_api_key') BUILD_VERSION_ARG = 'KASM_VERSION' LS_USER = 'linuxserver' LS_REPO = 'docker-kasm' @@ -329,12 +328,12 @@ pipeline { else echo "false" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} fi - mkdir -p ${TEMPDIR}/gitbook - git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/gitbook/docker-documentation - if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md ${TEMPDIR}/gitbook/docker-documentation/images/ - cd ${TEMPDIR}/gitbook/docker-documentation/ - git add images/docker-${CONTAINER_NAME}.md + mkdir -p ${TEMPDIR}/docs + git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/docs/docker-documentation + if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md ${TEMPDIR}/docs/docker-documentation/docs/images/ + cd ${TEMPDIR}/docs/docker-documentation + git add docs/images/docker-${CONTAINER_NAME}.md git commit -m 'Bot Updating Documentation' git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git --all fi @@ -425,35 +424,6 @@ pipeline { "visibility":"public"}' ''' } } - /* ####################### - Scarf.sh package registry - ####################### */ - // Add package to Scarf.sh and set permissions - stage("Scarf.sh package registry"){ - when { - branch "develop" - environment name: 'EXIT_STATUS', value: '' - } - steps{ - sh '''#! /bin/bash - PACKAGE_UUID=$(curl -X GET -H "Authorization: Bearer ${SCARF_TOKEN}" https://scarf.sh/api/v1/organizations/linuxserver-ci/packages | jq -r '.[] | select(.name=="linuxserver/kasm") | .uuid' || :) - if [ -z "${PACKAGE_UUID}" ]; then - echo "Adding package to Scarf.sh" - curl -sX POST https://scarf.sh/api/v1/organizations/linuxserver-ci/packages \ - -H "Authorization: Bearer ${SCARF_TOKEN}" \ - -H "Content-Type: application/json" \ - -d '{"name":"linuxserver/kasm",\ - "shortDescription":"example description",\ - "libraryType":"docker",\ - "website":"https://github.com/linuxserver/docker-kasm",\ - "backendUrl":"https://ghcr.io/linuxserver/kasm",\ - "publicUrl":"https://lscr.io/linuxserver/kasm"}' || : - else - echo "Package already exists on Scarf.sh" - fi - ''' - } - } /* ############### Build Container ############### */ @@ -849,6 +819,41 @@ pipeline { curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done''' } } + // Add protection to the release branch + stage('Github-Release-Branch-Protection') { + when { + branch "develop" + environment name: 'CHANGE_ID', value: '' + environment name: 'EXIT_STATUS', value: '' + } + steps { + echo "Setting up protection for release branch develop" + sh '''#! /bin/bash + curl -H "Authorization: token ${GITHUB_TOKEN}" -X PUT https://api.github.com/repos/${LS_USER}/${LS_REPO}/branches/develop/protection \ + -d $(jq -c . << EOF + { + "required_status_checks": null, + "enforce_admins": false, + "required_pull_request_reviews": { + "dismiss_stale_reviews": false, + "require_code_owner_reviews": false, + "require_last_push_approval": false, + "required_approving_review_count": 1 + }, + "restrictions": null, + "required_linear_history": false, + "allow_force_pushes": false, + "allow_deletions": false, + "block_creations": false, + "required_conversation_resolution": true, + "lock_branch": false, + "allow_fork_syncing": false, + "required_signatures": false + } +EOF + ) ''' + } + } // Use helper container to sync the current README on master to the dockerhub endpoint stage('Sync-README') { when { From 8520bf246553b62611685f734711a146346203fe Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Oct 2023 21:43:27 +0000 Subject: [PATCH 159/337] Bot Updating Templated Files --- README.md | 123 ++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 92 insertions(+), 31 deletions(-) diff --git a/README.md b/README.md index 5587570..1e0e0e6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ -<!-- DO NOT EDIT THIS FILE MANUALLY --> -<!-- Please read the https://github.com/linuxserver/docker-kasm/blob/develop/.github/CONTRIBUTING.md --> - +<!-- DO NOT EDIT THIS FILE MANUALLY --> +<!-- Please read https://github.com/linuxserver/docker-kasm/blob/develop/.github/CONTRIBUTING.md --> [![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)](https://linuxserver.io) [![Blog](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Blog)](https://blog.linuxserver.io "all the things you can do with our containers including How-To guides, opinions and much more!") @@ -68,6 +67,7 @@ This image provides various versions that are available via tags. Please read th | :----: | :----: |--- | | latest | ✅ | Stable Kasm releases | | develop | ✅ | Tip of develop | + ## Application Setup This container uses [Docker in Docker](https://www.docker.com/blog/docker-can-now-run-within-docker/) and requires being run in `privileged` mode. This container also requires an initial setup that runs on port 3000. @@ -98,7 +98,7 @@ If you are using a reverse proxy which validates certificates, you need to [disa ## Usage -Here are some example snippets to help you get started creating a container. +To help you get started creating a container from this image you can either use docker-compose or the docker cli. ### docker-compose (recommended, [click here for more info](https://docs.linuxserver.io/general/docker-compose)) @@ -142,12 +142,11 @@ docker run -d \ -v /run/udev/data:/run/udev/data `#optional` \ --restart unless-stopped \ lscr.io/linuxserver/kasm:develop - ``` ## Parameters -Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `<external>:<internal>` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container. +Containers are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `<external>:<internal>` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container. | Parameter | Function | | :----: | --- | @@ -168,10 +167,10 @@ You can set any environment variable from a file by using a special prepend `FIL As an example: ```bash --e FILE__PASSWORD=/run/secrets/mysecretpassword +-e FILE__MYVAR=/run/secrets/mysecretvariable ``` -Will set the environment variable `PASSWORD` based on the contents of the `/run/secrets/mysecretpassword` file. +Will set the environment variable `MYVAR` based on the contents of the `/run/secrets/mysecretvariable` file. ## Umask for running applications @@ -186,12 +185,29 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to ## Support Info -* Shell access whilst the container is running: `docker exec -it kasm /bin/bash` -* To monitor the logs of the container in realtime: `docker logs -f kasm` -* container version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' kasm` -* image version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/kasm:develop` +* Shell access whilst the container is running: + + ```bash + docker exec -it kasm /bin/bash + ``` + +* To monitor the logs of the container in realtime: + + ```bash + docker logs -f kasm + ``` + +* Container version number: + + ```bash + docker inspect -f '{{ index .Config.Labels "build_version" }}' kasm + ``` + +* Image version number: + + ```bash + docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/kasm:develop + ``` ## Updating Info @@ -201,38 +217,83 @@ Below are the instructions for updating containers: ### Via Docker Compose -* Update all images: `docker-compose pull` - * or update a single image: `docker-compose pull kasm` -* Let compose update all containers as necessary: `docker-compose up -d` - * or update a single container: `docker-compose up -d kasm` -* You can also remove the old dangling images: `docker image prune` +* Update images: + * All images: + + ```bash + docker-compose pull + ``` + + * Single image: + + ```bash + docker-compose pull kasm + ``` + +* Update containers: + * All containers: + + ```bash + docker-compose up -d + ``` + + * Single container: + + ```bash + docker-compose up -d kasm + ``` + +* You can also remove the old dangling images: + + ```bash + docker image prune + ``` ### Via Docker Run -* Update the image: `docker pull lscr.io/linuxserver/kasm:develop` -* Stop the running container: `docker stop kasm` -* Delete the container: `docker rm kasm` +* Update the image: + + ```bash + docker pull lscr.io/linuxserver/kasm:develop + ``` + +* Stop the running container: + + ```bash + docker stop kasm + ``` + +* Delete the container: + + ```bash + docker rm kasm + ``` + * Recreate a new container with the same docker run parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and settings will be preserved) -* You can also remove the old dangling images: `docker image prune` +* You can also remove the old dangling images: + + ```bash + docker image prune + ``` ### Via Watchtower auto-updater (only use if you don't remember the original parameters) * Pull the latest image at its tag and replace it with the same env variables in one run: - ```bash - docker run --rm \ - -v /var/run/docker.sock:/var/run/docker.sock \ - containrrr/watchtower \ - --run-once kasm - ``` + ```bash + docker run --rm \ + -v /var/run/docker.sock:/var/run/docker.sock \ + containrrr/watchtower \ + --run-once kasm + ``` * You can also remove the old dangling images: `docker image prune` -**Note:** We do not endorse the use of Watchtower as a solution to automated updates of existing Docker containers. In fact we generally discourage automated updates. However, this is a useful tool for one-time manual updates of containers where you have forgotten the original parameters. In the long term, we highly recommend using [Docker Compose](https://docs.linuxserver.io/general/docker-compose). +**warning**: We do not endorse the use of Watchtower as a solution to automated updates of existing Docker containers. In fact we generally discourage automated updates. However, this is a useful tool for one-time manual updates of containers where you have forgotten the original parameters. In the long term, we highly recommend using [Docker Compose](https://docs.linuxserver.io/general/docker-compose). ### Image Update Notifications - Diun (Docker Image Update Notifier) -* We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported. +**tip**: We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported. ## Building locally From 23b3ef6e73a02018674d566c48970f5d09d79bff Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Oct 2023 21:48:21 +0000 Subject: [PATCH 160/337] Bot Updating Package Versions --- package_versions.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 85dc1e8..b501bf8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.14 npm -@types/node 20.8.2 npm +@types/node 20.8.4 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -855,6 +855,10 @@ split-ca 1. ssh2 1.14.0 npm ssri 9.0.1 npm statuses 2.0.1 npm +stdlib go1.18.1 go-module +stdlib go1.20.5 go-module +stdlib go1.20.7 go-module +stdlib go1.20.8 go-module string-width 4.2.3 npm string_decoder 1.3.0 npm strip-ansi 6.0.1 npm @@ -875,6 +879,7 @@ type-is 1. tzdata 2023c-0ubuntu0.22.04.2 deb ubuntu-keyring 2021.03.26 deb uidmap 1:4.8.1-2ubuntu2.1 deb +undici-types 5.25.3 npm unique-filename 2.0.1 npm unique-slug 3.0.0 npm unpipe 1.0.0 npm From b354a5f890a3a06c3322d593e131cc6441d2aa6d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 14 Oct 2023 05:40:19 +0000 Subject: [PATCH 161/337] Bot Updating Package Versions --- package_versions.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b501bf8..053d52d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.14 npm -@types/node 20.8.4 npm +@types/node 20.8.6 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -142,6 +142,7 @@ fs-constants 1. fs-minipass 2.1.0 npm fs.realpath 1.0.0 npm function-bind 1.1.1 npm +function-bind 1.1.2 npm fuse-overlayfs 1.7.1-1 deb fuse3 3.10.5-1build1 deb gauge 4.0.4 npm From f7f03998ed268eb006da60b52f7b57345eb604dc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Oct 2023 21:44:36 +0000 Subject: [PATCH 162/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 053d52d..5e21778 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -781,7 +781,7 @@ nvidia-container-toolkit 1. nvidia-container-toolkit-base 1.14.2-1 deb nvidia-docker2 2.14.0-1 deb object-assign 4.1.1 npm -object-inspect 1.12.3 npm +object-inspect 1.13.0 npm on-finished 2.4.1 npm once 1.4.0 npm opener 1.5.2 npm @@ -865,7 +865,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.21.11 npm +systeminformation 5.21.12 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From ec5c1aeddc72674eaa006e2e561a16ac3eda8827 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 24 Oct 2023 21:42:59 +0000 Subject: [PATCH 163/337] Bot Updating Package Versions --- package_versions.txt | 36 ++++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 5e21778..abe39a3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -23,8 +23,8 @@ NAME VE @socket.io/component-emitter 3.1.0 npm @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm -@types/cors 2.8.14 npm -@types/node 20.8.6 npm +@types/cors 2.8.15 npm +@types/node 20.8.8 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -64,7 +64,7 @@ builtins 5. bytes 3.1.2 npm ca-certificates 20230311ubuntu0.22.04.1 deb cacache 16.1.3 npm -call-bind 1.0.2 npm +call-bind 1.0.5 npm chalk 4.1.2 npm chownr 1.1.4 npm chownr 2.0.0 npm @@ -96,7 +96,7 @@ coreutils 8. cors 2.8.5 npm cpu-features 0.0.9 npm cssesc 3.0.0 npm -curl 7.81.0-1ubuntu1.13 deb +curl 7.81.0-1ubuntu1.14 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb debianutils 5.5-1ubuntu2 deb @@ -104,6 +104,7 @@ debug 2. debug 4.3.4 npm debuglog 1.0.1 npm defaults 1.0.3 npm +define-data-property 1.1.1 npm delegates 1.0.0 npm depd 1.1.2 npm depd 2.0.0 npm @@ -112,7 +113,7 @@ dezalgo 1. diff 5.1.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -distro-info-data 0.52ubuntu0.4 deb +distro-info-data 0.52ubuntu0.5 deb docker-ce 5:24.0.6-1~ubuntu.22.04~jammy deb docker-ce-cli 5:24.0.6-1~ubuntu.22.04~jammy deb docker-compose-plugin 2.21.0-1~ubuntu.22.04~jammy deb @@ -147,14 +148,14 @@ fuse-overlayfs 1. fuse3 3.10.5-1build1 deb gauge 4.0.4 npm gcc-12-base 12.3.0-1ubuntu1~22.04 deb -get-intrinsic 1.2.1 npm +get-intrinsic 1.2.2 npm github.com/AlecAivazis/survey/v2 v2.3.7 go-module github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module github.com/Masterminds/semver/v3 v3.2.1 go-module github.com/Microsoft/hcsshim v0.9.10 go-module github.com/Microsoft/hcsshim v0.9.8 go-module github.com/NVIDIA/go-nvml v0.12.0-1 go-module -github.com/NVIDIA/nvidia-container-toolkit v1.14.2 go-module +github.com/NVIDIA/nvidia-container-toolkit v1.14.3 go-module github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module github.com/a8m/envsubst v1.3.0 go-module github.com/adrg/xdg v0.4.0 go-module @@ -523,6 +524,7 @@ google.golang.org/grpc v1 google.golang.org/protobuf v1.27.1 go-module google.golang.org/protobuf v1.28.1 go-module google.golang.org/protobuf v1.30.0 go-module +gopd 1.0.1 npm gopkg.in/inf.v0 v0.9.1 go-module gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module gopkg.in/square/go-jose.v2 v2.5.1 go-module @@ -540,11 +542,12 @@ graceful-fs 4. grep 3.7-1build1 deb gzip 1.10-4ubuntu4.1 deb has 1.0.3 npm -has 1.0.4 npm has-flag 4.0.0 npm +has-property-descriptors 1.0.1 npm has-proto 1.0.1 npm has-symbols 1.0.3 npm has-unicode 2.0.1 npm +hasown 2.0.0 npm hosted-git-info 5.2.1 npm hostname 3.23ubuntu2 deb http-cache-semantics 4.1.1 npm @@ -612,7 +615,7 @@ libcap-ng0 0. libcap2 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.13 deb +libcurl4 7.81.0-1ubuntu1.14 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb @@ -671,8 +674,8 @@ libnpmteam 4. libnpmversion 3.0.7 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.14.2-1 deb -libnvidia-container1 1.14.2-1 deb +libnvidia-container-tools 1.14.3-1 deb +libnvidia-container1 1.14.3-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.3 deb @@ -777,15 +780,15 @@ npm-profile 6. npm-registry-fetch 13.3.1 npm npm-user-validate 1.0.1 npm npmlog 6.0.2 npm -nvidia-container-toolkit 1.14.2-1 deb -nvidia-container-toolkit-base 1.14.2-1 deb +nvidia-container-toolkit 1.14.3-1 deb +nvidia-container-toolkit-base 1.14.3-1 deb nvidia-docker2 2.14.0-1 deb object-assign 4.1.1 npm -object-inspect 1.13.0 npm +object-inspect 1.13.1 npm on-finished 2.4.1 npm once 1.4.0 npm opener 1.5.2 npm -openssl 3.0.2-0ubuntu1.10 deb +openssl 3.0.2-0ubuntu1.12 deb p-map 4.0.0 npm pacote 13.6.2 npm parse-conflict-json 2.0.2 npm @@ -834,6 +837,7 @@ send 0. sensible-utils 0.0.17 deb serve-static 1.15.0 npm set-blocking 2.0.0 npm +set-function-length 1.1.1 npm setprototypeof 1.2.0 npm side-channel 1.0.4 npm signal-exit 3.0.7 npm @@ -865,7 +869,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.21.12 npm +systeminformation 5.21.13 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From c43ce9541b5f7ee76a74d00d9fe3b99ec2537f04 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 31 Oct 2023 21:44:00 +0000 Subject: [PATCH 164/337] Bot Updating Package Versions --- package_versions.txt | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index abe39a3..1fc739c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.15 npm -@types/node 20.8.8 npm +@types/node 20.8.10 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -114,8 +114,8 @@ diff 5. diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb distro-info-data 0.52ubuntu0.5 deb -docker-ce 5:24.0.6-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:24.0.6-1~ubuntu.22.04~jammy deb +docker-ce 5:24.0.7-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:24.0.7-1~ubuntu.22.04~jammy deb docker-compose-plugin 2.21.0-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm @@ -240,11 +240,11 @@ github.com/dimchansky/utfbom v1 github.com/distribution/distribution/v3 v3.0.0-20230601133803-97b1d649c493 go-module github.com/docker/buildx v0.11.2 go-module github.com/docker/cli v24.0.5+incompatible go-module -github.com/docker/cli/cmd/docker v24.0.6 go-module +github.com/docker/cli/cmd/docker v24.0.7 go-module github.com/docker/compose/v2 (devel) go-module github.com/docker/distribution v2.8.2+incompatible go-module github.com/docker/docker v24.0.5+incompatible go-module -github.com/docker/docker v24.0.6 go-module +github.com/docker/docker v24.0.7 go-module github.com/docker/docker-credential-helpers v0.7.0 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -322,8 +322,8 @@ github.com/josharian/intern v1 github.com/json-iterator/go v1.1.12 go-module github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module github.com/klauspost/compress v1.11.13 go-module -github.com/klauspost/compress v1.16.3 go-module github.com/klauspost/compress v1.16.5 go-module +github.com/klauspost/compress v1.17.2 go-module github.com/magiconair/properties v1.8.6 go-module github.com/mailru/easyjson v0.7.6 go-module github.com/mattn/go-colorable v0.1.12 go-module @@ -340,11 +340,10 @@ github.com/mikefarah/yq/v4 v0 github.com/mistifyio/go-zfs/v3 v3.0.1 go-module github.com/mitchellh/hashstructure/v2 v2.0.2 go-module github.com/mitchellh/mapstructure v1.5.0 go-module -github.com/moby/buildkit v0.11.7-0.20230723230859-616c3f613b54 go-module +github.com/moby/buildkit v0.11.7-0.20230908085316-d3e6c1360f6e go-module github.com/moby/buildkit v0.12.1 go-module github.com/moby/ipvs v1.1.0 go-module github.com/moby/locker v1.0.1 go-module -github.com/moby/patternmatcher v0.5.0 go-module github.com/moby/patternmatcher v0.6.0 go-module github.com/moby/pubsub v1.0.0 go-module github.com/moby/spdystream v0.2.0 go-module @@ -488,12 +487,12 @@ go.uber.org/atomic v1 go.uber.org/multierr v1.8.0 go-module go.uber.org/zap v1.21.0 go-module golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd go-module -golang.org/x/crypto v0.2.0 go-module +golang.org/x/crypto v0.14.0 go-module golang.org/x/crypto v0.7.0 go-module golang.org/x/exp v0.0.0-20230713183714-613f0c0eb8a1 go-module golang.org/x/mod v0.5.0 go-module golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module -golang.org/x/net v0.10.0 go-module +golang.org/x/net v0.17.0 go-module golang.org/x/net v0.8.0 go-module golang.org/x/net v0.9.0 go-module golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f go-module @@ -502,11 +501,12 @@ golang.org/x/oauth2 v0 golang.org/x/sync v0.1.0 go-module golang.org/x/sync v0.3.0 go-module golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module +golang.org/x/sys v0.13.0 go-module golang.org/x/sys v0.6.0 go-module golang.org/x/sys v0.7.0 go-module -golang.org/x/sys v0.8.0 go-module golang.org/x/term v0.6.0 go-module golang.org/x/term v0.7.0 go-module +golang.org/x/text v0.13.0 go-module golang.org/x/text v0.3.7 go-module golang.org/x/text v0.8.0 go-module golang.org/x/text v0.9.0 go-module @@ -861,6 +861,7 @@ ssh2 1. ssri 9.0.1 npm statuses 2.0.1 npm stdlib go1.18.1 go-module +stdlib go1.20.10 go-module stdlib go1.20.5 go-module stdlib go1.20.7 go-module stdlib go1.20.8 go-module @@ -869,7 +870,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.21.13 npm +systeminformation 5.21.15 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm @@ -884,7 +885,7 @@ type-is 1. tzdata 2023c-0ubuntu0.22.04.2 deb ubuntu-keyring 2021.03.26 deb uidmap 1:4.8.1-2ubuntu2.1 deb -undici-types 5.25.3 npm +undici-types 5.26.5 npm unique-filename 2.0.1 npm unique-slug 3.0.0 npm unpipe 1.0.0 npm From 10c47f84dcb3010c9727dc492c35e3e32855d7cb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 7 Nov 2023 21:43:56 +0000 Subject: [PATCH 165/337] Bot Updating Package Versions --- package_versions.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1fc739c..91437bc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -23,8 +23,8 @@ NAME VE @socket.io/component-emitter 3.1.0 npm @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm -@types/cors 2.8.15 npm -@types/node 20.8.10 npm +@types/cors 2.8.16 npm +@types/node 20.9.0 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -95,6 +95,7 @@ corepack 0. coreutils 8.32-4.1ubuntu1 deb cors 2.8.5 npm cpu-features 0.0.9 npm +cron 3.0pl1-137ubuntu3 deb cssesc 3.0.0 npm curl 7.81.0-1ubuntu1.14 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb From da69081208824010dfdf41c4908f4caf6e00f317 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 14 Nov 2023 21:45:13 +0000 Subject: [PATCH 166/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 91437bc..bc38a1a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -128,7 +128,7 @@ emoji-regex 8. encodeurl 1.0.2 npm encoding 0.1.13 npm end-of-stream 1.4.4 npm -engine.io 6.5.3 npm +engine.io 6.5.4 npm engine.io-parser 5.2.1 npm env-paths 2.2.1 npm err-code 2.0.3 npm @@ -871,7 +871,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.21.15 npm +systeminformation 5.21.17 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From 2499293c5d536f4df64b8944f29295e10193ac68 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 Nov 2023 21:41:16 +0000 Subject: [PATCH 167/337] Bot Updating Templated Files --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1e0e0e6..965e670 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ The rendering of the graphical-based containers is powered by the open-source pr ## Supported Architectures -We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/). +We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://distribution.github.io/distribution/spec/manifest-v2-2/#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/). Simply pulling `lscr.io/linuxserver/kasm:develop` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. From 53743f79051dcc658d63758cf3082ac29d92f461 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 Nov 2023 21:47:40 +0000 Subject: [PATCH 168/337] Bot Updating Package Versions --- package_versions.txt | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index bc38a1a..05a0ac1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -23,8 +23,8 @@ NAME VE @socket.io/component-emitter 3.1.0 npm @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm -@types/cors 2.8.16 npm -@types/node 20.9.0 npm +@types/cors 2.8.17 npm +@types/node 20.9.3 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -34,8 +34,8 @@ aggregate-error 3. ansi-regex 5.0.1 npm ansi-styles 4.3.0 npm aproba 2.0.0 npm -apt 2.4.10 deb -apt-utils 2.4.10 deb +apt 2.4.11 deb +apt-utils 2.4.11 deb archy 1.0.0 npm are-we-there-yet 3.0.1 npm argparse 2.0.1 npm @@ -85,7 +85,7 @@ columnify 1. common-ancestor-path 1.0.1 npm concat-map 0.0.1 npm console-control-strings 1.1.0 npm -containerd.io 1.6.24-1 deb +containerd.io 1.6.25-1 deb content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.4.2 npm @@ -209,7 +209,7 @@ github.com/containerd/cgroups v1 github.com/containerd/cgroups/v3 v3.0.2 go-module github.com/containerd/console v1.0.3 go-module github.com/containerd/containerd v1.6.22 go-module -github.com/containerd/containerd v1.6.24 go-module +github.com/containerd/containerd v1.6.25 go-module github.com/containerd/containerd v1.7.3 go-module github.com/containerd/continuity v0.3.0 go-module github.com/containerd/continuity v0.4.1 go-module @@ -219,7 +219,8 @@ github.com/containerd/go-cni v1 github.com/containerd/go-runc v1.0.0 go-module github.com/containerd/go-runc v1.1.0 go-module github.com/containerd/imgcrypt v1.1.4 go-module -github.com/containerd/nri v0.1.0 go-module +github.com/containerd/log v0.1.0 go-module +github.com/containerd/nri v0.1.1 go-module github.com/containerd/stargz-snapshotter/estargz v0.13.0 go-module github.com/containerd/ttrpc v1.1.2 go-module github.com/containerd/typeurl v1.0.2 go-module @@ -257,7 +258,7 @@ github.com/docker/libkv v0 github.com/docker/libtrust v0.0.0-20150526203908-9cbd2a1374f4 go-module github.com/dustin/go-humanize v1.0.0 go-module github.com/elliotchance/orderedmap v1.4.0 go-module -github.com/emicklei/go-restful v2.9.5+incompatible go-module +github.com/emicklei/go-restful v2.16.0+incompatible go-module github.com/emicklei/go-restful/v3 v3.10.1 go-module github.com/fatih/color v1.13.0 go-module github.com/felixge/httpsnoop v1.0.2 go-module @@ -360,13 +361,13 @@ github.com/moby/term v0 github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module github.com/modern-go/reflect2 v1.0.2 go-module github.com/morikuni/aec v1.0.0 go-module -github.com/mrunalp/fileutils v0.5.0 go-module +github.com/mrunalp/fileutils v0.5.1 go-module github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 go-module github.com/opencontainers/go-digest v1.0.0 go-module github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module github.com/opencontainers/image-spec v1.1.0-rc3 go-module github.com/opencontainers/image-spec v1.1.0-rc4 go-module -github.com/opencontainers/runc v0.0.0-20230810173218-ccaecfcbc907 go-module +github.com/opencontainers/runc v0.0.0-20231101070151-18a0cb0f32bc go-module github.com/opencontainers/runc v1.1.5 go-module github.com/opencontainers/runc v1.1.6 go-module github.com/opencontainers/runc v1.1.7 go-module @@ -487,7 +488,6 @@ go.opentelemetry.io/proto/otlp v0 go.uber.org/atomic v1.9.0 go-module go.uber.org/multierr v1.8.0 go-module go.uber.org/zap v1.21.0 go-module -golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd go-module golang.org/x/crypto v0.14.0 go-module golang.org/x/crypto v0.7.0 go-module golang.org/x/exp v0.0.0-20230713183714-613f0c0eb8a1 go-module @@ -505,11 +505,10 @@ golang.org/x/sys v0 golang.org/x/sys v0.13.0 go-module golang.org/x/sys v0.6.0 go-module golang.org/x/sys v0.7.0 go-module -golang.org/x/term v0.6.0 go-module +golang.org/x/term v0.13.0 go-module golang.org/x/term v0.7.0 go-module golang.org/x/text v0.13.0 go-module golang.org/x/text v0.3.7 go-module -golang.org/x/text v0.8.0 go-module golang.org/x/text v0.9.0 go-module golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module golang.org/x/time v0.3.0 go-module @@ -601,7 +600,7 @@ k8s.io/utils v0 k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 go-module kasm-wizard 0.0.1 npm libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.10 deb +libapt-pkg6.0 2.4.11 deb libassuan0 2.5.5-1build1 deb libattr1 1:2.5.1-1build1 deb libaudit-common 1:3.0.7-1build1 deb @@ -865,7 +864,6 @@ stdlib go stdlib go1.20.10 go-module stdlib go1.20.5 go-module stdlib go1.20.7 go-module -stdlib go1.20.8 go-module string-width 4.2.3 npm string_decoder 1.3.0 npm strip-ansi 6.0.1 npm From 36e41a3babba4ad9f0a554dbb8df85f2b5ae6a83 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 28 Nov 2023 21:44:11 +0000 Subject: [PATCH 169/337] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 05a0ac1..72c60ac 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.9.3 npm +@types/node 20.10.0 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -687,8 +687,8 @@ libpcre3 2: libprocps8 2:3.3.17-6ubuntu2 deb libpsl5 0.21.0-1.2build2 deb libpython3-stdlib 3.10.6-1~22.04 deb -libpython3.10-minimal 3.10.12-1~22.04.2 deb -libpython3.10-stdlib 3.10.12-1~22.04.2 deb +libpython3.10-minimal 3.10.12-1~22.04.3 deb +libpython3.10-stdlib 3.10.12-1~22.04.3 deb libreadline8 8.1.2-1 deb librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb @@ -812,8 +812,8 @@ publicsuffix 20 pump 3.0.0 npm python3 3.10.6-1~22.04 deb python3-minimal 3.10.6-1~22.04 deb -python3.10 3.10.12-1~22.04.2 deb -python3.10-minimal 3.10.12-1~22.04.2 deb +python3.10 3.10.12-1~22.04.3 deb +python3.10-minimal 3.10.12-1~22.04.3 deb qrcode-terminal 0.12.0 npm qs 6.11.0 npm range-parser 1.2.1 npm @@ -869,7 +869,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.21.17 npm +systeminformation 5.21.18 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From df218bff43a76190b15e6644b499dbef04cfa459 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 30 Nov 2023 16:46:11 +0000 Subject: [PATCH 170/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 72c60ac..484f496 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.10.0 npm +@types/node 20.10.1 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -660,7 +660,7 @@ libnetfilter-conntrack3 1. libnettle8 3.7.3-1build2 deb libnfnetlink0 1.0.1-3build3 deb libnftnl11 1.2.1-1build1 deb -libnghttp2-14 1.43.0-1build3 deb +libnghttp2-14 1.43.0-1ubuntu0.1 deb libnpmaccess 6.0.4 npm libnpmdiff 4.0.5 npm libnpmexec 4.0.14 npm From 3bd094ce702c5483404cb9788289a7e5bb6594a6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 4 Dec 2023 04:41:18 +0000 Subject: [PATCH 171/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 484f496..062a961 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.10.1 npm +@types/node 20.10.3 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -869,7 +869,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.21.18 npm +systeminformation 5.21.20 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From 34b5fe4d050c1328f3c243209cc2ca0f81891ee6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Dec 2023 21:45:00 +0000 Subject: [PATCH 172/337] Bot Updating Package Versions --- package_versions.txt | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 062a961..d79bbbf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.10.3 npm +@types/node 20.10.4 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -85,7 +85,7 @@ columnify 1. common-ancestor-path 1.0.1 npm concat-map 0.0.1 npm console-control-strings 1.1.0 npm -containerd.io 1.6.25-1 deb +containerd.io 1.6.26-1 deb content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.4.2 npm @@ -209,7 +209,7 @@ github.com/containerd/cgroups v1 github.com/containerd/cgroups/v3 v3.0.2 go-module github.com/containerd/console v1.0.3 go-module github.com/containerd/containerd v1.6.22 go-module -github.com/containerd/containerd v1.6.25 go-module +github.com/containerd/containerd v1.6.26 go-module github.com/containerd/containerd v1.7.3 go-module github.com/containerd/continuity v0.3.0 go-module github.com/containerd/continuity v0.4.1 go-module @@ -323,7 +323,7 @@ github.com/jonboulle/clockwork v0 github.com/josharian/intern v1.0.0 go-module github.com/json-iterator/go v1.1.12 go-module github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module -github.com/klauspost/compress v1.11.13 go-module +github.com/klauspost/compress v1.15.9 go-module github.com/klauspost/compress v1.16.5 go-module github.com/klauspost/compress v1.17.2 go-module github.com/magiconair/properties v1.8.6 go-module @@ -496,8 +496,8 @@ golang.org/x/net v0 golang.org/x/net v0.17.0 go-module golang.org/x/net v0.8.0 go-module golang.org/x/net v0.9.0 go-module -golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f go-module golang.org/x/oauth2 v0.1.0 go-module +golang.org/x/oauth2 v0.10.0 go-module golang.org/x/oauth2 v0.7.0 go-module golang.org/x/sync v0.1.0 go-module golang.org/x/sync v0.3.0 go-module @@ -521,9 +521,11 @@ google.golang.org/genproto/googleapis/api v0 google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19 go-module google.golang.org/grpc v1.50.1 go-module google.golang.org/grpc v1.57.0 go-module +google.golang.org/grpc v1.58.3 go-module google.golang.org/protobuf v1.27.1 go-module google.golang.org/protobuf v1.28.1 go-module google.golang.org/protobuf v1.30.0 go-module +google.golang.org/protobuf v1.31.0 go-module gopd 1.0.1 npm gopkg.in/inf.v0 v0.9.1 go-module gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module @@ -610,7 +612,7 @@ libbrotli1 1. libbsd0 0.11.5-1 deb libbz2-1.0 1.0.8-5build1 deb libc-bin 2.35-0ubuntu3.1 deb -libc6 2.35-0ubuntu3.4 deb +libc6 2.35-0ubuntu3.5 deb libcap-ng0 0.7.9-2.2build3 deb libcap2 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb @@ -862,6 +864,7 @@ ssri 9. statuses 2.0.1 npm stdlib go1.18.1 go-module stdlib go1.20.10 go-module +stdlib go1.20.12 go-module stdlib go1.20.5 go-module stdlib go1.20.7 go-module string-width 4.2.3 npm From 31314096150f153240dc4e8cdd250a464e7f371a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 13 Dec 2023 16:44:57 +0000 Subject: [PATCH 173/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d79bbbf..4c1a90f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -97,7 +97,7 @@ cors 2. cpu-features 0.0.9 npm cron 3.0pl1-137ubuntu3 deb cssesc 3.0.0 npm -curl 7.81.0-1ubuntu1.14 deb +curl 7.81.0-1ubuntu1.15 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb debianutils 5.5-1ubuntu2 deb @@ -617,7 +617,7 @@ libcap-ng0 0. libcap2 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.14 deb +libcurl4 7.81.0-1ubuntu1.15 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb @@ -718,7 +718,7 @@ libuuid1 2. libxtables12 1.8.7-1ubuntu5.1 deb libxxhash0 0.8.1-1 deb libzstd1 1.4.8+dfsg-3build1 deb -locales 2.35-0ubuntu3.4 deb +locales 2.35-0ubuntu3.5 deb lodash 4.17.21 npm login 1:4.8.1-2ubuntu2.1 deb logsave 1.46.5-2ubuntu1.1 deb From 484728d9795ca87691765e3dcda13e8aaaee1d73 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Dec 2023 21:44:24 +0000 Subject: [PATCH 174/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 4c1a90f..4affb32 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.10.4 npm +@types/node 20.10.5 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -859,7 +859,7 @@ spdx-exceptions 2. spdx-expression-parse 3.0.1 npm spdx-license-ids 3.0.11 npm split-ca 1.0.1 npm -ssh2 1.14.0 npm +ssh2 1.15.0 npm ssri 9.0.1 npm statuses 2.0.1 npm stdlib go1.18.1 go-module From db0ccd4e7cafc3eec99c50c87da411a3639c433e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 22 Dec 2023 16:42:16 +0000 Subject: [PATCH 175/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 4affb32..4f7f6c5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -704,7 +704,7 @@ libsepol2 3. libsmartcols1 2.37.2-4ubuntu3 deb libsqlite3-0 3.37.2-2ubuntu0.1 deb libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2ubuntu0.22.04.1 deb +libssh-4 0.9.6-2ubuntu0.22.04.2 deb libssl3 3.0.2-0ubuntu1.10 deb libstdc++6 12.3.0-1ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.9 deb @@ -872,7 +872,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.21.20 npm +systeminformation 5.21.21 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From 1f51fa3c09185856f532a3be1941e0a5fb12a55a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 26 Dec 2023 21:42:52 +0000 Subject: [PATCH 176/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4f7f6c5..1f13647 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -872,7 +872,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.21.21 npm +systeminformation 5.21.22 npm sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tar 6.1.11 npm From 254511dbd60f55b454adccc003cf06adf3acdd4e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 2 Jan 2024 16:42:28 +0000 Subject: [PATCH 177/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1f13647..46a4f02 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.10.5 npm +@types/node 20.10.6 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 2a1c5efbcbfcc3dd022628bd8e20ee14a16d9de2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 2 Jan 2024 20:42:35 +0000 Subject: [PATCH 178/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 46a4f02..e12c391 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -114,7 +114,7 @@ dezalgo 1. diff 5.1.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -distro-info-data 0.52ubuntu0.5 deb +distro-info-data 0.52ubuntu0.6 deb docker-ce 5:24.0.7-1~ubuntu.22.04~jammy deb docker-ce-cli 5:24.0.7-1~ubuntu.22.04~jammy deb docker-compose-plugin 2.21.0-1~ubuntu.22.04~jammy deb From a65b5b6943145830c3e1e5f111a586eaf8bb2a32 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 4 Jan 2024 21:41:25 +0000 Subject: [PATCH 179/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e12c391..7f934e6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -849,7 +849,7 @@ sigs.k8s.io/structured-merge-diff/v4 v4 sigs.k8s.io/yaml v1.2.0 go-module sigs.k8s.io/yaml v1.3.0 go-module smart-buffer 4.2.0 npm -socket.io 4.7.2 npm +socket.io 4.7.3 npm socket.io-adapter 2.5.2 npm socket.io-parser 4.2.4 npm socks 2.7.0 npm From d1f483218dc9a62fb89988bf1dfd76992247f0e9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 8 Jan 2024 22:41:10 +0000 Subject: [PATCH 180/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7f934e6..df803de 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.10.6 npm +@types/node 20.10.7 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 9b8c58fcfc60d5a10f32a74cbf87c97d91f88518 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 Jan 2024 21:41:05 +0000 Subject: [PATCH 181/337] Bot Updating Templated Files --- Jenkinsfile | 295 +++++++++++++++++++++++++++------------------------- 1 file changed, 152 insertions(+), 143 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a270798..81ecf39 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,6 +16,7 @@ pipeline { GITHUB_TOKEN=credentials('498b4638-2d02-4ce5-832d-8a57d01d97ab') GITLAB_TOKEN=credentials('b6f0f1dd-6952-4cf6-95d1-9c06380283f0') GITLAB_NAMESPACE=credentials('gitlab-namespace-id') + DOCKERHUB_TOKEN=credentials('docker-hub-ci-pat') BUILD_VERSION_ARG = 'KASM_VERSION' LS_USER = 'linuxserver' LS_REPO = 'docker-kasm' @@ -58,11 +59,16 @@ pipeline { env.COMMIT_SHA = sh( script: '''git rev-parse HEAD''', returnStdout: true).trim() + env.GH_DEFAULT_BRANCH = sh( + script: '''git remote show origin | grep "HEAD branch:" | sed 's|.*HEAD branch: ||' ''', + returnStdout: true).trim() env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.PULL_REQUEST = env.CHANGE_ID env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/call_issue_pr_tracker.yml ./.github/workflows/call_issues_cron.yml ./.github/workflows/permissions.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml' } + sh '''#! /bin/bash + echo "The default github branch detected as ${GH_DEFAULT_BRANCH}" ''' script{ env.LS_RELEASE_NUMBER = sh( script: '''echo ${LS_RELEASE} |sed 's/^.*-ls//g' ''', @@ -120,7 +126,7 @@ pipeline { steps{ script{ env.EXT_RELEASE_CLEAN = sh( - script: '''echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g' ''', + script: '''echo ${EXT_RELEASE} | sed 's/[~,%@+;:/ ]//g' ''', returnStdout: true).trim() def semver = env.EXT_RELEASE_CLEAN =~ /(\d+)\.(\d+)\.(\d+)/ @@ -138,7 +144,7 @@ pipeline { } if (env.SEMVER != null) { - if (BRANCH_NAME != "master" && BRANCH_NAME != "main") { + if (BRANCH_NAME != "${env.GH_DEFAULT_BRANCH}") { env.SEMVER = "${env.SEMVER}-${BRANCH_NAME}" } println("SEMVER: ${env.SEMVER}") @@ -256,115 +262,150 @@ pipeline { } } steps { - sh '''#! /bin/bash - set -e - TEMPDIR=$(mktemp -d) - docker pull ghcr.io/linuxserver/jenkins-builder:latest - docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=develop -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest - # Stage 1 - Jenkinsfile update - if [[ "$(md5sum Jenkinsfile | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile | awk '{ print $1 }')" ]]; then - mkdir -p ${TEMPDIR}/repo - git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} - cd ${TEMPDIR}/repo/${LS_REPO} - git checkout -f develop - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile ${TEMPDIR}/repo/${LS_REPO}/ - git add Jenkinsfile - git commit -m 'Bot Updating Templated Files' - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all - echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} - echo "Updating Jenkinsfile" - rm -Rf ${TEMPDIR} - exit 0 - else - echo "Jenkinsfile is up to date." - fi - # Stage 2 - Delete old templates - OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md .github/ISSUE_TEMPLATE/issue.bug.md .github/ISSUE_TEMPLATE/issue.feature.md .github/workflows/call_invalid_helper.yml .github/workflows/stale.yml Dockerfile.armhf" - for i in ${OLD_TEMPLATES}; do - if [[ -f "${i}" ]]; then - TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}" - fi - done - if [[ -n "${TEMPLATES_TO_DELETE}" ]]; then - mkdir -p ${TEMPDIR}/repo - git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} - cd ${TEMPDIR}/repo/${LS_REPO} - git checkout -f develop - for i in ${TEMPLATES_TO_DELETE}; do - git rm "${i}" - done - git commit -m 'Bot Updating Templated Files' - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all - echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} - echo "Deleting old and deprecated templates" - rm -Rf ${TEMPDIR} - exit 0 - else - echo "No templates to delete" - fi - # Stage 3 - Update templates - CURRENTHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) - cd ${TEMPDIR}/docker-${CONTAINER_NAME} - NEWHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) - if [[ "${CURRENTHASH}" != "${NEWHASH}" ]] || ! grep -q '.jenkins-external' "${WORKSPACE}/.gitignore" 2>/dev/null; then - mkdir -p ${TEMPDIR}/repo - git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} - cd ${TEMPDIR}/repo/${LS_REPO} - git checkout -f develop - cd ${TEMPDIR}/docker-${CONTAINER_NAME} - mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/workflows - mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/ISSUE_TEMPLATE - cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ || : - cp --parents readme-vars.yml ${TEMPDIR}/repo/${LS_REPO}/ || : - cd ${TEMPDIR}/repo/${LS_REPO}/ - if ! grep -q '.jenkins-external' .gitignore 2>/dev/null; then - echo ".jenkins-external" >> .gitignore - git add .gitignore - fi - git add readme-vars.yml ${TEMPLATED_FILES} - git commit -m 'Bot Updating Templated Files' - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all - echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} - else - echo "false" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} - fi - mkdir -p ${TEMPDIR}/docs - git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/docs/docker-documentation - if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md ${TEMPDIR}/docs/docker-documentation/docs/images/ - cd ${TEMPDIR}/docs/docker-documentation - git add docs/images/docker-${CONTAINER_NAME}.md - git commit -m 'Bot Updating Documentation' - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git --all - fi - mkdir -p ${TEMPDIR}/unraid - git clone https://github.com/linuxserver/docker-templates.git ${TEMPDIR}/unraid/docker-templates - git clone https://github.com/linuxserver/templates.git ${TEMPDIR}/unraid/templates - if [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-logo.png ]]; then - sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-logo.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml - elif [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-icon.png ]]; then - sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-icon.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml - fi - if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml) || ("$(md5sum ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml | awk '{ print $1 }')") ]]; then - cd ${TEMPDIR}/unraid/templates/ - if grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list; then - echo "Image is on the ignore list, marking Unraid template as deprecated" - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ - git add -u unraid/${CONTAINER_NAME}.xml - git mv unraid/${CONTAINER_NAME}.xml unraid/deprecated/${CONTAINER_NAME}.xml || : - git commit -m 'Bot Moving Deprecated Unraid Template' || : + withCredentials([ + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', + usernameVariable: 'DOCKERUSER', + passwordVariable: 'DOCKERPASS' + ] + ]) { + sh '''#! /bin/bash + set -e + TEMPDIR=$(mktemp -d) + docker pull ghcr.io/linuxserver/jenkins-builder:latest + docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=develop -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest + # Stage 1 - Jenkinsfile update + if [[ "$(md5sum Jenkinsfile | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile | awk '{ print $1 }')" ]]; then + mkdir -p ${TEMPDIR}/repo + git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} + cd ${TEMPDIR}/repo/${LS_REPO} + git checkout -f develop + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile ${TEMPDIR}/repo/${LS_REPO}/ + git add Jenkinsfile + git commit -m 'Bot Updating Templated Files' + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop + echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + echo "Updating Jenkinsfile" + rm -Rf ${TEMPDIR} + exit 0 else - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ - git add unraid/${CONTAINER_NAME}.xml - git commit -m 'Bot Updating Unraid Template' + echo "Jenkinsfile is up to date." fi - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git --all - fi - rm -Rf ${TEMPDIR}''' - script{ - env.FILES_UPDATED = sh( - script: '''cat /tmp/${COMMIT_SHA}-${BUILD_NUMBER}''', - returnStdout: true).trim() + # Stage 2 - Delete old templates + OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md .github/ISSUE_TEMPLATE/issue.bug.md .github/ISSUE_TEMPLATE/issue.feature.md .github/workflows/call_invalid_helper.yml .github/workflows/stale.yml Dockerfile.armhf" + for i in ${OLD_TEMPLATES}; do + if [[ -f "${i}" ]]; then + TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}" + fi + done + if [[ -n "${TEMPLATES_TO_DELETE}" ]]; then + mkdir -p ${TEMPDIR}/repo + git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} + cd ${TEMPDIR}/repo/${LS_REPO} + git checkout -f develop + for i in ${TEMPLATES_TO_DELETE}; do + git rm "${i}" + done + git commit -m 'Bot Updating Templated Files' + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop + echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + echo "Deleting old and deprecated templates" + rm -Rf ${TEMPDIR} + exit 0 + else + echo "No templates to delete" + fi + # Stage 3 - Update templates + CURRENTHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) + cd ${TEMPDIR}/docker-${CONTAINER_NAME} + NEWHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) + if [[ "${CURRENTHASH}" != "${NEWHASH}" ]] || ! grep -q '.jenkins-external' "${WORKSPACE}/.gitignore" 2>/dev/null; then + mkdir -p ${TEMPDIR}/repo + git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} + cd ${TEMPDIR}/repo/${LS_REPO} + git checkout -f develop + cd ${TEMPDIR}/docker-${CONTAINER_NAME} + mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/workflows + mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/ISSUE_TEMPLATE + cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ || : + cp --parents readme-vars.yml ${TEMPDIR}/repo/${LS_REPO}/ || : + cd ${TEMPDIR}/repo/${LS_REPO}/ + if ! grep -q '.jenkins-external' .gitignore 2>/dev/null; then + echo ".jenkins-external" >> .gitignore + git add .gitignore + fi + git add readme-vars.yml ${TEMPLATED_FILES} + git commit -m 'Bot Updating Templated Files' + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop + echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + else + echo "false" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + fi + mkdir -p ${TEMPDIR}/docs + git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/docs/docker-documentation + if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md ${TEMPDIR}/docs/docker-documentation/docs/images/ + cd ${TEMPDIR}/docs/docker-documentation + GH_DOCS_DEFAULT_BRANCH=$(git remote show origin | grep "HEAD branch:" | sed 's|.*HEAD branch: ||') + git add docs/images/docker-${CONTAINER_NAME}.md + git commit -m 'Bot Updating Documentation' + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} + fi + mkdir -p ${TEMPDIR}/unraid + git clone https://github.com/linuxserver/docker-templates.git ${TEMPDIR}/unraid/docker-templates + git clone https://github.com/linuxserver/templates.git ${TEMPDIR}/unraid/templates + if [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-logo.png ]]; then + sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-logo.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml + elif [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-icon.png ]]; then + sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-icon.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml + fi + if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml) || ("$(md5sum ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml | awk '{ print $1 }')") ]]; then + cd ${TEMPDIR}/unraid/templates/ + GH_TEMPLATES_DEFAULT_BRANCH=$(git remote show origin | grep "HEAD branch:" | sed 's|.*HEAD branch: ||') + if grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list; then + echo "Image is on the ignore list, marking Unraid template as deprecated" + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ + git add -u unraid/${CONTAINER_NAME}.xml + git mv unraid/${CONTAINER_NAME}.xml unraid/deprecated/${CONTAINER_NAME}.xml || : + git commit -m 'Bot Moving Deprecated Unraid Template' || : + else + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ + git add unraid/${CONTAINER_NAME}.xml + git commit -m 'Bot Updating Unraid Template' + fi + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH} + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH} + fi + # Stage 4 - Sync Readme to Docker Hub + if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]]; then + if [[ $(cat ${TEMPDIR}/docker-${CONTAINER_NAME}/README.md | wc -m) > 25000 ]]; then + echo "Readme is longer than 25,000 characters. Syncing the lite version to Docker Hub" + DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/README.lite" + else + echo "Syncing readme to Docker Hub" + DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/README.md" + fi + DH_TOKEN=$(curl -d '{"username":"'${DOCKERUSER}'", "password":"'${DOCKERHUB_TOKEN}'"}' -H "Content-Type: application/json" -X POST https://hub.docker.com/v2/users/login | jq -r '.token') + curl -s \ + -H "Authorization: JWT ${DH_TOKEN}" \ + -H "Content-Type: application/json" \ + -X PATCH \ + -d "{\\"full_description\\":$(jq -Rsa . ${DH_README_SYNC_PATH})}" \ + https://hub.docker.com/v2/repositories/${DOCKERHUB_IMAGE} || : + else + echo "Not the default Github branch. Skipping readme sync to Docker Hub." + fi + rm -Rf ${TEMPDIR}''' + script{ + env.FILES_UPDATED = sh( + script: '''cat /tmp/${COMMIT_SHA}-${BUILD_NUMBER}''', + returnStdout: true).trim() + } } } } @@ -558,7 +599,8 @@ pipeline { wait git add package_versions.txt git commit -m 'Bot Updating Package Versions' - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop echo "true" > /tmp/packages-${COMMIT_SHA}-${BUILD_NUMBER} echo "Package tag updated, stopping build process" else @@ -854,39 +896,6 @@ EOF ) ''' } } - // Use helper container to sync the current README on master to the dockerhub endpoint - stage('Sync-README') { - when { - environment name: 'CHANGE_ID', value: '' - environment name: 'EXIT_STATUS', value: '' - } - steps { - withCredentials([ - [ - $class: 'UsernamePasswordMultiBinding', - credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', - usernameVariable: 'DOCKERUSER', - passwordVariable: 'DOCKERPASS' - ] - ]) { - sh '''#! /bin/bash - set -e - TEMPDIR=$(mktemp -d) - docker pull ghcr.io/linuxserver/jenkins-builder:latest - docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH="${BRANCH_NAME}" -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest - docker pull ghcr.io/linuxserver/readme-sync - docker run --rm=true \ - -e DOCKERHUB_USERNAME=$DOCKERUSER \ - -e DOCKERHUB_PASSWORD=$DOCKERPASS \ - -e GIT_REPOSITORY=${LS_USER}/${LS_REPO} \ - -e DOCKER_REPOSITORY=${IMAGE} \ - -e GIT_BRANCH=master \ - -v ${TEMPDIR}/docker-${CONTAINER_NAME}:/mnt \ - ghcr.io/linuxserver/readme-sync bash -c 'node sync' - rm -Rf ${TEMPDIR} ''' - } - } - } // If this is a Pull request send the CI link as a comment on it stage('Pull Request Comment') { when { From 0c67272bd6d7f32910d3d4de0a489016f76ddc96 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 Jan 2024 21:42:46 +0000 Subject: [PATCH 182/337] Bot Updating Templated Files --- README.md | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/README.md b/README.md index 965e670..0a119ea 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,6 @@ To help you get started creating a container from this image you can either use ```yaml --- -version: "2.1" services: kasm: image: lscr.io/linuxserver/kasm:develop @@ -211,7 +210,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to ## Updating Info -Most of our images are static, versioned, and require an image update and container recreation to update the app inside. With some exceptions (ie. nextcloud, plex), we do not recommend or support updating apps inside the container. Please consult the [Application Setup](#application-setup) section above to see if it is recommended for the image. +Most of our images are static, versioned, and require an image update and container recreation to update the app inside. With some exceptions (noted in the relevant readme.md), we do not recommend or support updating apps inside the container. Please consult the [Application Setup](#application-setup) section above to see if it is recommended for the image. Below are the instructions for updating containers: @@ -276,21 +275,6 @@ Below are the instructions for updating containers: docker image prune ``` -### Via Watchtower auto-updater (only use if you don't remember the original parameters) - -* Pull the latest image at its tag and replace it with the same env variables in one run: - - ```bash - docker run --rm \ - -v /var/run/docker.sock:/var/run/docker.sock \ - containrrr/watchtower \ - --run-once kasm - ``` - -* You can also remove the old dangling images: `docker image prune` - -**warning**: We do not endorse the use of Watchtower as a solution to automated updates of existing Docker containers. In fact we generally discourage automated updates. However, this is a useful tool for one-time manual updates of containers where you have forgotten the original parameters. In the long term, we highly recommend using [Docker Compose](https://docs.linuxserver.io/general/docker-compose). - ### Image Update Notifications - Diun (Docker Image Update Notifier) **tip**: We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported. From 082f8c2da0fd86cc18c2a750daf9c0563442fcb7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 Jan 2024 21:50:04 +0000 Subject: [PATCH 183/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index df803de..863b98e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.10.7 npm +@types/node 20.10.8 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 912d7a57104199dfc59b7b45e9108b67e9ace803 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Jan 2024 21:43:19 +0000 Subject: [PATCH 184/337] Bot Updating Package Versions --- package_versions.txt | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 863b98e..8827d1d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.10.8 npm +@types/node 20.11.4 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -85,7 +85,7 @@ columnify 1. common-ancestor-path 1.0.1 npm concat-map 0.0.1 npm console-control-strings 1.1.0 npm -containerd.io 1.6.26-1 deb +containerd.io 1.6.27-1 deb content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.4.2 npm @@ -98,6 +98,7 @@ cpu-features 0. cron 3.0pl1-137ubuntu3 deb cssesc 3.0.0 npm curl 7.81.0-1ubuntu1.15 deb +dario.cat/mergo v1.0.0 go-module dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb debianutils 5.5-1ubuntu2 deb @@ -209,7 +210,7 @@ github.com/containerd/cgroups v1 github.com/containerd/cgroups/v3 v3.0.2 go-module github.com/containerd/console v1.0.3 go-module github.com/containerd/containerd v1.6.22 go-module -github.com/containerd/containerd v1.6.26 go-module +github.com/containerd/containerd v1.6.27 go-module github.com/containerd/containerd v1.7.3 go-module github.com/containerd/continuity v0.3.0 go-module github.com/containerd/continuity v0.4.1 go-module @@ -236,6 +237,7 @@ github.com/cpuguy83/go-md2man/v2 v2 github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module github.com/cpuguy83/go-md2man/v2 v2.0.2 go-module github.com/cyphar/filepath-securejoin v0.2.3 go-module +github.com/cyphar/filepath-securejoin v0.2.4 go-module github.com/davecgh/go-spew v1.1.1 go-module github.com/deckarep/golang-set/v2 v2.3.0 go-module github.com/dimchansky/utfbom v1.1.1 go-module @@ -312,7 +314,6 @@ github.com/hashicorp/go-version v1 github.com/hashicorp/golang-lru v0.5.4 go-module github.com/hashicorp/memberlist v0.4.0 go-module github.com/hashicorp/serf v0.8.5 go-module -github.com/imdario/mergo v0.3.12 go-module github.com/imdario/mergo v0.3.13 go-module github.com/imdario/mergo v0.3.16 go-module github.com/in-toto/in-toto-golang v0.5.0 go-module @@ -357,6 +358,7 @@ github.com/moby/sys/sequential v0 github.com/moby/sys/signal v0.6.0 go-module github.com/moby/sys/signal v0.7.0 go-module github.com/moby/sys/symlink v0.2.0 go-module +github.com/moby/sys/user v0.1.0 go-module github.com/moby/term v0.5.0 go-module github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module github.com/modern-go/reflect2 v1.0.2 go-module @@ -367,8 +369,7 @@ github.com/opencontainers/go-digest v1 github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module github.com/opencontainers/image-spec v1.1.0-rc3 go-module github.com/opencontainers/image-spec v1.1.0-rc4 go-module -github.com/opencontainers/runc v0.0.0-20231101070151-18a0cb0f32bc go-module -github.com/opencontainers/runc v1.1.5 go-module +github.com/opencontainers/runc v0.0.0-20240102023416-4bccb38cc9cf go-module github.com/opencontainers/runc v1.1.6 go-module github.com/opencontainers/runc v1.1.7 go-module github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module @@ -612,7 +613,7 @@ libbrotli1 1. libbsd0 0.11.5-1 deb libbz2-1.0 1.0.8-5build1 deb libc-bin 2.35-0ubuntu3.1 deb -libc6 2.35-0ubuntu3.5 deb +libc6 2.35-0ubuntu3.6 deb libcap-ng0 0.7.9-2.2build3 deb libcap2 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb @@ -702,7 +703,7 @@ libsemanage-common 3. libsemanage2 3.3-1build2 deb libsepol2 3.3-1build1 deb libsmartcols1 2.37.2-4ubuntu3 deb -libsqlite3-0 3.37.2-2ubuntu0.1 deb +libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.2 deb libssl3 3.0.2-0ubuntu1.10 deb @@ -839,7 +840,7 @@ send 0. sensible-utils 0.0.17 deb serve-static 1.15.0 npm set-blocking 2.0.0 npm -set-function-length 1.1.1 npm +set-function-length 1.2.0 npm setprototypeof 1.2.0 npm side-channel 1.0.4 npm signal-exit 3.0.7 npm @@ -849,7 +850,7 @@ sigs.k8s.io/structured-merge-diff/v4 v4 sigs.k8s.io/yaml v1.2.0 go-module sigs.k8s.io/yaml v1.3.0 go-module smart-buffer 4.2.0 npm -socket.io 4.7.3 npm +socket.io 4.7.4 npm socket.io-adapter 2.5.2 npm socket.io-parser 4.2.4 npm socks 2.7.0 npm @@ -864,7 +865,7 @@ ssri 9. statuses 2.0.1 npm stdlib go1.18.1 go-module stdlib go1.20.10 go-module -stdlib go1.20.12 go-module +stdlib go1.20.13 go-module stdlib go1.20.5 go-module stdlib go1.20.7 go-module string-width 4.2.3 npm From c9dda32e963e8651e0409bdc856a4d67d2897eea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 19 Jan 2024 12:54:40 +0000 Subject: [PATCH 185/337] Bot Updating Package Versions --- package_versions.txt | 1809 +++++++++++++++++++++--------------------- 1 file changed, 898 insertions(+), 911 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8827d1d..573abfc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,911 +1,898 @@ -NAME VERSION TYPE -1to2 1.0.0 npm -@balena/dockerignore 1.0.2 npm -@colors/colors 1.5.0 npm -@gar/promisify 1.1.3 npm -@isaacs/string-locale-compare 1.1.0 npm -@npmcli/arborist 5.6.3 npm -@npmcli/ci-detect 2.0.0 npm -@npmcli/config 4.2.2 npm -@npmcli/disparity-colors 2.0.0 npm -@npmcli/fs 2.1.2 npm -@npmcli/git 3.0.2 npm -@npmcli/installed-package-contents 1.0.7 npm -@npmcli/map-workspaces 2.0.4 npm -@npmcli/metavuln-calculator 3.1.1 npm -@npmcli/move-file 2.0.1 npm -@npmcli/name-from-folder 1.0.1 npm -@npmcli/node-gyp 2.0.0 npm -@npmcli/package-json 2.0.0 npm -@npmcli/promise-spawn 3.0.0 npm -@npmcli/query 1.2.0 npm -@npmcli/run-script 4.2.1 npm -@socket.io/component-emitter 3.1.0 npm -@tootallnate/once 2.0.0 npm -@types/cookie 0.4.1 npm -@types/cors 2.8.17 npm -@types/node 20.11.4 npm -abbrev 1.1.1 npm -accepts 1.3.8 npm -adduser 3.118ubuntu5 deb -agent-base 6.0.2 npm -agentkeepalive 4.2.1 npm -aggregate-error 3.1.0 npm -ansi-regex 5.0.1 npm -ansi-styles 4.3.0 npm -aproba 2.0.0 npm -apt 2.4.11 deb -apt-utils 2.4.11 deb -archy 1.0.0 npm -are-we-there-yet 3.0.1 npm -argparse 2.0.1 npm -array-flatten 1.1.1 npm -asap 2.0.6 npm -asn1 0.2.6 npm -balanced-match 1.0.2 npm -base-files 12ubuntu4.3 deb -base-passwd 3.5.52build1 deb -base64-js 1.5.1 npm -base64id 2.0.0 npm -bash 5.1-6ubuntu1 deb -bash 5.1.16 binary -bcrypt-pbkdf 1.0.2 npm -bin-links 3.0.3 npm -binary-extensions 2.2.0 npm -bl 4.1.0 npm -body-parser 1.20.1 npm -brace-expansion 1.1.11 npm -brace-expansion 2.0.1 npm -bsdutils 1:2.37.2-4ubuntu3 deb -btrfs-progs 5.16.2-1 deb -buffer 5.7.1 npm -buildcheck 0.0.6 npm -builtins 5.0.1 npm -bytes 3.1.2 npm -ca-certificates 20230311ubuntu0.22.04.1 deb -cacache 16.1.3 npm -call-bind 1.0.5 npm -chalk 4.1.2 npm -chownr 1.1.4 npm -chownr 2.0.0 npm -cidr-regex 3.1.1 npm -clean-stack 2.2.0 npm -cli-columns 4.0.0 npm -cli-table3 0.6.2 npm -clone 1.0.4 npm -cloud.google.com/go v0.102.1 go-module -cloud.google.com/go/compute v1.7.0 go-module -cloud.google.com/go/logging v1.4.2 go-module -cmd-shim 5.0.0 npm -code.cloudfoundry.org/clock v1.0.0 go-module -color-convert 2.0.1 npm -color-name 1.1.4 npm -color-support 1.1.3 npm -columnify 1.6.0 npm -common-ancestor-path 1.0.1 npm -concat-map 0.0.1 npm -console-control-strings 1.1.0 npm -containerd.io 1.6.27-1 deb -content-disposition 0.5.4 npm -content-type 1.0.5 npm -cookie 0.4.2 npm -cookie 0.5.0 npm -cookie-signature 1.0.6 npm -corepack 0.17.0 npm -coreutils 8.32-4.1ubuntu1 deb -cors 2.8.5 npm -cpu-features 0.0.9 npm -cron 3.0pl1-137ubuntu3 deb -cssesc 3.0.0 npm -curl 7.81.0-1ubuntu1.15 deb -dario.cat/mergo v1.0.0 go-module -dash 0.5.11+git20210903+057cd650a4ed-3build1 deb -debconf 1.5.79ubuntu1 deb -debianutils 5.5-1ubuntu2 deb -debug 2.6.9 npm -debug 4.3.4 npm -debuglog 1.0.1 npm -defaults 1.0.3 npm -define-data-property 1.1.1 npm -delegates 1.0.0 npm -depd 1.1.2 npm -depd 2.0.0 npm -destroy 1.2.0 npm -dezalgo 1.0.4 npm -diff 5.1.0 npm -diffutils 1:3.8-0ubuntu2 deb -dirmngr 2.2.27-3ubuntu2.1 deb -distro-info-data 0.52ubuntu0.6 deb -docker-ce 5:24.0.7-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:24.0.7-1~ubuntu.22.04~jammy deb -docker-compose-plugin 2.21.0-1~ubuntu.22.04~jammy deb -docker-modem 3.0.8 npm -dockerode 3.3.5 npm -dpkg 1.21.1ubuntu2.2 deb -drm-info 2.2.0-2 deb -e2fsprogs 1.46.5-2ubuntu1.1 deb -ee-first 1.1.1 npm -emoji-regex 8.0.0 npm -encodeurl 1.0.2 npm -encoding 0.1.13 npm -end-of-stream 1.4.4 npm -engine.io 6.5.4 npm -engine.io-parser 5.2.1 npm -env-paths 2.2.1 npm -err-code 2.0.3 npm -escape-html 1.0.3 npm -etag 1.8.1 npm -express 4.18.2 npm -fastest-levenshtein 1.0.12 npm -finalhandler 1.2.0 npm -findutils 4.8.0-1ubuntu3 deb -forwarded 0.2.0 npm -fresh 0.5.2 npm -fs-constants 1.0.0 npm -fs-minipass 2.1.0 npm -fs.realpath 1.0.0 npm -function-bind 1.1.1 npm -function-bind 1.1.2 npm -fuse-overlayfs 1.7.1-1 deb -fuse3 3.10.5-1build1 deb -gauge 4.0.4 npm -gcc-12-base 12.3.0-1ubuntu1~22.04 deb -get-intrinsic 1.2.2 npm -github.com/AlecAivazis/survey/v2 v2.3.7 go-module -github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module -github.com/Masterminds/semver/v3 v3.2.1 go-module -github.com/Microsoft/hcsshim v0.9.10 go-module -github.com/Microsoft/hcsshim v0.9.8 go-module -github.com/NVIDIA/go-nvml v0.12.0-1 go-module -github.com/NVIDIA/nvidia-container-toolkit v1.14.3 go-module -github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module -github.com/a8m/envsubst v1.3.0 go-module -github.com/adrg/xdg v0.4.0 go-module -github.com/agext/levenshtein v1.2.3 go-module -github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 go-module -github.com/armon/go-metrics v0.4.1 go-module -github.com/aws/aws-sdk-go-v2 v1.16.13 go-module -github.com/aws/aws-sdk-go-v2 v1.17.6 go-module -github.com/aws/aws-sdk-go-v2/config v1.17.4 go-module -github.com/aws/aws-sdk-go-v2/config v1.18.16 go-module -github.com/aws/aws-sdk-go-v2/credentials v1.12.17 go-module -github.com/aws/aws-sdk-go-v2/credentials v1.13.16 go-module -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.14 go-module -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.24 go-module -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.20 go-module -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.30 go-module -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.14 go-module -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.24 go-module -github.com/aws/aws-sdk-go-v2/internal/ini v1.3.21 go-module -github.com/aws/aws-sdk-go-v2/internal/ini v1.3.31 go-module -github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.15.17 go-module -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.14 go-module -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.24 go-module -github.com/aws/aws-sdk-go-v2/service/sso v1.11.20 go-module -github.com/aws/aws-sdk-go-v2/service/sso v1.12.5 go-module -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.13.2 go-module -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.5 go-module -github.com/aws/aws-sdk-go-v2/service/sts v1.16.16 go-module -github.com/aws/aws-sdk-go-v2/service/sts v1.18.6 go-module -github.com/aws/smithy-go v1.13.1 go-module -github.com/aws/smithy-go v1.13.5 go-module -github.com/beorn7/perks v1.0.1 go-module -github.com/blang/semver v3.5.1+incompatible go-module -github.com/bsphere/le_go v0.0.0-20200109081728-fc06dab2caa8 go-module -github.com/buger/goterm v1.0.4 go-module -github.com/cenkalti/backoff/v4 v4.1.2 go-module -github.com/cenkalti/backoff/v4 v4.2.0 go-module -github.com/cespare/xxhash/v2 v2.1.2 go-module -github.com/cespare/xxhash/v2 v2.2.0 go-module -github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module -github.com/cilium/ebpf v0.7.0 go-module -github.com/cilium/ebpf v0.9.1 go-module -github.com/cloudflare/cfssl v0.0.0-20180323000720-5d63dbd981b5 go-module -github.com/compose-spec/compose-go v1.18.3 go-module -github.com/container-orchestrated-devices/container-device-interface v0.6.0 go-module -github.com/container-storage-interface/spec v1.5.0 go-module -github.com/containerd/aufs v1.0.0 go-module -github.com/containerd/btrfs v1.0.0 go-module -github.com/containerd/cgroups v1.0.4 go-module -github.com/containerd/cgroups/v3 v3.0.2 go-module -github.com/containerd/console v1.0.3 go-module -github.com/containerd/containerd v1.6.22 go-module -github.com/containerd/containerd v1.6.27 go-module -github.com/containerd/containerd v1.7.3 go-module -github.com/containerd/continuity v0.3.0 go-module -github.com/containerd/continuity v0.4.1 go-module -github.com/containerd/fifo v1.0.0 go-module -github.com/containerd/fifo v1.1.0 go-module -github.com/containerd/go-cni v1.1.6 go-module -github.com/containerd/go-runc v1.0.0 go-module -github.com/containerd/go-runc v1.1.0 go-module -github.com/containerd/imgcrypt v1.1.4 go-module -github.com/containerd/log v0.1.0 go-module -github.com/containerd/nri v0.1.1 go-module -github.com/containerd/stargz-snapshotter/estargz v0.13.0 go-module -github.com/containerd/ttrpc v1.1.2 go-module -github.com/containerd/typeurl v1.0.2 go-module -github.com/containerd/typeurl/v2 v2.1.0 go-module -github.com/containerd/typeurl/v2 v2.1.1 go-module -github.com/containerd/zfs v1.1.0 go-module -github.com/containernetworking/cni v1.1.1 go-module -github.com/containernetworking/plugins v1.1.1 go-module -github.com/containers/ocicrypt v1.1.3 go-module -github.com/coreos/go-systemd/v22 v22.3.2 go-module -github.com/coreos/go-systemd/v22 v22.5.0 go-module -github.com/cpuguy83/go-md2man/v2 v2.0.0 go-module -github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module -github.com/cpuguy83/go-md2man/v2 v2.0.2 go-module -github.com/cyphar/filepath-securejoin v0.2.3 go-module -github.com/cyphar/filepath-securejoin v0.2.4 go-module -github.com/davecgh/go-spew v1.1.1 go-module -github.com/deckarep/golang-set/v2 v2.3.0 go-module -github.com/dimchansky/utfbom v1.1.1 go-module -github.com/distribution/distribution/v3 v3.0.0-20230601133803-97b1d649c493 go-module -github.com/docker/buildx v0.11.2 go-module -github.com/docker/cli v24.0.5+incompatible go-module -github.com/docker/cli/cmd/docker v24.0.7 go-module -github.com/docker/compose/v2 (devel) go-module -github.com/docker/distribution v2.8.2+incompatible go-module -github.com/docker/docker v24.0.5+incompatible go-module -github.com/docker/docker v24.0.7 go-module -github.com/docker/docker-credential-helpers v0.7.0 go-module -github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module -github.com/docker/go-connections v0.4.0 go-module -github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module -github.com/docker/go-metrics v0.0.1 go-module -github.com/docker/go-units v0.4.0 go-module -github.com/docker/go-units v0.5.0 go-module -github.com/docker/libkv v0.2.2-0.20211217103745-e480589147e3 go-module -github.com/docker/libtrust v0.0.0-20150526203908-9cbd2a1374f4 go-module -github.com/dustin/go-humanize v1.0.0 go-module -github.com/elliotchance/orderedmap v1.4.0 go-module -github.com/emicklei/go-restful v2.16.0+incompatible go-module -github.com/emicklei/go-restful/v3 v3.10.1 go-module -github.com/fatih/color v1.13.0 go-module -github.com/felixge/httpsnoop v1.0.2 go-module -github.com/felixge/httpsnoop v1.0.3 go-module -github.com/fernet/fernet-go v0.0.0-20211208181803-9f70042a33ee go-module -github.com/fluent/fluent-logger-golang v1.9.0 go-module -github.com/fsnotify/fsnotify v1.4.9 go-module -github.com/fsnotify/fsnotify v1.5.4 go-module -github.com/fvbommel/sortorder v1.0.2 go-module -github.com/go-logr/logr v1.2.2 go-module -github.com/go-logr/logr v1.2.3 go-module -github.com/go-logr/logr v1.2.4 go-module -github.com/go-logr/stdr v1.2.2 go-module -github.com/go-openapi/jsonpointer v0.19.5 go-module -github.com/go-openapi/jsonreference v0.20.0 go-module -github.com/go-openapi/swag v0.19.14 go-module -github.com/goccy/go-yaml v1.9.5 go-module -github.com/godbus/dbus/v5 v5.0.6 go-module -github.com/godbus/dbus/v5 v5.1.0 go-module -github.com/gofrs/flock v0.8.1 go-module -github.com/gogo/googleapis v1.3.2 go-module -github.com/gogo/googleapis v1.4.1 go-module -github.com/gogo/protobuf v1.3.2 go-module -github.com/golang-jwt/jwt/v4 v4.4.2 go-module -github.com/golang/gddo v0.0.0-20190904175337-72a348e765d2 go-module -github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da go-module -github.com/golang/mock v1.6.0 go-module -github.com/golang/protobuf v1.5.2 go-module -github.com/golang/protobuf v1.5.3 go-module -github.com/google/btree v1.1.2 go-module -github.com/google/certificate-transparency-go v1.1.4 go-module -github.com/google/gnostic v0.5.7-v3refs go-module -github.com/google/go-cmp v0.5.9 go-module -github.com/google/gofuzz v1.2.0 go-module -github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module -github.com/google/uuid v1.3.0 go-module -github.com/googleapis/enterprise-certificate-proxy v0.1.0 go-module -github.com/googleapis/gax-go/v2 v2.4.0 go-module -github.com/gorilla/mux v1.8.0 go-module -github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module -github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module -github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module -github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 go-module -github.com/hashicorp/errwrap v1.1.0 go-module -github.com/hashicorp/go-immutable-radix v1.3.1 go-module -github.com/hashicorp/go-memdb v1.3.2 go-module -github.com/hashicorp/go-msgpack v0.5.5 go-module -github.com/hashicorp/go-multierror v1.1.1 go-module -github.com/hashicorp/go-sockaddr v1.0.2 go-module -github.com/hashicorp/go-version v1.6.0 go-module -github.com/hashicorp/golang-lru v0.5.4 go-module -github.com/hashicorp/memberlist v0.4.0 go-module -github.com/hashicorp/serf v0.8.5 go-module -github.com/imdario/mergo v0.3.13 go-module -github.com/imdario/mergo v0.3.16 go-module -github.com/in-toto/in-toto-golang v0.5.0 go-module -github.com/intel/goresctrl v0.2.0 go-module -github.com/ishidawataru/sctp v0.0.0-20230406120618-7ff4192f6ff2 go-module -github.com/jinzhu/copier v0.3.5 go-module -github.com/jonboulle/clockwork v0.4.0 go-module -github.com/josharian/intern v1.0.0 go-module -github.com/json-iterator/go v1.1.12 go-module -github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module -github.com/klauspost/compress v1.15.9 go-module -github.com/klauspost/compress v1.16.5 go-module -github.com/klauspost/compress v1.17.2 go-module -github.com/magiconair/properties v1.8.6 go-module -github.com/mailru/easyjson v0.7.6 go-module -github.com/mattn/go-colorable v0.1.12 go-module -github.com/mattn/go-colorable v0.1.13 go-module -github.com/mattn/go-isatty v0.0.14 go-module -github.com/mattn/go-isatty v0.0.17 go-module -github.com/mattn/go-runewidth v0.0.14 go-module -github.com/mattn/go-shellwords v1.0.12 go-module -github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module -github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module -github.com/miekg/dns v1.1.43 go-module -github.com/miekg/pkcs11 v1.1.1 go-module -github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module -github.com/mistifyio/go-zfs/v3 v3.0.1 go-module -github.com/mitchellh/hashstructure/v2 v2.0.2 go-module -github.com/mitchellh/mapstructure v1.5.0 go-module -github.com/moby/buildkit v0.11.7-0.20230908085316-d3e6c1360f6e go-module -github.com/moby/buildkit v0.12.1 go-module -github.com/moby/ipvs v1.1.0 go-module -github.com/moby/locker v1.0.1 go-module -github.com/moby/patternmatcher v0.6.0 go-module -github.com/moby/pubsub v1.0.0 go-module -github.com/moby/spdystream v0.2.0 go-module -github.com/moby/swarmkit/v2 v2.0.0-20230531205928-01bb7a41396b go-module -github.com/moby/sys/mount v0.3.3 go-module -github.com/moby/sys/mountinfo v0.5.0 go-module -github.com/moby/sys/mountinfo v0.6.2 go-module -github.com/moby/sys/sequential v0.5.0 go-module -github.com/moby/sys/signal v0.6.0 go-module -github.com/moby/sys/signal v0.7.0 go-module -github.com/moby/sys/symlink v0.2.0 go-module -github.com/moby/sys/user v0.1.0 go-module -github.com/moby/term v0.5.0 go-module -github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module -github.com/modern-go/reflect2 v1.0.2 go-module -github.com/morikuni/aec v1.0.0 go-module -github.com/mrunalp/fileutils v0.5.1 go-module -github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 go-module -github.com/opencontainers/go-digest v1.0.0 go-module -github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module -github.com/opencontainers/image-spec v1.1.0-rc3 go-module -github.com/opencontainers/image-spec v1.1.0-rc4 go-module -github.com/opencontainers/runc v0.0.0-20240102023416-4bccb38cc9cf go-module -github.com/opencontainers/runc v1.1.6 go-module -github.com/opencontainers/runc v1.1.7 go-module -github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module -github.com/opencontainers/runtime-spec v1.1.0-rc.2 go-module -github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module -github.com/opencontainers/selinux v1.10.0 go-module -github.com/opencontainers/selinux v1.10.1 go-module -github.com/opencontainers/selinux v1.11.0 go-module -github.com/package-url/packageurl-go v0.1.1-0.20220428063043-89078438f170 go-module -github.com/pelletier/go-toml v1.9.4 go-module -github.com/pelletier/go-toml v1.9.5 go-module -github.com/philhofer/fwd v1.1.2 go-module -github.com/pkg/errors v0.9.1 go-module -github.com/pmezard/go-difflib v1.0.0 go-module -github.com/prometheus/client_golang v1.11.1 go-module -github.com/prometheus/client_golang v1.14.0 go-module -github.com/prometheus/client_model v0.2.0 go-module -github.com/prometheus/client_model v0.3.0 go-module -github.com/prometheus/common v0.30.0 go-module -github.com/prometheus/common v0.37.0 go-module -github.com/prometheus/common v0.42.0 go-module -github.com/prometheus/procfs v0.7.3 go-module -github.com/prometheus/procfs v0.8.0 go-module -github.com/prometheus/procfs v0.9.0 go-module -github.com/rivo/uniseg v0.2.0 go-module -github.com/rootless-containers/rootlesskit v1.1.1 go-module -github.com/russross/blackfriday/v2 v2.0.1 go-module -github.com/russross/blackfriday/v2 v2.1.0 go-module -github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 go-module -github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 go-module -github.com/secure-systems-lab/go-securesystemslib v0.4.0 go-module -github.com/serialx/hashring v0.0.0-20190422032157-8b2912629002 go-module -github.com/shibumi/go-pathspec v1.3.0 go-module -github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module -github.com/sirupsen/logrus v1.8.1 go-module -github.com/sirupsen/logrus v1.9.0 go-module -github.com/sirupsen/logrus v1.9.3 go-module -github.com/spdx/tools-golang v0.3.1-0.20230104082527-d6f58551be3f go-module -github.com/spf13/cobra v1.4.0 go-module -github.com/spf13/cobra v1.6.1 go-module -github.com/spf13/cobra v1.7.0 go-module -github.com/spf13/pflag v1.0.5 go-module -github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 go-module -github.com/stretchr/testify v1.8.4 go-module -github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module -github.com/tchap/go-patricia v2.2.6+incompatible go-module -github.com/theupdateframework/notary v0.7.0 go-module -github.com/tilt-dev/fsnotify v1.4.8-0.20220602155310-fff9c274a375 go-module -github.com/timtadh/data-structures v0.5.3 go-module -github.com/timtadh/lexmachine v0.2.2 go-module -github.com/tinylib/msgp v1.1.6 go-module -github.com/tonistiigi/fsutil v0.0.0-20230105215944-fb433841cbfa go-module -github.com/tonistiigi/fsutil v0.0.0-20230629203738-36ef4d8c0dbb go-module -github.com/tonistiigi/go-actions-cache v0.0.0-20220404170428-0bdeb6e1eac7 go-module -github.com/tonistiigi/go-archvariant v1.0.0 go-module -github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module -github.com/tonistiigi/vt100 v0.0.0-20230623042737-f9a4f7ef6531 go-module -github.com/urfave/cli v1.22.1 go-module -github.com/urfave/cli/v2 v2.3.0 go-module -github.com/vbatts/tar-split v0.11.2 go-module -github.com/vishvananda/netlink v1.1.0 go-module -github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5 go-module -github.com/vishvananda/netlink v1.2.1-beta.2 go-module -github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df go-module -github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f go-module -github.com/vishvananda/netns v0.0.2 go-module -github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb go-module -github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module -github.com/xeipuuv/gojsonschema v1.2.0 go-module -gitlab.com/nvidia/cloud-native/go-nvlib v0.0.0-20230818092907-09424fdc8884 go-module -glob 7.2.3 npm -glob 8.0.3 npm -gnupg 2.2.27-3ubuntu2.1 deb -gnupg-l10n 2.2.27-3ubuntu2.1 deb -gnupg-utils 2.2.27-3ubuntu2.1 deb -go.etcd.io/bbolt v1.3.7 go-module -go.etcd.io/etcd/client/pkg/v3 v3.5.6 go-module -go.etcd.io/etcd/pkg/v3 v3.5.6 go-module -go.etcd.io/etcd/raft/v3 v3.5.6 go-module -go.etcd.io/etcd/server/v3 v3.5.6 go-module -go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module -go.opencensus.io v0.23.0 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.28.0 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.29.0 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.40.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.29.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.40.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.29.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.40.0 go-module -go.opentelemetry.io/otel v1.14.0 go-module -go.opentelemetry.io/otel v1.3.0 go-module -go.opentelemetry.io/otel v1.4.1 go-module -go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.14.0 go-module -go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.4.1 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.14.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.4.1 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.14.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.4.1 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.14.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.4.1 go-module -go.opentelemetry.io/otel/internal/metric v0.27.0 go-module -go.opentelemetry.io/otel/metric v0.27.0 go-module -go.opentelemetry.io/otel/metric v0.37.0 go-module -go.opentelemetry.io/otel/sdk v1.14.0 go-module -go.opentelemetry.io/otel/sdk v1.3.0 go-module -go.opentelemetry.io/otel/sdk v1.4.1 go-module -go.opentelemetry.io/otel/trace v1.14.0 go-module -go.opentelemetry.io/otel/trace v1.3.0 go-module -go.opentelemetry.io/otel/trace v1.4.1 go-module -go.opentelemetry.io/proto/otlp v0.11.0 go-module -go.opentelemetry.io/proto/otlp v0.12.0 go-module -go.opentelemetry.io/proto/otlp v0.19.0 go-module -go.uber.org/atomic v1.9.0 go-module -go.uber.org/multierr v1.8.0 go-module -go.uber.org/zap v1.21.0 go-module -golang.org/x/crypto v0.14.0 go-module -golang.org/x/crypto v0.7.0 go-module -golang.org/x/exp v0.0.0-20230713183714-613f0c0eb8a1 go-module -golang.org/x/mod v0.5.0 go-module -golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module -golang.org/x/net v0.17.0 go-module -golang.org/x/net v0.8.0 go-module -golang.org/x/net v0.9.0 go-module -golang.org/x/oauth2 v0.1.0 go-module -golang.org/x/oauth2 v0.10.0 go-module -golang.org/x/oauth2 v0.7.0 go-module -golang.org/x/sync v0.1.0 go-module -golang.org/x/sync v0.3.0 go-module -golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module -golang.org/x/sys v0.13.0 go-module -golang.org/x/sys v0.6.0 go-module -golang.org/x/sys v0.7.0 go-module -golang.org/x/term v0.13.0 go-module -golang.org/x/term v0.7.0 go-module -golang.org/x/text v0.13.0 go-module -golang.org/x/text v0.3.7 go-module -golang.org/x/text v0.9.0 go-module -golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module -golang.org/x/time v0.3.0 go-module -golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module -google.golang.org/api v0.93.0 go-module -google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63 go-module -google.golang.org/genproto v0.0.0-20220706185917-7780775163c4 go-module -google.golang.org/genproto v0.0.0-20230526161137-0005af68ea54 go-module -google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9 go-module -google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19 go-module -google.golang.org/grpc v1.50.1 go-module -google.golang.org/grpc v1.57.0 go-module -google.golang.org/grpc v1.58.3 go-module -google.golang.org/protobuf v1.27.1 go-module -google.golang.org/protobuf v1.28.1 go-module -google.golang.org/protobuf v1.30.0 go-module -google.golang.org/protobuf v1.31.0 go-module -gopd 1.0.1 npm -gopkg.in/inf.v0 v0.9.1 go-module -gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module -gopkg.in/square/go-jose.v2 v2.5.1 go-module -gopkg.in/yaml.v2 v2.4.0 go-module -gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b go-module -gopkg.in/yaml.v3 v3.0.1 go-module -gpg 2.2.27-3ubuntu2.1 deb -gpg-agent 2.2.27-3ubuntu2.1 deb -gpg-wks-client 2.2.27-3ubuntu2.1 deb -gpg-wks-server 2.2.27-3ubuntu2.1 deb -gpgconf 2.2.27-3ubuntu2.1 deb -gpgsm 2.2.27-3ubuntu2.1 deb -gpgv 2.2.27-3ubuntu2.1 deb -graceful-fs 4.2.10 npm -grep 3.7-1build1 deb -gzip 1.10-4ubuntu4.1 deb -has 1.0.3 npm -has-flag 4.0.0 npm -has-property-descriptors 1.0.1 npm -has-proto 1.0.1 npm -has-symbols 1.0.3 npm -has-unicode 2.0.1 npm -hasown 2.0.0 npm -hosted-git-info 5.2.1 npm -hostname 3.23ubuntu2 deb -http-cache-semantics 4.1.1 npm -http-errors 2.0.0 npm -http-proxy-agent 5.0.0 npm -https-proxy-agent 5.0.1 npm -humanize-ms 1.2.1 npm -iconv-lite 0.4.24 npm -iconv-lite 0.6.3 npm -ieee754 1.2.1 npm -ignore-walk 5.0.1 npm -imurmurhash 0.1.4 npm -indent-string 4.0.0 npm -infer-owner 1.0.4 npm -inflight 1.0.6 npm -inherits 2.0.4 npm -ini 3.0.1 npm -init-package-json 3.0.2 npm -init-system-helpers 1.62 deb -ip 2.0.0 npm -ip-regex 4.3.0 npm -ipaddr.js 1.9.1 npm -iptables 1.8.7-1ubuntu5.1 deb -is-cidr 4.0.2 npm -is-core-module 2.10.0 npm -is-fullwidth-code-point 3.0.0 npm -is-lambda 1.0.1 npm -isexe 2.0.0 npm -jq 1.6-2.1ubuntu3 deb -js-yaml 4.1.0 npm -json-parse-even-better-errors 2.3.1 npm -json-stringify-nice 1.1.4 npm -jsonparse 1.3.1 npm -just-diff 5.1.1 npm -just-diff-apply 5.4.1 npm -k8s.io/api v0.22.5 go-module -k8s.io/api v0.26.2 go-module -k8s.io/apimachinery v0.22.5 go-module -k8s.io/apimachinery v0.26.2 go-module -k8s.io/apiserver v0.22.5 go-module -k8s.io/client-go v0.22.5 go-module -k8s.io/client-go v0.26.2 go-module -k8s.io/component-base v0.22.5 go-module -k8s.io/cri-api v0.25.0 go-module -k8s.io/klog/v2 v2.30.0 go-module -k8s.io/klog/v2 v2.80.1 go-module -k8s.io/klog/v2 v2.90.1 go-module -k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 go-module -k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b go-module -k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 go-module -kasm-wizard 0.0.1 npm -libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.11 deb -libassuan0 2.5.5-1build1 deb -libattr1 1:2.5.1-1build1 deb -libaudit-common 1:3.0.7-1build1 deb -libaudit1 1:3.0.7-1build1 deb -libblkid1 2.37.2-4ubuntu3 deb -libbrotli1 1.0.9-2build6 deb -libbsd0 0.11.5-1 deb -libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.1 deb -libc6 2.35-0ubuntu3.6 deb -libcap-ng0 0.7.9-2.2build3 deb -libcap2 1:2.44-1ubuntu0.22.04.1 deb -libcom-err2 1.46.5-2ubuntu1.1 deb -libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.15 deb -libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb -libdebconfclient0 0.261ubuntu1 deb -libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb -libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb -libdrm2 2.4.113-2~ubuntu0.22.04.1 deb -libedit2 3.1-20210910-1build1 deb -libexpat1 2.4.7-1ubuntu0.2 deb -libext2fs2 1.46.5-2ubuntu1.1 deb -libffi8 3.4.2-4 deb -libfuse3-3 3.10.5-1build1 deb -libgcc-s1 12.3.0-1ubuntu1~22.04 deb -libgcrypt20 1.9.4-3ubuntu3 deb -libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.2 deb -libgpg-error0 1.43-3 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb -libhogweed6 3.7.3-1build2 deb -libicu70 70.1-2 deb -libidn2-0 2.3.2-2build1 deb -libinih1 53-1ubuntu3 deb -libip4tc2 1.8.7-1ubuntu5.1 deb -libip6tc2 1.8.7-1ubuntu5.1 deb -libjq1 1.6-2.1ubuntu3 deb -libjson-c5 0.15-3~ubuntu1.22.04.2 deb -libk5crypto3 1.19.2-2ubuntu0.2 deb -libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.2 deb -libkrb5support0 1.19.2-2ubuntu0.2 deb -libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.16+dfsg-0ubuntu0.22.04.1 deb -liblz4-1 1.9.3-2build2 deb -liblzma5 5.2.5-2ubuntu1 deb -liblzo2-2 2.10-2build3 deb -libmd0 1.0.4-1build1 deb -libmnl0 1.0.4-3build2 deb -libmount1 2.37.2-4ubuntu3 deb -libmpdec3 2.5.1-2build2 deb -libncurses6 6.3-2ubuntu0.1 deb -libncursesw6 6.3-2ubuntu0.1 deb -libnetfilter-conntrack3 1.0.9-1 deb -libnettle8 3.7.3-1build2 deb -libnfnetlink0 1.0.1-3build3 deb -libnftnl11 1.2.1-1build1 deb -libnghttp2-14 1.43.0-1ubuntu0.1 deb -libnpmaccess 6.0.4 npm -libnpmdiff 4.0.5 npm -libnpmexec 4.0.14 npm -libnpmfund 3.0.5 npm -libnpmhook 8.0.4 npm -libnpmorg 4.0.4 npm -libnpmpack 4.1.3 npm -libnpmpublish 6.0.5 npm -libnpmsearch 5.0.4 npm -libnpmteam 4.0.4 npm -libnpmversion 3.0.7 npm -libnpth0 1.6-3build2 deb -libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.14.3-1 deb -libnvidia-container1 1.14.3-1 deb -libonig5 6.9.7.1-2build1 deb -libp11-kit0 0.24.0-6build1 deb -libpam-modules 1.4.0-11ubuntu2.3 deb -libpam-modules-bin 1.4.0-11ubuntu2.3 deb -libpam-runtime 1.4.0-11ubuntu2.3 deb -libpam0g 1.4.0-11ubuntu2.3 deb -libpcre2-8-0 10.39-3ubuntu0.1 deb -libpcre3 2:8.39-13ubuntu0.22.04.1 deb -libprocps8 2:3.3.17-6ubuntu2 deb -libpsl5 0.21.0-1.2build2 deb -libpython3-stdlib 3.10.6-1~22.04 deb -libpython3.10-minimal 3.10.12-1~22.04.3 deb -libpython3.10-stdlib 3.10.12-1~22.04.3 deb -libreadline8 8.1.2-1 deb -librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb -libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libseccomp2 2.5.3-2ubuntu2 deb -libselinux1 3.3-1build2 deb -libsemanage-common 3.3-1build2 deb -libsemanage2 3.3-1build2 deb -libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3 deb -libsqlite3-0 3.37.2-2ubuntu0.3 deb -libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2ubuntu0.22.04.2 deb -libssl3 3.0.2-0ubuntu1.10 deb -libstdc++6 12.3.0-1ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.9 deb -libtasn1-6 4.18.0-4build1 deb -libtinfo6 6.3-2ubuntu0.1 deb -libtirpc-common 1.3.2-2ubuntu0.1 deb -libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.9 deb -libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3 deb -libxtables12 1.8.7-1ubuntu5.1 deb -libxxhash0 0.8.1-1 deb -libzstd1 1.4.8+dfsg-3build1 deb -locales 2.35-0ubuntu3.5 deb -lodash 4.17.21 npm -login 1:4.8.1-2ubuntu2.1 deb -logsave 1.46.5-2ubuntu1.1 deb -lru-cache 6.0.0 npm -lru-cache 7.13.2 npm -lsb-base 11.1.0ubuntu4 deb -lsb-release 11.1.0ubuntu4 deb -lsof 4.93.2+dfsg-1.1build2 deb -make-fetch-happen 10.2.1 npm -mawk 1.3.4.20200120-3 deb -media-typer 0.3.0 npm -media-types 7.0.0 deb -merge-descriptors 1.0.1 npm -methods 1.1.2 npm -mime 1.6.0 npm -mime-db 1.52.0 npm -mime-types 2.1.35 npm -minimatch 3.1.2 npm -minimatch 5.1.0 npm -minipass 3.3.4 npm -minipass-collect 1.0.2 npm -minipass-fetch 2.1.1 npm -minipass-flush 1.0.5 npm -minipass-json-stream 1.0.1 npm -minipass-pipeline 1.2.4 npm -minipass-sized 1.0.3 npm -minizlib 2.1.2 npm -mkdirp 1.0.4 npm -mkdirp-classic 0.5.3 npm -mkdirp-infer-owner 2.0.0 npm -mount 2.37.2-4ubuntu3 deb -ms 2.0.0 npm -ms 2.1.2 npm -ms 2.1.3 npm -mute-stream 0.0.8 npm -nan 2.18.0 npm -ncurses-base 6.3-2ubuntu0.1 deb -ncurses-bin 6.3-2ubuntu0.1 deb -negotiator 0.6.3 npm -netbase 6.3 deb -netcat 1.218-4ubuntu1 deb -netcat-openbsd 1.218-4ubuntu1 deb -node-gyp 9.1.0 npm -node-pty 0.10.1 npm -nodejs 16.20.2-deb-1nodesource1 deb -nopt 5.0.0 npm -nopt 6.0.0 npm -normalize-package-data 4.0.1 npm -npm 8.19.4 npm -npm-audit-report 3.0.0 npm -npm-bundled 1.1.2 npm -npm-bundled 2.0.1 npm -npm-init 0.0.0 npm -npm-install-checks 5.0.0 npm -npm-normalize-package-bin 1.0.1 npm -npm-normalize-package-bin 2.0.0 npm -npm-package-arg 9.1.0 npm -npm-packlist 5.1.3 npm -npm-pick-manifest 7.0.2 npm -npm-profile 6.2.1 npm -npm-registry-fetch 13.3.1 npm -npm-user-validate 1.0.1 npm -npmlog 6.0.2 npm -nvidia-container-toolkit 1.14.3-1 deb -nvidia-container-toolkit-base 1.14.3-1 deb -nvidia-docker2 2.14.0-1 deb -object-assign 4.1.1 npm -object-inspect 1.13.1 npm -on-finished 2.4.1 npm -once 1.4.0 npm -opener 1.5.2 npm -openssl 3.0.2-0ubuntu1.12 deb -p-map 4.0.0 npm -pacote 13.6.2 npm -parse-conflict-json 2.0.2 npm -parseurl 1.3.3 npm -passwd 1:4.8.1-2ubuntu2.1 deb -path-is-absolute 1.0.1 npm -path-to-regexp 0.1.7 npm -perl-base 5.34.0-3ubuntu1.2 deb -pigz 2.6-1 deb -pinentry-curses 1.1.1-1build2 deb -postcss-selector-parser 6.0.10 npm -proc-log 2.0.1 npm -procps 2:3.3.17-6ubuntu2 deb -promise-all-reject-late 1.0.1 npm -promise-call-limit 1.0.1 npm -promise-inflight 1.0.1 npm -promise-retry 2.0.1 npm -promzard 0.3.0 npm -proxy-addr 2.0.7 npm -publicsuffix 20211207.1025-1 deb -pump 3.0.0 npm -python3 3.10.6-1~22.04 deb -python3-minimal 3.10.6-1~22.04 deb -python3.10 3.10.12-1~22.04.3 deb -python3.10-minimal 3.10.12-1~22.04.3 deb -qrcode-terminal 0.12.0 npm -qs 6.11.0 npm -range-parser 1.2.1 npm -raw-body 2.5.1 npm -read 1.0.7 npm -read-cmd-shim 3.0.0 npm -read-package-json 5.0.2 npm -read-package-json-fast 2.0.3 npm -readable-stream 3.6.0 npm -readable-stream 3.6.2 npm -readdir-scoped-modules 1.1.0 npm -readline-common 8.1.2-1 deb -resenje.org/singleflight v0.3.0 go-module -retry 0.12.0 npm -rimraf 3.0.2 npm -safe-buffer 5.2.1 npm -safer-buffer 2.1.2 npm -sed 4.8-1ubuntu2 deb -semver 7.3.7 npm -send 0.18.0 npm -sensible-utils 0.0.17 deb -serve-static 1.15.0 npm -set-blocking 2.0.0 npm -set-function-length 1.2.0 npm -setprototypeof 1.2.0 npm -side-channel 1.0.4 npm -signal-exit 3.0.7 npm -sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 go-module -sigs.k8s.io/structured-merge-diff/v4 v4.1.2 go-module -sigs.k8s.io/structured-merge-diff/v4 v4.2.3 go-module -sigs.k8s.io/yaml v1.2.0 go-module -sigs.k8s.io/yaml v1.3.0 go-module -smart-buffer 4.2.0 npm -socket.io 4.7.4 npm -socket.io-adapter 2.5.2 npm -socket.io-parser 4.2.4 npm -socks 2.7.0 npm -socks-proxy-agent 7.0.0 npm -spdx-correct 3.1.1 npm -spdx-exceptions 2.3.0 npm -spdx-expression-parse 3.0.1 npm -spdx-license-ids 3.0.11 npm -split-ca 1.0.1 npm -ssh2 1.15.0 npm -ssri 9.0.1 npm -statuses 2.0.1 npm -stdlib go1.18.1 go-module -stdlib go1.20.10 go-module -stdlib go1.20.13 go-module -stdlib go1.20.5 go-module -stdlib go1.20.7 go-module -string-width 4.2.3 npm -string_decoder 1.3.0 npm -strip-ansi 6.0.1 npm -sudo 1.9.9-1ubuntu2.4 deb -supports-color 7.2.0 npm -systeminformation 5.21.22 npm -sysvinit-utils 3.01-1ubuntu1 deb -tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tar 6.1.11 npm -tar-fs 2.0.1 npm -tar-stream 2.2.0 npm -text-table 0.2.0 npm -tiny-relative-date 1.3.0 npm -toidentifier 1.0.1 npm -treeverse 2.0.0 npm -tweetnacl 0.14.5 npm -type-is 1.6.18 npm -tzdata 2023c-0ubuntu0.22.04.2 deb -ubuntu-keyring 2021.03.26 deb -uidmap 1:4.8.1-2ubuntu2.1 deb -undici-types 5.26.5 npm -unique-filename 2.0.1 npm -unique-slug 3.0.0 npm -unpipe 1.0.0 npm -usrmerge 25ubuntu2 deb -util-deprecate 1.0.2 npm -util-linux 2.37.2-4ubuntu3 deb -utils-merge 1.0.1 npm -validate-npm-package-license 3.0.4 npm -validate-npm-package-name 4.0.0 npm -vary 1.1.2 npm -walk-up-path 1.0.0 npm -wcwidth 1.0.1 npm -which 2.0.2 npm -wide-align 1.1.5 npm -wrappy 1.0.2 npm -write-file-atomic 4.0.2 npm -ws 8.11.0 npm -xfsprogs 5.13.0-1ubuntu2 deb -yallist 4.0.0 npm -zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb +NAME VERSION TYPE +1to2 1.0.0 npm +@balena/dockerignore 1.0.2 npm +@colors/colors 1.5.0 npm +@gar/promisify 1.1.3 npm +@isaacs/string-locale-compare 1.1.0 npm +@npmcli/arborist 5.6.3 npm +@npmcli/ci-detect 2.0.0 npm +@npmcli/config 4.2.2 npm +@npmcli/disparity-colors 2.0.0 npm +@npmcli/fs 2.1.2 npm +@npmcli/git 3.0.2 npm +@npmcli/installed-package-contents 1.0.7 npm +@npmcli/map-workspaces 2.0.4 npm +@npmcli/metavuln-calculator 3.1.1 npm +@npmcli/move-file 2.0.1 npm +@npmcli/name-from-folder 1.0.1 npm +@npmcli/node-gyp 2.0.0 npm +@npmcli/package-json 2.0.0 npm +@npmcli/promise-spawn 3.0.0 npm +@npmcli/query 1.2.0 npm +@npmcli/run-script 4.2.1 npm +@socket.io/component-emitter 3.1.0 npm +@tootallnate/once 2.0.0 npm +@types/cookie 0.4.1 npm +@types/cors 2.8.17 npm +@types/node 20.11.5 npm +abbrev 1.1.1 npm +accepts 1.3.8 npm +adduser 3.118ubuntu5 deb +agent-base 6.0.2 npm +agentkeepalive 4.2.1 npm +aggregate-error 3.1.0 npm +ansi-regex 5.0.1 npm +ansi-styles 4.3.0 npm +aproba 2.0.0 npm +apt 2.4.11 deb +apt-utils 2.4.11 deb +archy 1.0.0 npm +are-we-there-yet 3.0.1 npm +argparse 2.0.1 npm +array-flatten 1.1.1 npm +asap 2.0.6 npm +asn1 0.2.6 npm +balanced-match 1.0.2 npm +base-files 12ubuntu4.3 deb +base-passwd 3.5.52build1 deb +base64-js 1.5.1 npm +base64id 2.0.0 npm +bash 5.1-6ubuntu1 deb +bash 5.1.16 binary +bcrypt-pbkdf 1.0.2 npm +bin-links 3.0.3 npm +binary-extensions 2.2.0 npm +bl 4.1.0 npm +body-parser 1.20.1 npm +brace-expansion 1.1.11 npm +brace-expansion 2.0.1 npm +bsdutils 1:2.37.2-4ubuntu3 deb +btrfs-progs 5.16.2-1 deb +buffer 5.7.1 npm +buildcheck 0.0.6 npm +builtins 5.0.1 npm +bytes 3.1.2 npm +ca-certificates 20230311ubuntu0.22.04.1 deb +cacache 16.1.3 npm +call-bind 1.0.5 npm +chalk 4.1.2 npm +chownr 1.1.4 npm +chownr 2.0.0 npm +cidr-regex 3.1.1 npm +clean-stack 2.2.0 npm +cli-columns 4.0.0 npm +cli-table3 0.6.2 npm +clone 1.0.4 npm +cloud.google.com/go/compute/metadata v0.2.3 go-module +cloud.google.com/go/logging v1.7.0 go-module +cloud.google.com/go/longrunning v0.5.1 go-module +cmd-shim 5.0.0 npm +code.cloudfoundry.org/clock v1.0.0 go-module +color-convert 2.0.1 npm +color-name 1.1.4 npm +color-support 1.1.3 npm +columnify 1.6.0 npm +common-ancestor-path 1.0.1 npm +concat-map 0.0.1 npm +console-control-strings 1.1.0 npm +containerd.io 1.6.27-1 deb +content-disposition 0.5.4 npm +content-type 1.0.5 npm +cookie 0.4.2 npm +cookie 0.5.0 npm +cookie-signature 1.0.6 npm +corepack 0.17.0 npm +coreutils 8.32-4.1ubuntu1 deb +cors 2.8.5 npm +cpu-features 0.0.9 npm +cron 3.0pl1-137ubuntu3 deb +cssesc 3.0.0 npm +curl 7.81.0-1ubuntu1.15 deb +dario.cat/mergo v1.0.0 go-module +dash 0.5.11+git20210903+057cd650a4ed-3build1 deb +debconf 1.5.79ubuntu1 deb +debianutils 5.5-1ubuntu2 deb +debug 2.6.9 npm +debug 4.3.4 npm +debuglog 1.0.1 npm +defaults 1.0.3 npm +define-data-property 1.1.1 npm +delegates 1.0.0 npm +depd 1.1.2 npm +depd 2.0.0 npm +destroy 1.2.0 npm +dezalgo 1.0.4 npm +diff 5.1.0 npm +diffutils 1:3.8-0ubuntu2 deb +dirmngr 2.2.27-3ubuntu2.1 deb +distro-info-data 0.52ubuntu0.6 deb +docker-ce 5:25.0.0-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:25.0.0-1~ubuntu.22.04~jammy deb +docker-compose-plugin 2.24.1-1~ubuntu.22.04~jammy deb +docker-modem 3.0.8 npm +dockerode 3.3.5 npm +dpkg 1.21.1ubuntu2.2 deb +drm-info 2.2.0-2 deb +e2fsprogs 1.46.5-2ubuntu1.1 deb +ee-first 1.1.1 npm +emoji-regex 8.0.0 npm +encodeurl 1.0.2 npm +encoding 0.1.13 npm +end-of-stream 1.4.4 npm +engine.io 6.5.4 npm +engine.io-parser 5.2.1 npm +env-paths 2.2.1 npm +err-code 2.0.3 npm +escape-html 1.0.3 npm +etag 1.8.1 npm +express 4.18.2 npm +fastest-levenshtein 1.0.12 npm +finalhandler 1.2.0 npm +findutils 4.8.0-1ubuntu3 deb +forwarded 0.2.0 npm +fresh 0.5.2 npm +fs-constants 1.0.0 npm +fs-minipass 2.1.0 npm +fs.realpath 1.0.0 npm +function-bind 1.1.1 npm +function-bind 1.1.2 npm +fuse-overlayfs 1.7.1-1 deb +fuse3 3.10.5-1build1 deb +gauge 4.0.4 npm +gcc-12-base 12.3.0-1ubuntu1~22.04 deb +get-intrinsic 1.2.2 npm +github.com/AlecAivazis/survey/v2 v2.3.7 go-module +github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module +github.com/Masterminds/semver/v3 v3.2.1 go-module +github.com/Microsoft/hcsshim v0.11.4 go-module +github.com/Microsoft/hcsshim v0.9.10 go-module +github.com/NVIDIA/go-nvml v0.12.0-1 go-module +github.com/NVIDIA/nvidia-container-toolkit v1.14.3 go-module +github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module +github.com/a8m/envsubst v1.3.0 go-module +github.com/agext/levenshtein v1.2.3 go-module +github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092 go-module +github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 go-module +github.com/armon/go-metrics v0.4.1 go-module +github.com/aws/aws-sdk-go-v2 v1.17.6 go-module +github.com/aws/aws-sdk-go-v2/config v1.18.16 go-module +github.com/aws/aws-sdk-go-v2/credentials v1.13.16 go-module +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.24 go-module +github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.30 go-module +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.24 go-module +github.com/aws/aws-sdk-go-v2/internal/ini v1.3.31 go-module +github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.15.17 go-module +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.24 go-module +github.com/aws/aws-sdk-go-v2/service/sso v1.12.5 go-module +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.5 go-module +github.com/aws/aws-sdk-go-v2/service/sts v1.18.6 go-module +github.com/aws/smithy-go v1.13.5 go-module +github.com/beorn7/perks v1.0.1 go-module +github.com/blang/semver v3.5.1+incompatible go-module +github.com/buger/goterm v1.0.4 go-module +github.com/cenkalti/backoff/v4 v4.1.2 go-module +github.com/cenkalti/backoff/v4 v4.2.1 go-module +github.com/cespare/xxhash/v2 v2.2.0 go-module +github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module +github.com/cilium/ebpf v0.11.0 go-module +github.com/cilium/ebpf v0.7.0 go-module +github.com/cloudflare/cfssl v1.6.4 go-module +github.com/compose-spec/compose-go/v2 v2.0.0-rc.1 go-module +github.com/container-orchestrated-devices/container-device-interface v0.6.0 go-module +github.com/container-storage-interface/spec v1.5.0 go-module +github.com/containerd/aufs v1.0.0 go-module +github.com/containerd/btrfs v1.0.0 go-module +github.com/containerd/cgroups v1.0.4 go-module +github.com/containerd/cgroups/v3 v3.0.3 go-module +github.com/containerd/console v1.0.3 go-module +github.com/containerd/containerd v1.6.27 go-module +github.com/containerd/containerd v1.7.12 go-module +github.com/containerd/continuity v0.3.0 go-module +github.com/containerd/continuity v0.4.2 go-module +github.com/containerd/fifo v1.0.0 go-module +github.com/containerd/fifo v1.1.0 go-module +github.com/containerd/go-cni v1.1.6 go-module +github.com/containerd/go-cni v1.1.9 go-module +github.com/containerd/go-runc v1.0.0 go-module +github.com/containerd/go-runc v1.1.0 go-module +github.com/containerd/imgcrypt v1.1.4 go-module +github.com/containerd/log v0.1.0 go-module +github.com/containerd/nri v0.1.1 go-module +github.com/containerd/nydus-snapshotter v0.8.2 go-module +github.com/containerd/stargz-snapshotter/estargz v0.14.3 go-module +github.com/containerd/ttrpc v1.1.2 go-module +github.com/containerd/ttrpc v1.2.2 go-module +github.com/containerd/typeurl v1.0.2 go-module +github.com/containerd/typeurl/v2 v2.1.1 go-module +github.com/containerd/zfs v1.1.0 go-module +github.com/containernetworking/cni v1.1.1 go-module +github.com/containernetworking/cni v1.1.2 go-module +github.com/containernetworking/plugins v1.1.1 go-module +github.com/containers/ocicrypt v1.1.3 go-module +github.com/coreos/go-systemd/v22 v22.3.2 go-module +github.com/coreos/go-systemd/v22 v22.5.0 go-module +github.com/cpuguy83/go-md2man/v2 v2.0.0 go-module +github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module +github.com/cpuguy83/go-md2man/v2 v2.0.2 go-module +github.com/cyphar/filepath-securejoin v0.2.4 go-module +github.com/davecgh/go-spew v1.1.1 go-module +github.com/deckarep/golang-set/v2 v2.3.0 go-module +github.com/dimchansky/utfbom v1.1.1 go-module +github.com/distribution/reference v0.5.0 go-module +github.com/docker/buildx v0.12.0-rc2.0.20231219140829-617f538cb315 go-module +github.com/docker/cli v25.0.0-rc.3+incompatible go-module +github.com/docker/cli/cmd/docker v25.0.0 go-module +github.com/docker/compose/v2 (devel) go-module +github.com/docker/distribution v2.8.3+incompatible go-module +github.com/docker/docker v25.0.0 go-module +github.com/docker/docker v25.0.0-rc.3+incompatible go-module +github.com/docker/docker-credential-helpers v0.8.0 go-module +github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module +github.com/docker/go-connections v0.5.0 go-module +github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module +github.com/docker/go-metrics v0.0.1 go-module +github.com/docker/go-units v0.4.0 go-module +github.com/docker/go-units v0.5.0 go-module +github.com/docker/libtrust v0.0.0-20150526203908-9cbd2a1374f4 go-module +github.com/dustin/go-humanize v1.0.0 go-module +github.com/elliotchance/orderedmap v1.4.0 go-module +github.com/emicklei/go-restful v2.16.0+incompatible go-module +github.com/emicklei/go-restful/v3 v3.10.1 go-module +github.com/fatih/color v1.13.0 go-module +github.com/felixge/httpsnoop v1.0.4 go-module +github.com/fernet/fernet-go v0.0.0-20211208181803-9f70042a33ee go-module +github.com/fluent/fluent-logger-golang v1.9.0 go-module +github.com/fsnotify/fsnotify v1.4.9 go-module +github.com/fsnotify/fsnotify v1.5.4 go-module +github.com/fsnotify/fsnotify v1.6.0 go-module +github.com/fvbommel/sortorder v1.0.2 go-module +github.com/go-logr/logr v1.2.2 go-module +github.com/go-logr/logr v1.2.4 go-module +github.com/go-logr/stdr v1.2.2 go-module +github.com/go-openapi/jsonpointer v0.19.5 go-module +github.com/go-openapi/jsonreference v0.20.0 go-module +github.com/go-openapi/swag v0.19.14 go-module +github.com/goccy/go-yaml v1.9.5 go-module +github.com/godbus/dbus/v5 v5.0.6 go-module +github.com/godbus/dbus/v5 v5.1.0 go-module +github.com/gofrs/flock v0.8.1 go-module +github.com/gogo/googleapis v1.3.2 go-module +github.com/gogo/googleapis v1.4.1 go-module +github.com/gogo/protobuf v1.3.2 go-module +github.com/golang-jwt/jwt/v4 v4.4.2 go-module +github.com/golang/gddo v0.0.0-20190904175337-72a348e765d2 go-module +github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da go-module +github.com/golang/protobuf v1.5.3 go-module +github.com/google/btree v1.1.2 go-module +github.com/google/certificate-transparency-go v1.1.4 go-module +github.com/google/gnostic v0.5.7-v3refs go-module +github.com/google/go-cmp v0.5.9 go-module +github.com/google/go-cmp v0.6.0 go-module +github.com/google/gofuzz v1.2.0 go-module +github.com/google/s2a-go v0.1.4 go-module +github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module +github.com/google/uuid v1.3.0 go-module +github.com/google/uuid v1.3.1 go-module +github.com/google/uuid v1.5.0 go-module +github.com/googleapis/enterprise-certificate-proxy v0.2.3 go-module +github.com/googleapis/gax-go/v2 v2.11.0 go-module +github.com/gorilla/mux v1.8.1 go-module +github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module +github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module +github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module +github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 go-module +github.com/hashicorp/errwrap v1.1.0 go-module +github.com/hashicorp/go-cleanhttp v0.5.2 go-module +github.com/hashicorp/go-immutable-radix v1.3.1 go-module +github.com/hashicorp/go-memdb v1.3.2 go-module +github.com/hashicorp/go-msgpack v0.5.5 go-module +github.com/hashicorp/go-multierror v1.1.1 go-module +github.com/hashicorp/go-sockaddr v1.0.2 go-module +github.com/hashicorp/go-version v1.6.0 go-module +github.com/hashicorp/golang-lru v0.5.4 go-module +github.com/hashicorp/memberlist v0.4.0 go-module +github.com/hashicorp/serf v0.8.5 go-module +github.com/imdario/mergo v0.3.16 go-module +github.com/in-toto/in-toto-golang v0.5.0 go-module +github.com/intel/goresctrl v0.2.0 go-module +github.com/ishidawataru/sctp v0.0.0-20230406120618-7ff4192f6ff2 go-module +github.com/jinzhu/copier v0.3.5 go-module +github.com/jmoiron/sqlx v1.3.3 go-module +github.com/jonboulle/clockwork v0.4.0 go-module +github.com/josharian/intern v1.0.0 go-module +github.com/json-iterator/go v1.1.12 go-module +github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module +github.com/klauspost/compress v1.15.9 go-module +github.com/klauspost/compress v1.17.4 go-module +github.com/magiconair/properties v1.8.6 go-module +github.com/mailru/easyjson v0.7.6 go-module +github.com/mattn/go-colorable v0.1.12 go-module +github.com/mattn/go-colorable v0.1.13 go-module +github.com/mattn/go-isatty v0.0.14 go-module +github.com/mattn/go-isatty v0.0.17 go-module +github.com/mattn/go-runewidth v0.0.15 go-module +github.com/mattn/go-shellwords v1.0.12 go-module +github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module +github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module +github.com/miekg/dns v1.1.43 go-module +github.com/miekg/pkcs11 v1.1.1 go-module +github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module +github.com/mistifyio/go-zfs/v3 v3.0.1 go-module +github.com/mitchellh/copystructure v1.2.0 go-module +github.com/mitchellh/hashstructure/v2 v2.0.2 go-module +github.com/mitchellh/mapstructure v1.5.0 go-module +github.com/mitchellh/reflectwalk v1.0.2 go-module +github.com/moby/buildkit v0.12.5-0.20231208203051-3b6880d2a00f go-module +github.com/moby/buildkit v0.13.0-beta1.0.20231219135447-957cb50df991 go-module +github.com/moby/ipvs v1.1.0 go-module +github.com/moby/locker v1.0.1 go-module +github.com/moby/patternmatcher v0.6.0 go-module +github.com/moby/pubsub v1.0.0 go-module +github.com/moby/spdystream v0.2.0 go-module +github.com/moby/swarmkit/v2 v2.0.0-20230911190601-f082dd7a0cee go-module +github.com/moby/sys/mount v0.3.3 go-module +github.com/moby/sys/mountinfo v0.5.0 go-module +github.com/moby/sys/mountinfo v0.6.2 go-module +github.com/moby/sys/mountinfo v0.7.1 go-module +github.com/moby/sys/sequential v0.5.0 go-module +github.com/moby/sys/signal v0.6.0 go-module +github.com/moby/sys/signal v0.7.0 go-module +github.com/moby/sys/symlink v0.2.0 go-module +github.com/moby/sys/user v0.1.0 go-module +github.com/moby/term v0.5.0 go-module +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module +github.com/modern-go/reflect2 v1.0.2 go-module +github.com/morikuni/aec v1.0.0 go-module +github.com/mrunalp/fileutils v0.5.1 go-module +github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 go-module +github.com/opencontainers/go-digest v1.0.0 go-module +github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module +github.com/opencontainers/image-spec v1.1.0-rc5 go-module +github.com/opencontainers/runc v0.0.0-20240102023416-4bccb38cc9cf go-module +github.com/opencontainers/runc v1.1.11 go-module +github.com/opencontainers/runc v1.1.6 go-module +github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module +github.com/opencontainers/runtime-spec v1.1.0 go-module +github.com/opencontainers/runtime-spec v1.1.0-rc.2 go-module +github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module +github.com/opencontainers/selinux v1.10.0 go-module +github.com/opencontainers/selinux v1.10.1 go-module +github.com/opencontainers/selinux v1.11.0 go-module +github.com/package-url/packageurl-go v0.1.1-0.20220428063043-89078438f170 go-module +github.com/pelletier/go-toml v1.9.4 go-module +github.com/pelletier/go-toml v1.9.5 go-module +github.com/philhofer/fwd v1.1.2 go-module +github.com/pkg/errors v0.9.1 go-module +github.com/pmezard/go-difflib v1.0.0 go-module +github.com/prometheus/client_golang v1.11.1 go-module +github.com/prometheus/client_golang v1.14.0 go-module +github.com/prometheus/client_golang v1.16.0 go-module +github.com/prometheus/client_model v0.2.0 go-module +github.com/prometheus/client_model v0.3.0 go-module +github.com/prometheus/client_model v0.4.0 go-module +github.com/prometheus/common v0.30.0 go-module +github.com/prometheus/common v0.42.0 go-module +github.com/prometheus/procfs v0.10.1 go-module +github.com/prometheus/procfs v0.7.3 go-module +github.com/prometheus/procfs v0.9.0 go-module +github.com/rivo/uniseg v0.2.0 go-module +github.com/rootless-containers/rootlesskit/v2 v2.0.0 go-module +github.com/russross/blackfriday/v2 v2.0.1 go-module +github.com/russross/blackfriday/v2 v2.1.0 go-module +github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 go-module +github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 go-module +github.com/secure-systems-lab/go-securesystemslib v0.4.0 go-module +github.com/serialx/hashring v0.0.0-20190422032157-8b2912629002 go-module +github.com/shibumi/go-pathspec v1.3.0 go-module +github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module +github.com/sirupsen/logrus v1.8.1 go-module +github.com/sirupsen/logrus v1.9.0 go-module +github.com/sirupsen/logrus v1.9.3 go-module +github.com/spdx/tools-golang v0.5.1 go-module +github.com/spf13/cobra v1.4.0 go-module +github.com/spf13/cobra v1.8.0 go-module +github.com/spf13/pflag v1.0.5 go-module +github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 go-module +github.com/stretchr/testify v1.8.4 go-module +github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module +github.com/tchap/go-patricia v2.2.6+incompatible go-module +github.com/theupdateframework/notary v0.7.0 go-module +github.com/tilt-dev/fsnotify v1.4.8-0.20220602155310-fff9c274a375 go-module +github.com/timtadh/data-structures v0.5.3 go-module +github.com/timtadh/lexmachine v0.2.2 go-module +github.com/tinylib/msgp v1.1.8 go-module +github.com/tonistiigi/fsutil v0.0.0-20230629203738-36ef4d8c0dbb go-module +github.com/tonistiigi/fsutil v0.0.0-20230825212630-f09800878302 go-module +github.com/tonistiigi/go-actions-cache v0.0.0-20220404170428-0bdeb6e1eac7 go-module +github.com/tonistiigi/go-archvariant v1.0.0 go-module +github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module +github.com/tonistiigi/vt100 v0.0.0-20230623042737-f9a4f7ef6531 go-module +github.com/urfave/cli v1.22.1 go-module +github.com/urfave/cli/v2 v2.3.0 go-module +github.com/vbatts/tar-split v0.11.5 go-module +github.com/vishvananda/netlink v1.1.0 go-module +github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5 go-module +github.com/vishvananda/netlink v1.2.1-beta.2 go-module +github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df go-module +github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f go-module +github.com/vishvananda/netns v0.0.4 go-module +github.com/weppos/publicsuffix-go v0.15.1-0.20210511084619-b1f36a2d6c0b go-module +github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb go-module +github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module +github.com/xeipuuv/gojsonschema v1.2.0 go-module +github.com/zmap/zcrypto v0.0.0-20210511125630-18f1e0152cfc go-module +github.com/zmap/zlint/v3 v3.1.0 go-module +gitlab.com/nvidia/cloud-native/go-nvlib v0.0.0-20230818092907-09424fdc8884 go-module +glob 7.2.3 npm +glob 8.0.3 npm +gnupg 2.2.27-3ubuntu2.1 deb +gnupg-l10n 2.2.27-3ubuntu2.1 deb +gnupg-utils 2.2.27-3ubuntu2.1 deb +go.etcd.io/bbolt v1.3.7 go-module +go.etcd.io/etcd/client/pkg/v3 v3.5.6 go-module +go.etcd.io/etcd/pkg/v3 v3.5.6 go-module +go.etcd.io/etcd/raft/v3 v3.5.6 go-module +go.etcd.io/etcd/server/v3 v3.5.6 go-module +go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module +go.opencensus.io v0.24.0 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.28.0 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.45.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.45.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 go-module +go.opentelemetry.io/otel v1.19.0 go-module +go.opentelemetry.io/otel v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.42.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.42.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v0.42.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.19.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.19.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.3.0 go-module +go.opentelemetry.io/otel/exporters/prometheus v0.42.0 go-module +go.opentelemetry.io/otel/metric v1.19.0 go-module +go.opentelemetry.io/otel/sdk v1.19.0 go-module +go.opentelemetry.io/otel/sdk v1.3.0 go-module +go.opentelemetry.io/otel/sdk/metric v1.19.0 go-module +go.opentelemetry.io/otel/trace v1.19.0 go-module +go.opentelemetry.io/otel/trace v1.3.0 go-module +go.opentelemetry.io/proto/otlp v0.11.0 go-module +go.opentelemetry.io/proto/otlp v1.0.0 go-module +go.uber.org/atomic v1.9.0 go-module +go.uber.org/mock v0.4.0 go-module +go.uber.org/multierr v1.8.0 go-module +go.uber.org/zap v1.21.0 go-module +golang.org/x/crypto v0.14.0 go-module +golang.org/x/crypto v0.17.0 go-module +golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 go-module +golang.org/x/exp v0.0.0-20230713183714-613f0c0eb8a1 go-module +golang.org/x/mod v0.11.0 go-module +golang.org/x/mod v0.5.0 go-module +golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module +golang.org/x/net v0.17.0 go-module +golang.org/x/net v0.8.0 go-module +golang.org/x/oauth2 v0.10.0 go-module +golang.org/x/oauth2 v0.11.0 go-module +golang.org/x/sync v0.3.0 go-module +golang.org/x/sync v0.6.0 go-module +golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module +golang.org/x/sys v0.13.0 go-module +golang.org/x/sys v0.16.0 go-module +golang.org/x/sys v0.6.0 go-module +golang.org/x/sys v0.7.0 go-module +golang.org/x/term v0.13.0 go-module +golang.org/x/term v0.15.0 go-module +golang.org/x/text v0.13.0 go-module +golang.org/x/text v0.14.0 go-module +golang.org/x/text v0.3.7 go-module +golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module +golang.org/x/time v0.3.0 go-module +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module +google.golang.org/api v0.126.0 go-module +google.golang.org/appengine v1.6.7 go-module +google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63 go-module +google.golang.org/genproto v0.0.0-20230711160842-782d3b101e98 go-module +google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d go-module +google.golang.org/genproto/googleapis/api v0.0.0-20230711160842-782d3b101e98 go-module +google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d go-module +google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 go-module +google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d go-module +google.golang.org/grpc v1.58.3 go-module +google.golang.org/grpc v1.59.0 go-module +google.golang.org/protobuf v1.27.1 go-module +google.golang.org/protobuf v1.31.0 go-module +gopd 1.0.1 npm +gopkg.in/inf.v0 v0.9.1 go-module +gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module +gopkg.in/square/go-jose.v2 v2.5.1 go-module +gopkg.in/yaml.v2 v2.4.0 go-module +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b go-module +gopkg.in/yaml.v3 v3.0.1 go-module +gpg 2.2.27-3ubuntu2.1 deb +gpg-agent 2.2.27-3ubuntu2.1 deb +gpg-wks-client 2.2.27-3ubuntu2.1 deb +gpg-wks-server 2.2.27-3ubuntu2.1 deb +gpgconf 2.2.27-3ubuntu2.1 deb +gpgsm 2.2.27-3ubuntu2.1 deb +gpgv 2.2.27-3ubuntu2.1 deb +graceful-fs 4.2.10 npm +grep 3.7-1build1 deb +gzip 1.10-4ubuntu4.1 deb +has 1.0.3 npm +has-flag 4.0.0 npm +has-property-descriptors 1.0.1 npm +has-proto 1.0.1 npm +has-symbols 1.0.3 npm +has-unicode 2.0.1 npm +hasown 2.0.0 npm +hosted-git-info 5.2.1 npm +hostname 3.23ubuntu2 deb +http-cache-semantics 4.1.1 npm +http-errors 2.0.0 npm +http-proxy-agent 5.0.0 npm +https-proxy-agent 5.0.1 npm +humanize-ms 1.2.1 npm +iconv-lite 0.4.24 npm +iconv-lite 0.6.3 npm +ieee754 1.2.1 npm +ignore-walk 5.0.1 npm +imurmurhash 0.1.4 npm +indent-string 4.0.0 npm +infer-owner 1.0.4 npm +inflight 1.0.6 npm +inherits 2.0.4 npm +ini 3.0.1 npm +init-package-json 3.0.2 npm +init-system-helpers 1.62 deb +ip 2.0.0 npm +ip-regex 4.3.0 npm +ipaddr.js 1.9.1 npm +iptables 1.8.7-1ubuntu5.1 deb +is-cidr 4.0.2 npm +is-core-module 2.10.0 npm +is-fullwidth-code-point 3.0.0 npm +is-lambda 1.0.1 npm +isexe 2.0.0 npm +jq 1.6-2.1ubuntu3 deb +js-yaml 4.1.0 npm +json-parse-even-better-errors 2.3.1 npm +json-stringify-nice 1.1.4 npm +jsonparse 1.3.1 npm +just-diff 5.1.1 npm +just-diff-apply 5.4.1 npm +k8s.io/api v0.22.5 go-module +k8s.io/api v0.26.7 go-module +k8s.io/apimachinery v0.22.5 go-module +k8s.io/apimachinery v0.26.7 go-module +k8s.io/apiserver v0.22.5 go-module +k8s.io/apiserver v0.26.7 go-module +k8s.io/client-go v0.22.5 go-module +k8s.io/client-go v0.26.7 go-module +k8s.io/component-base v0.22.5 go-module +k8s.io/cri-api v0.25.0 go-module +k8s.io/klog/v2 v2.30.0 go-module +k8s.io/klog/v2 v2.90.1 go-module +k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 go-module +k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b go-module +k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 go-module +kasm-wizard 0.0.1 npm +libacl1 2.3.1-1 deb +libapt-pkg6.0 2.4.11 deb +libassuan0 2.5.5-1build1 deb +libattr1 1:2.5.1-1build1 deb +libaudit-common 1:3.0.7-1build1 deb +libaudit1 1:3.0.7-1build1 deb +libblkid1 2.37.2-4ubuntu3 deb +libbrotli1 1.0.9-2build6 deb +libbsd0 0.11.5-1 deb +libbz2-1.0 1.0.8-5build1 deb +libc-bin 2.35-0ubuntu3.1 deb +libc6 2.35-0ubuntu3.6 deb +libcap-ng0 0.7.9-2.2build3 deb +libcap2 1:2.44-1ubuntu0.22.04.1 deb +libcom-err2 1.46.5-2ubuntu1.1 deb +libcrypt1 1:4.4.27-1 deb +libcurl4 7.81.0-1ubuntu1.15 deb +libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb +libdebconfclient0 0.261ubuntu1 deb +libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb +libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb +libdrm2 2.4.113-2~ubuntu0.22.04.1 deb +libedit2 3.1-20210910-1build1 deb +libexpat1 2.4.7-1ubuntu0.2 deb +libext2fs2 1.46.5-2ubuntu1.1 deb +libffi8 3.4.2-4 deb +libfuse3-3 3.10.5-1build1 deb +libgcc-s1 12.3.0-1ubuntu1~22.04 deb +libgcrypt20 1.9.4-3ubuntu3 deb +libgmp10 2:6.2.1+dfsg-3ubuntu1 deb +libgnutls30 3.7.3-4ubuntu1.2 deb +libgpg-error0 1.43-3 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb +libhogweed6 3.7.3-1build2 deb +libicu70 70.1-2 deb +libidn2-0 2.3.2-2build1 deb +libinih1 53-1ubuntu3 deb +libip4tc2 1.8.7-1ubuntu5.1 deb +libip6tc2 1.8.7-1ubuntu5.1 deb +libjq1 1.6-2.1ubuntu3 deb +libjson-c5 0.15-3~ubuntu1.22.04.2 deb +libk5crypto3 1.19.2-2ubuntu0.2 deb +libkeyutils1 1.6.1-2ubuntu3 deb +libkrb5-3 1.19.2-2ubuntu0.2 deb +libkrb5support0 1.19.2-2ubuntu0.2 deb +libksba8 1.6.0-2ubuntu0.2 deb +libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.16+dfsg-0ubuntu0.22.04.1 deb +liblz4-1 1.9.3-2build2 deb +liblzma5 5.2.5-2ubuntu1 deb +liblzo2-2 2.10-2build3 deb +libmd0 1.0.4-1build1 deb +libmnl0 1.0.4-3build2 deb +libmount1 2.37.2-4ubuntu3 deb +libmpdec3 2.5.1-2build2 deb +libncurses6 6.3-2ubuntu0.1 deb +libncursesw6 6.3-2ubuntu0.1 deb +libnetfilter-conntrack3 1.0.9-1 deb +libnettle8 3.7.3-1build2 deb +libnfnetlink0 1.0.1-3build3 deb +libnftnl11 1.2.1-1build1 deb +libnghttp2-14 1.43.0-1ubuntu0.1 deb +libnpmaccess 6.0.4 npm +libnpmdiff 4.0.5 npm +libnpmexec 4.0.14 npm +libnpmfund 3.0.5 npm +libnpmhook 8.0.4 npm +libnpmorg 4.0.4 npm +libnpmpack 4.1.3 npm +libnpmpublish 6.0.5 npm +libnpmsearch 5.0.4 npm +libnpmteam 4.0.4 npm +libnpmversion 3.0.7 npm +libnpth0 1.6-3build2 deb +libnsl2 1.3.0-2build2 deb +libnvidia-container-tools 1.14.3-1 deb +libnvidia-container1 1.14.3-1 deb +libonig5 6.9.7.1-2build1 deb +libp11-kit0 0.24.0-6build1 deb +libpam-modules 1.4.0-11ubuntu2.3 deb +libpam-modules-bin 1.4.0-11ubuntu2.3 deb +libpam-runtime 1.4.0-11ubuntu2.3 deb +libpam0g 1.4.0-11ubuntu2.3 deb +libpcre2-8-0 10.39-3ubuntu0.1 deb +libpcre3 2:8.39-13ubuntu0.22.04.1 deb +libprocps8 2:3.3.17-6ubuntu2 deb +libpsl5 0.21.0-1.2build2 deb +libpython3-stdlib 3.10.6-1~22.04 deb +libpython3.10-minimal 3.10.12-1~22.04.3 deb +libpython3.10-stdlib 3.10.12-1~22.04.3 deb +libreadline8 8.1.2-1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb +libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb +libseccomp2 2.5.3-2ubuntu2 deb +libselinux1 3.3-1build2 deb +libsemanage-common 3.3-1build2 deb +libsemanage2 3.3-1build2 deb +libsepol2 3.3-1build1 deb +libsmartcols1 2.37.2-4ubuntu3 deb +libsqlite3-0 3.37.2-2ubuntu0.3 deb +libss2 1.46.5-2ubuntu1.1 deb +libssh-4 0.9.6-2ubuntu0.22.04.2 deb +libssl3 3.0.2-0ubuntu1.10 deb +libstdc++6 12.3.0-1ubuntu1~22.04 deb +libsystemd0 249.11-0ubuntu3.9 deb +libtasn1-6 4.18.0-4build1 deb +libtinfo6 6.3-2ubuntu0.1 deb +libtirpc-common 1.3.2-2ubuntu0.1 deb +libtirpc3 1.3.2-2ubuntu0.1 deb +libudev1 249.11-0ubuntu3.9 deb +libunistring2 1.0-1 deb +libuuid1 2.37.2-4ubuntu3 deb +libxtables12 1.8.7-1ubuntu5.1 deb +libxxhash0 0.8.1-1 deb +libzstd1 1.4.8+dfsg-3build1 deb +locales 2.35-0ubuntu3.6 deb +lodash 4.17.21 npm +login 1:4.8.1-2ubuntu2.1 deb +logsave 1.46.5-2ubuntu1.1 deb +lru-cache 6.0.0 npm +lru-cache 7.13.2 npm +lsb-base 11.1.0ubuntu4 deb +lsb-release 11.1.0ubuntu4 deb +lsof 4.93.2+dfsg-1.1build2 deb +make-fetch-happen 10.2.1 npm +mawk 1.3.4.20200120-3 deb +media-typer 0.3.0 npm +media-types 7.0.0 deb +merge-descriptors 1.0.1 npm +methods 1.1.2 npm +mime 1.6.0 npm +mime-db 1.52.0 npm +mime-types 2.1.35 npm +minimatch 3.1.2 npm +minimatch 5.1.0 npm +minipass 3.3.4 npm +minipass-collect 1.0.2 npm +minipass-fetch 2.1.1 npm +minipass-flush 1.0.5 npm +minipass-json-stream 1.0.1 npm +minipass-pipeline 1.2.4 npm +minipass-sized 1.0.3 npm +minizlib 2.1.2 npm +mkdirp 1.0.4 npm +mkdirp-classic 0.5.3 npm +mkdirp-infer-owner 2.0.0 npm +mount 2.37.2-4ubuntu3 deb +ms 2.0.0 npm +ms 2.1.2 npm +ms 2.1.3 npm +mute-stream 0.0.8 npm +nan 2.18.0 npm +ncurses-base 6.3-2ubuntu0.1 deb +ncurses-bin 6.3-2ubuntu0.1 deb +negotiator 0.6.3 npm +netbase 6.3 deb +netcat 1.218-4ubuntu1 deb +netcat-openbsd 1.218-4ubuntu1 deb +node-gyp 9.1.0 npm +node-pty 0.10.1 npm +nodejs 16.20.2-deb-1nodesource1 deb +nopt 5.0.0 npm +nopt 6.0.0 npm +normalize-package-data 4.0.1 npm +npm 8.19.4 npm +npm-audit-report 3.0.0 npm +npm-bundled 1.1.2 npm +npm-bundled 2.0.1 npm +npm-init 0.0.0 npm +npm-install-checks 5.0.0 npm +npm-normalize-package-bin 1.0.1 npm +npm-normalize-package-bin 2.0.0 npm +npm-package-arg 9.1.0 npm +npm-packlist 5.1.3 npm +npm-pick-manifest 7.0.2 npm +npm-profile 6.2.1 npm +npm-registry-fetch 13.3.1 npm +npm-user-validate 1.0.1 npm +npmlog 6.0.2 npm +nvidia-container-toolkit 1.14.3-1 deb +nvidia-container-toolkit-base 1.14.3-1 deb +nvidia-docker2 2.14.0-1 deb +object-assign 4.1.1 npm +object-inspect 1.13.1 npm +on-finished 2.4.1 npm +once 1.4.0 npm +opener 1.5.2 npm +openssl 3.0.2-0ubuntu1.12 deb +p-map 4.0.0 npm +pacote 13.6.2 npm +parse-conflict-json 2.0.2 npm +parseurl 1.3.3 npm +passwd 1:4.8.1-2ubuntu2.1 deb +path-is-absolute 1.0.1 npm +path-to-regexp 0.1.7 npm +perl-base 5.34.0-3ubuntu1.2 deb +pigz 2.6-1 deb +pinentry-curses 1.1.1-1build2 deb +postcss-selector-parser 6.0.10 npm +proc-log 2.0.1 npm +procps 2:3.3.17-6ubuntu2 deb +promise-all-reject-late 1.0.1 npm +promise-call-limit 1.0.1 npm +promise-inflight 1.0.1 npm +promise-retry 2.0.1 npm +promzard 0.3.0 npm +proxy-addr 2.0.7 npm +publicsuffix 20211207.1025-1 deb +pump 3.0.0 npm +python3 3.10.6-1~22.04 deb +python3-minimal 3.10.6-1~22.04 deb +python3.10 3.10.12-1~22.04.3 deb +python3.10-minimal 3.10.12-1~22.04.3 deb +qrcode-terminal 0.12.0 npm +qs 6.11.0 npm +range-parser 1.2.1 npm +raw-body 2.5.1 npm +read 1.0.7 npm +read-cmd-shim 3.0.0 npm +read-package-json 5.0.2 npm +read-package-json-fast 2.0.3 npm +readable-stream 3.6.0 npm +readable-stream 3.6.2 npm +readdir-scoped-modules 1.1.0 npm +readline-common 8.1.2-1 deb +resenje.org/singleflight v0.4.1 go-module +retry 0.12.0 npm +rimraf 3.0.2 npm +safe-buffer 5.2.1 npm +safer-buffer 2.1.2 npm +sed 4.8-1ubuntu2 deb +semver 7.3.7 npm +send 0.18.0 npm +sensible-utils 0.0.17 deb +serve-static 1.15.0 npm +set-blocking 2.0.0 npm +set-function-length 1.2.0 npm +setprototypeof 1.2.0 npm +side-channel 1.0.4 npm +signal-exit 3.0.7 npm +sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 go-module +sigs.k8s.io/structured-merge-diff/v4 v4.1.2 go-module +sigs.k8s.io/structured-merge-diff/v4 v4.2.3 go-module +sigs.k8s.io/yaml v1.2.0 go-module +sigs.k8s.io/yaml v1.3.0 go-module +smart-buffer 4.2.0 npm +socket.io 4.7.4 npm +socket.io-adapter 2.5.2 npm +socket.io-parser 4.2.4 npm +socks 2.7.0 npm +socks-proxy-agent 7.0.0 npm +spdx-correct 3.1.1 npm +spdx-exceptions 2.3.0 npm +spdx-expression-parse 3.0.1 npm +spdx-license-ids 3.0.11 npm +split-ca 1.0.1 npm +ssh2 1.15.0 npm +ssri 9.0.1 npm +statuses 2.0.1 npm +stdlib go1.18.1 go-module +stdlib go1.20.13 go-module +stdlib go1.20.5 go-module +stdlib go1.21.6 go-module +string-width 4.2.3 npm +string_decoder 1.3.0 npm +strip-ansi 6.0.1 npm +sudo 1.9.9-1ubuntu2.4 deb +supports-color 7.2.0 npm +systeminformation 5.21.22 npm +sysvinit-utils 3.01-1ubuntu1 deb +tags.cncf.io/container-device-interface v0.6.2 go-module +tags.cncf.io/container-device-interface/specs-go v0.6.0 go-module +tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb +tar 6.1.11 npm +tar-fs 2.0.1 npm +tar-stream 2.2.0 npm +text-table 0.2.0 npm +tiny-relative-date 1.3.0 npm +toidentifier 1.0.1 npm +treeverse 2.0.0 npm +tweetnacl 0.14.5 npm +type-is 1.6.18 npm +tzdata 2023d-0ubuntu0.22.04 deb +ubuntu-keyring 2021.03.26 deb +uidmap 1:4.8.1-2ubuntu2.1 deb +undici-types 5.26.5 npm +unique-filename 2.0.1 npm +unique-slug 3.0.0 npm +unpipe 1.0.0 npm +usrmerge 25ubuntu2 deb +util-deprecate 1.0.2 npm +util-linux 2.37.2-4ubuntu3 deb +utils-merge 1.0.1 npm +validate-npm-package-license 3.0.4 npm +validate-npm-package-name 4.0.0 npm +vary 1.1.2 npm +walk-up-path 1.0.0 npm +wcwidth 1.0.1 npm +which 2.0.2 npm +wide-align 1.1.5 npm +wrappy 1.0.2 npm +write-file-atomic 4.0.2 npm +ws 8.11.0 npm +xfsprogs 5.13.0-1ubuntu2 deb +yallist 4.0.0 npm +zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From dca450b0711de711833122ab028a1c57515772d2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 23 Jan 2024 20:42:13 +0000 Subject: [PATCH 186/337] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 573abfc..33b6cca 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -157,7 +157,7 @@ github.com/Masterminds/semver/v3 v3 github.com/Microsoft/hcsshim v0.11.4 go-module github.com/Microsoft/hcsshim v0.9.10 go-module github.com/NVIDIA/go-nvml v0.12.0-1 go-module -github.com/NVIDIA/nvidia-container-toolkit v1.14.3 go-module +github.com/NVIDIA/nvidia-container-toolkit v1.14.4 go-module github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module github.com/a8m/envsubst v1.3.0 go-module github.com/agext/levenshtein v1.2.3 go-module @@ -663,8 +663,8 @@ libnpmteam 4. libnpmversion 3.0.7 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.14.3-1 deb -libnvidia-container1 1.14.3-1 deb +libnvidia-container-tools 1.14.4-1 deb +libnvidia-container1 1.14.4-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.3 deb @@ -769,8 +769,8 @@ npm-profile 6. npm-registry-fetch 13.3.1 npm npm-user-validate 1.0.1 npm npmlog 6.0.2 npm -nvidia-container-toolkit 1.14.3-1 deb -nvidia-container-toolkit-base 1.14.3-1 deb +nvidia-container-toolkit 1.14.4-1 deb +nvidia-container-toolkit-base 1.14.4-1 deb nvidia-docker2 2.14.0-1 deb object-assign 4.1.1 npm object-inspect 1.13.1 npm @@ -858,7 +858,7 @@ string_decoder 1. strip-ansi 6.0.1 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 7.2.0 npm -systeminformation 5.21.22 npm +systeminformation 5.21.24 npm sysvinit-utils 3.01-1ubuntu1 deb tags.cncf.io/container-device-interface v0.6.2 go-module tags.cncf.io/container-device-interface/specs-go v0.6.0 go-module From 3851d3aebd9f677b3844e6347cab6fe59cc62efb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 24 Jan 2024 20:40:02 +0000 Subject: [PATCH 187/337] Bot Updating Package Versions --- package_versions.txt | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 33b6cca..bb61063 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.11.5 npm +@types/node 20.11.6 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -116,9 +116,9 @@ diff 5. diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb distro-info-data 0.52ubuntu0.6 deb -docker-ce 5:25.0.0-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:25.0.0-1~ubuntu.22.04~jammy deb -docker-compose-plugin 2.24.1-1~ubuntu.22.04~jammy deb +docker-ce 5:25.0.1-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:25.0.1-1~ubuntu.22.04~jammy deb +docker-compose-plugin 2.24.2-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.2 deb @@ -187,7 +187,7 @@ github.com/checkpoint-restore/go-criu/v5 v5 github.com/cilium/ebpf v0.11.0 go-module github.com/cilium/ebpf v0.7.0 go-module github.com/cloudflare/cfssl v1.6.4 go-module -github.com/compose-spec/compose-go/v2 v2.0.0-rc.1 go-module +github.com/compose-spec/compose-go/v2 v2.0.0-rc.2 go-module github.com/container-orchestrated-devices/container-device-interface v0.6.0 go-module github.com/container-storage-interface/spec v1.5.0 go-module github.com/containerd/aufs v1.0.0 go-module @@ -230,12 +230,12 @@ github.com/deckarep/golang-set/v2 v2 github.com/dimchansky/utfbom v1.1.1 go-module github.com/distribution/reference v0.5.0 go-module github.com/docker/buildx v0.12.0-rc2.0.20231219140829-617f538cb315 go-module -github.com/docker/cli v25.0.0-rc.3+incompatible go-module -github.com/docker/cli/cmd/docker v25.0.0 go-module +github.com/docker/cli v25.0.0+incompatible go-module +github.com/docker/cli/cmd/docker v25.0.1 go-module github.com/docker/compose/v2 (devel) go-module github.com/docker/distribution v2.8.3+incompatible go-module -github.com/docker/docker v25.0.0 go-module -github.com/docker/docker v25.0.0-rc.3+incompatible go-module +github.com/docker/docker v25.0.0+incompatible go-module +github.com/docker/docker v25.0.1 go-module github.com/docker/docker-credential-helpers v0.8.0 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.5.0 go-module @@ -282,7 +282,6 @@ github.com/google/gofuzz v1 github.com/google/s2a-go v0.1.4 go-module github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module github.com/google/uuid v1.3.0 go-module -github.com/google/uuid v1.3.1 go-module github.com/google/uuid v1.5.0 go-module github.com/googleapis/enterprise-certificate-proxy v0.2.3 go-module github.com/googleapis/gax-go/v2 v2.11.0 go-module @@ -691,7 +690,7 @@ libsepol2 3. libsmartcols1 2.37.2-4ubuntu3 deb libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2ubuntu0.22.04.2 deb +libssh-4 0.9.6-2ubuntu0.22.04.3 deb libssl3 3.0.2-0ubuntu1.10 deb libstdc++6 12.3.0-1ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.9 deb From c4194a38848e970a97523be9aff6c1e20f99d66a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 25 Jan 2024 21:42:57 +0000 Subject: [PATCH 188/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index bb61063..a82d36d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -776,7 +776,7 @@ object-inspect 1. on-finished 2.4.1 npm once 1.4.0 npm opener 1.5.2 npm -openssl 3.0.2-0ubuntu1.12 deb +openssl 3.0.2-0ubuntu1.13 deb p-map 4.0.0 npm pacote 13.6.2 npm parse-conflict-json 2.0.2 npm From 20ed720e7402e4c1d6bde2287ff5059a66c7a437 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 26 Jan 2024 15:40:49 +0000 Subject: [PATCH 189/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a82d36d..7025ba5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.11.6 npm +@types/node 20.11.7 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 3540cc64b23e4c26f4368de3b8d847eeb73d7b86 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 29 Jan 2024 05:40:17 +0000 Subject: [PATCH 190/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7025ba5..7b43b12 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.11.7 npm +@types/node 20.11.10 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From cb5e17fb77876e7323d8e6ea91a2f2fe1bdbd0d5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 30 Jan 2024 21:43:19 +0000 Subject: [PATCH 191/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7b43b12..bd91573 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.11.10 npm +@types/node 20.11.11 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 0b63895275d2f7dd34a4caa0a5e09873118837eb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 31 Jan 2024 17:39:28 +0000 Subject: [PATCH 192/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index bd91573..baa8e30 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.11.11 npm +@types/node 20.11.13 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -633,8 +633,8 @@ libkeyutils1 1. libkrb5-3 1.19.2-2ubuntu0.2 deb libkrb5support0 1.19.2-2ubuntu0.2 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.16+dfsg-0ubuntu0.22.04.1 deb +libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.2 deb +libldap-common 2.5.16+dfsg-0ubuntu0.22.04.2 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb liblzo2-2 2.10-2build3 deb From 27af739a1b46194051aaea859d394a081251a853 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 31 Jan 2024 20:40:40 +0000 Subject: [PATCH 193/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index baa8e30..290645e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.11.13 npm +@types/node 20.11.14 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From c511a69bf831cb72e4db653e20deeba2c17dc407 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 1 Feb 2024 02:44:18 +0000 Subject: [PATCH 194/337] Bot Updating Package Versions --- package_versions.txt | 1792 +++++++++++++++++++++--------------------- 1 file changed, 895 insertions(+), 897 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 290645e..f1e131b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,897 +1,895 @@ -NAME VERSION TYPE -1to2 1.0.0 npm -@balena/dockerignore 1.0.2 npm -@colors/colors 1.5.0 npm -@gar/promisify 1.1.3 npm -@isaacs/string-locale-compare 1.1.0 npm -@npmcli/arborist 5.6.3 npm -@npmcli/ci-detect 2.0.0 npm -@npmcli/config 4.2.2 npm -@npmcli/disparity-colors 2.0.0 npm -@npmcli/fs 2.1.2 npm -@npmcli/git 3.0.2 npm -@npmcli/installed-package-contents 1.0.7 npm -@npmcli/map-workspaces 2.0.4 npm -@npmcli/metavuln-calculator 3.1.1 npm -@npmcli/move-file 2.0.1 npm -@npmcli/name-from-folder 1.0.1 npm -@npmcli/node-gyp 2.0.0 npm -@npmcli/package-json 2.0.0 npm -@npmcli/promise-spawn 3.0.0 npm -@npmcli/query 1.2.0 npm -@npmcli/run-script 4.2.1 npm -@socket.io/component-emitter 3.1.0 npm -@tootallnate/once 2.0.0 npm -@types/cookie 0.4.1 npm -@types/cors 2.8.17 npm -@types/node 20.11.14 npm -abbrev 1.1.1 npm -accepts 1.3.8 npm -adduser 3.118ubuntu5 deb -agent-base 6.0.2 npm -agentkeepalive 4.2.1 npm -aggregate-error 3.1.0 npm -ansi-regex 5.0.1 npm -ansi-styles 4.3.0 npm -aproba 2.0.0 npm -apt 2.4.11 deb -apt-utils 2.4.11 deb -archy 1.0.0 npm -are-we-there-yet 3.0.1 npm -argparse 2.0.1 npm -array-flatten 1.1.1 npm -asap 2.0.6 npm -asn1 0.2.6 npm -balanced-match 1.0.2 npm -base-files 12ubuntu4.3 deb -base-passwd 3.5.52build1 deb -base64-js 1.5.1 npm -base64id 2.0.0 npm -bash 5.1-6ubuntu1 deb -bash 5.1.16 binary -bcrypt-pbkdf 1.0.2 npm -bin-links 3.0.3 npm -binary-extensions 2.2.0 npm -bl 4.1.0 npm -body-parser 1.20.1 npm -brace-expansion 1.1.11 npm -brace-expansion 2.0.1 npm -bsdutils 1:2.37.2-4ubuntu3 deb -btrfs-progs 5.16.2-1 deb -buffer 5.7.1 npm -buildcheck 0.0.6 npm -builtins 5.0.1 npm -bytes 3.1.2 npm -ca-certificates 20230311ubuntu0.22.04.1 deb -cacache 16.1.3 npm -call-bind 1.0.5 npm -chalk 4.1.2 npm -chownr 1.1.4 npm -chownr 2.0.0 npm -cidr-regex 3.1.1 npm -clean-stack 2.2.0 npm -cli-columns 4.0.0 npm -cli-table3 0.6.2 npm -clone 1.0.4 npm -cloud.google.com/go/compute/metadata v0.2.3 go-module -cloud.google.com/go/logging v1.7.0 go-module -cloud.google.com/go/longrunning v0.5.1 go-module -cmd-shim 5.0.0 npm -code.cloudfoundry.org/clock v1.0.0 go-module -color-convert 2.0.1 npm -color-name 1.1.4 npm -color-support 1.1.3 npm -columnify 1.6.0 npm -common-ancestor-path 1.0.1 npm -concat-map 0.0.1 npm -console-control-strings 1.1.0 npm -containerd.io 1.6.27-1 deb -content-disposition 0.5.4 npm -content-type 1.0.5 npm -cookie 0.4.2 npm -cookie 0.5.0 npm -cookie-signature 1.0.6 npm -corepack 0.17.0 npm -coreutils 8.32-4.1ubuntu1 deb -cors 2.8.5 npm -cpu-features 0.0.9 npm -cron 3.0pl1-137ubuntu3 deb -cssesc 3.0.0 npm -curl 7.81.0-1ubuntu1.15 deb -dario.cat/mergo v1.0.0 go-module -dash 0.5.11+git20210903+057cd650a4ed-3build1 deb -debconf 1.5.79ubuntu1 deb -debianutils 5.5-1ubuntu2 deb -debug 2.6.9 npm -debug 4.3.4 npm -debuglog 1.0.1 npm -defaults 1.0.3 npm -define-data-property 1.1.1 npm -delegates 1.0.0 npm -depd 1.1.2 npm -depd 2.0.0 npm -destroy 1.2.0 npm -dezalgo 1.0.4 npm -diff 5.1.0 npm -diffutils 1:3.8-0ubuntu2 deb -dirmngr 2.2.27-3ubuntu2.1 deb -distro-info-data 0.52ubuntu0.6 deb -docker-ce 5:25.0.1-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:25.0.1-1~ubuntu.22.04~jammy deb -docker-compose-plugin 2.24.2-1~ubuntu.22.04~jammy deb -docker-modem 3.0.8 npm -dockerode 3.3.5 npm -dpkg 1.21.1ubuntu2.2 deb -drm-info 2.2.0-2 deb -e2fsprogs 1.46.5-2ubuntu1.1 deb -ee-first 1.1.1 npm -emoji-regex 8.0.0 npm -encodeurl 1.0.2 npm -encoding 0.1.13 npm -end-of-stream 1.4.4 npm -engine.io 6.5.4 npm -engine.io-parser 5.2.1 npm -env-paths 2.2.1 npm -err-code 2.0.3 npm -escape-html 1.0.3 npm -etag 1.8.1 npm -express 4.18.2 npm -fastest-levenshtein 1.0.12 npm -finalhandler 1.2.0 npm -findutils 4.8.0-1ubuntu3 deb -forwarded 0.2.0 npm -fresh 0.5.2 npm -fs-constants 1.0.0 npm -fs-minipass 2.1.0 npm -fs.realpath 1.0.0 npm -function-bind 1.1.1 npm -function-bind 1.1.2 npm -fuse-overlayfs 1.7.1-1 deb -fuse3 3.10.5-1build1 deb -gauge 4.0.4 npm -gcc-12-base 12.3.0-1ubuntu1~22.04 deb -get-intrinsic 1.2.2 npm -github.com/AlecAivazis/survey/v2 v2.3.7 go-module -github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module -github.com/Masterminds/semver/v3 v3.2.1 go-module -github.com/Microsoft/hcsshim v0.11.4 go-module -github.com/Microsoft/hcsshim v0.9.10 go-module -github.com/NVIDIA/go-nvml v0.12.0-1 go-module -github.com/NVIDIA/nvidia-container-toolkit v1.14.4 go-module -github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module -github.com/a8m/envsubst v1.3.0 go-module -github.com/agext/levenshtein v1.2.3 go-module -github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092 go-module -github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 go-module -github.com/armon/go-metrics v0.4.1 go-module -github.com/aws/aws-sdk-go-v2 v1.17.6 go-module -github.com/aws/aws-sdk-go-v2/config v1.18.16 go-module -github.com/aws/aws-sdk-go-v2/credentials v1.13.16 go-module -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.24 go-module -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.30 go-module -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.24 go-module -github.com/aws/aws-sdk-go-v2/internal/ini v1.3.31 go-module -github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.15.17 go-module -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.24 go-module -github.com/aws/aws-sdk-go-v2/service/sso v1.12.5 go-module -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.5 go-module -github.com/aws/aws-sdk-go-v2/service/sts v1.18.6 go-module -github.com/aws/smithy-go v1.13.5 go-module -github.com/beorn7/perks v1.0.1 go-module -github.com/blang/semver v3.5.1+incompatible go-module -github.com/buger/goterm v1.0.4 go-module -github.com/cenkalti/backoff/v4 v4.1.2 go-module -github.com/cenkalti/backoff/v4 v4.2.1 go-module -github.com/cespare/xxhash/v2 v2.2.0 go-module -github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module -github.com/cilium/ebpf v0.11.0 go-module -github.com/cilium/ebpf v0.7.0 go-module -github.com/cloudflare/cfssl v1.6.4 go-module -github.com/compose-spec/compose-go/v2 v2.0.0-rc.2 go-module -github.com/container-orchestrated-devices/container-device-interface v0.6.0 go-module -github.com/container-storage-interface/spec v1.5.0 go-module -github.com/containerd/aufs v1.0.0 go-module -github.com/containerd/btrfs v1.0.0 go-module -github.com/containerd/cgroups v1.0.4 go-module -github.com/containerd/cgroups/v3 v3.0.3 go-module -github.com/containerd/console v1.0.3 go-module -github.com/containerd/containerd v1.6.27 go-module -github.com/containerd/containerd v1.7.12 go-module -github.com/containerd/continuity v0.3.0 go-module -github.com/containerd/continuity v0.4.2 go-module -github.com/containerd/fifo v1.0.0 go-module -github.com/containerd/fifo v1.1.0 go-module -github.com/containerd/go-cni v1.1.6 go-module -github.com/containerd/go-cni v1.1.9 go-module -github.com/containerd/go-runc v1.0.0 go-module -github.com/containerd/go-runc v1.1.0 go-module -github.com/containerd/imgcrypt v1.1.4 go-module -github.com/containerd/log v0.1.0 go-module -github.com/containerd/nri v0.1.1 go-module -github.com/containerd/nydus-snapshotter v0.8.2 go-module -github.com/containerd/stargz-snapshotter/estargz v0.14.3 go-module -github.com/containerd/ttrpc v1.1.2 go-module -github.com/containerd/ttrpc v1.2.2 go-module -github.com/containerd/typeurl v1.0.2 go-module -github.com/containerd/typeurl/v2 v2.1.1 go-module -github.com/containerd/zfs v1.1.0 go-module -github.com/containernetworking/cni v1.1.1 go-module -github.com/containernetworking/cni v1.1.2 go-module -github.com/containernetworking/plugins v1.1.1 go-module -github.com/containers/ocicrypt v1.1.3 go-module -github.com/coreos/go-systemd/v22 v22.3.2 go-module -github.com/coreos/go-systemd/v22 v22.5.0 go-module -github.com/cpuguy83/go-md2man/v2 v2.0.0 go-module -github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module -github.com/cpuguy83/go-md2man/v2 v2.0.2 go-module -github.com/cyphar/filepath-securejoin v0.2.4 go-module -github.com/davecgh/go-spew v1.1.1 go-module -github.com/deckarep/golang-set/v2 v2.3.0 go-module -github.com/dimchansky/utfbom v1.1.1 go-module -github.com/distribution/reference v0.5.0 go-module -github.com/docker/buildx v0.12.0-rc2.0.20231219140829-617f538cb315 go-module -github.com/docker/cli v25.0.0+incompatible go-module -github.com/docker/cli/cmd/docker v25.0.1 go-module -github.com/docker/compose/v2 (devel) go-module -github.com/docker/distribution v2.8.3+incompatible go-module -github.com/docker/docker v25.0.0+incompatible go-module -github.com/docker/docker v25.0.1 go-module -github.com/docker/docker-credential-helpers v0.8.0 go-module -github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module -github.com/docker/go-connections v0.5.0 go-module -github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module -github.com/docker/go-metrics v0.0.1 go-module -github.com/docker/go-units v0.4.0 go-module -github.com/docker/go-units v0.5.0 go-module -github.com/docker/libtrust v0.0.0-20150526203908-9cbd2a1374f4 go-module -github.com/dustin/go-humanize v1.0.0 go-module -github.com/elliotchance/orderedmap v1.4.0 go-module -github.com/emicklei/go-restful v2.16.0+incompatible go-module -github.com/emicklei/go-restful/v3 v3.10.1 go-module -github.com/fatih/color v1.13.0 go-module -github.com/felixge/httpsnoop v1.0.4 go-module -github.com/fernet/fernet-go v0.0.0-20211208181803-9f70042a33ee go-module -github.com/fluent/fluent-logger-golang v1.9.0 go-module -github.com/fsnotify/fsnotify v1.4.9 go-module -github.com/fsnotify/fsnotify v1.5.4 go-module -github.com/fsnotify/fsnotify v1.6.0 go-module -github.com/fvbommel/sortorder v1.0.2 go-module -github.com/go-logr/logr v1.2.2 go-module -github.com/go-logr/logr v1.2.4 go-module -github.com/go-logr/stdr v1.2.2 go-module -github.com/go-openapi/jsonpointer v0.19.5 go-module -github.com/go-openapi/jsonreference v0.20.0 go-module -github.com/go-openapi/swag v0.19.14 go-module -github.com/goccy/go-yaml v1.9.5 go-module -github.com/godbus/dbus/v5 v5.0.6 go-module -github.com/godbus/dbus/v5 v5.1.0 go-module -github.com/gofrs/flock v0.8.1 go-module -github.com/gogo/googleapis v1.3.2 go-module -github.com/gogo/googleapis v1.4.1 go-module -github.com/gogo/protobuf v1.3.2 go-module -github.com/golang-jwt/jwt/v4 v4.4.2 go-module -github.com/golang/gddo v0.0.0-20190904175337-72a348e765d2 go-module -github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da go-module -github.com/golang/protobuf v1.5.3 go-module -github.com/google/btree v1.1.2 go-module -github.com/google/certificate-transparency-go v1.1.4 go-module -github.com/google/gnostic v0.5.7-v3refs go-module -github.com/google/go-cmp v0.5.9 go-module -github.com/google/go-cmp v0.6.0 go-module -github.com/google/gofuzz v1.2.0 go-module -github.com/google/s2a-go v0.1.4 go-module -github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module -github.com/google/uuid v1.3.0 go-module -github.com/google/uuid v1.5.0 go-module -github.com/googleapis/enterprise-certificate-proxy v0.2.3 go-module -github.com/googleapis/gax-go/v2 v2.11.0 go-module -github.com/gorilla/mux v1.8.1 go-module -github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module -github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module -github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module -github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 go-module -github.com/hashicorp/errwrap v1.1.0 go-module -github.com/hashicorp/go-cleanhttp v0.5.2 go-module -github.com/hashicorp/go-immutable-radix v1.3.1 go-module -github.com/hashicorp/go-memdb v1.3.2 go-module -github.com/hashicorp/go-msgpack v0.5.5 go-module -github.com/hashicorp/go-multierror v1.1.1 go-module -github.com/hashicorp/go-sockaddr v1.0.2 go-module -github.com/hashicorp/go-version v1.6.0 go-module -github.com/hashicorp/golang-lru v0.5.4 go-module -github.com/hashicorp/memberlist v0.4.0 go-module -github.com/hashicorp/serf v0.8.5 go-module -github.com/imdario/mergo v0.3.16 go-module -github.com/in-toto/in-toto-golang v0.5.0 go-module -github.com/intel/goresctrl v0.2.0 go-module -github.com/ishidawataru/sctp v0.0.0-20230406120618-7ff4192f6ff2 go-module -github.com/jinzhu/copier v0.3.5 go-module -github.com/jmoiron/sqlx v1.3.3 go-module -github.com/jonboulle/clockwork v0.4.0 go-module -github.com/josharian/intern v1.0.0 go-module -github.com/json-iterator/go v1.1.12 go-module -github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module -github.com/klauspost/compress v1.15.9 go-module -github.com/klauspost/compress v1.17.4 go-module -github.com/magiconair/properties v1.8.6 go-module -github.com/mailru/easyjson v0.7.6 go-module -github.com/mattn/go-colorable v0.1.12 go-module -github.com/mattn/go-colorable v0.1.13 go-module -github.com/mattn/go-isatty v0.0.14 go-module -github.com/mattn/go-isatty v0.0.17 go-module -github.com/mattn/go-runewidth v0.0.15 go-module -github.com/mattn/go-shellwords v1.0.12 go-module -github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module -github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module -github.com/miekg/dns v1.1.43 go-module -github.com/miekg/pkcs11 v1.1.1 go-module -github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module -github.com/mistifyio/go-zfs/v3 v3.0.1 go-module -github.com/mitchellh/copystructure v1.2.0 go-module -github.com/mitchellh/hashstructure/v2 v2.0.2 go-module -github.com/mitchellh/mapstructure v1.5.0 go-module -github.com/mitchellh/reflectwalk v1.0.2 go-module -github.com/moby/buildkit v0.12.5-0.20231208203051-3b6880d2a00f go-module -github.com/moby/buildkit v0.13.0-beta1.0.20231219135447-957cb50df991 go-module -github.com/moby/ipvs v1.1.0 go-module -github.com/moby/locker v1.0.1 go-module -github.com/moby/patternmatcher v0.6.0 go-module -github.com/moby/pubsub v1.0.0 go-module -github.com/moby/spdystream v0.2.0 go-module -github.com/moby/swarmkit/v2 v2.0.0-20230911190601-f082dd7a0cee go-module -github.com/moby/sys/mount v0.3.3 go-module -github.com/moby/sys/mountinfo v0.5.0 go-module -github.com/moby/sys/mountinfo v0.6.2 go-module -github.com/moby/sys/mountinfo v0.7.1 go-module -github.com/moby/sys/sequential v0.5.0 go-module -github.com/moby/sys/signal v0.6.0 go-module -github.com/moby/sys/signal v0.7.0 go-module -github.com/moby/sys/symlink v0.2.0 go-module -github.com/moby/sys/user v0.1.0 go-module -github.com/moby/term v0.5.0 go-module -github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module -github.com/modern-go/reflect2 v1.0.2 go-module -github.com/morikuni/aec v1.0.0 go-module -github.com/mrunalp/fileutils v0.5.1 go-module -github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 go-module -github.com/opencontainers/go-digest v1.0.0 go-module -github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module -github.com/opencontainers/image-spec v1.1.0-rc5 go-module -github.com/opencontainers/runc v0.0.0-20240102023416-4bccb38cc9cf go-module -github.com/opencontainers/runc v1.1.11 go-module -github.com/opencontainers/runc v1.1.6 go-module -github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module -github.com/opencontainers/runtime-spec v1.1.0 go-module -github.com/opencontainers/runtime-spec v1.1.0-rc.2 go-module -github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module -github.com/opencontainers/selinux v1.10.0 go-module -github.com/opencontainers/selinux v1.10.1 go-module -github.com/opencontainers/selinux v1.11.0 go-module -github.com/package-url/packageurl-go v0.1.1-0.20220428063043-89078438f170 go-module -github.com/pelletier/go-toml v1.9.4 go-module -github.com/pelletier/go-toml v1.9.5 go-module -github.com/philhofer/fwd v1.1.2 go-module -github.com/pkg/errors v0.9.1 go-module -github.com/pmezard/go-difflib v1.0.0 go-module -github.com/prometheus/client_golang v1.11.1 go-module -github.com/prometheus/client_golang v1.14.0 go-module -github.com/prometheus/client_golang v1.16.0 go-module -github.com/prometheus/client_model v0.2.0 go-module -github.com/prometheus/client_model v0.3.0 go-module -github.com/prometheus/client_model v0.4.0 go-module -github.com/prometheus/common v0.30.0 go-module -github.com/prometheus/common v0.42.0 go-module -github.com/prometheus/procfs v0.10.1 go-module -github.com/prometheus/procfs v0.7.3 go-module -github.com/prometheus/procfs v0.9.0 go-module -github.com/rivo/uniseg v0.2.0 go-module -github.com/rootless-containers/rootlesskit/v2 v2.0.0 go-module -github.com/russross/blackfriday/v2 v2.0.1 go-module -github.com/russross/blackfriday/v2 v2.1.0 go-module -github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 go-module -github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 go-module -github.com/secure-systems-lab/go-securesystemslib v0.4.0 go-module -github.com/serialx/hashring v0.0.0-20190422032157-8b2912629002 go-module -github.com/shibumi/go-pathspec v1.3.0 go-module -github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module -github.com/sirupsen/logrus v1.8.1 go-module -github.com/sirupsen/logrus v1.9.0 go-module -github.com/sirupsen/logrus v1.9.3 go-module -github.com/spdx/tools-golang v0.5.1 go-module -github.com/spf13/cobra v1.4.0 go-module -github.com/spf13/cobra v1.8.0 go-module -github.com/spf13/pflag v1.0.5 go-module -github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 go-module -github.com/stretchr/testify v1.8.4 go-module -github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module -github.com/tchap/go-patricia v2.2.6+incompatible go-module -github.com/theupdateframework/notary v0.7.0 go-module -github.com/tilt-dev/fsnotify v1.4.8-0.20220602155310-fff9c274a375 go-module -github.com/timtadh/data-structures v0.5.3 go-module -github.com/timtadh/lexmachine v0.2.2 go-module -github.com/tinylib/msgp v1.1.8 go-module -github.com/tonistiigi/fsutil v0.0.0-20230629203738-36ef4d8c0dbb go-module -github.com/tonistiigi/fsutil v0.0.0-20230825212630-f09800878302 go-module -github.com/tonistiigi/go-actions-cache v0.0.0-20220404170428-0bdeb6e1eac7 go-module -github.com/tonistiigi/go-archvariant v1.0.0 go-module -github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module -github.com/tonistiigi/vt100 v0.0.0-20230623042737-f9a4f7ef6531 go-module -github.com/urfave/cli v1.22.1 go-module -github.com/urfave/cli/v2 v2.3.0 go-module -github.com/vbatts/tar-split v0.11.5 go-module -github.com/vishvananda/netlink v1.1.0 go-module -github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5 go-module -github.com/vishvananda/netlink v1.2.1-beta.2 go-module -github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df go-module -github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f go-module -github.com/vishvananda/netns v0.0.4 go-module -github.com/weppos/publicsuffix-go v0.15.1-0.20210511084619-b1f36a2d6c0b go-module -github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb go-module -github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module -github.com/xeipuuv/gojsonschema v1.2.0 go-module -github.com/zmap/zcrypto v0.0.0-20210511125630-18f1e0152cfc go-module -github.com/zmap/zlint/v3 v3.1.0 go-module -gitlab.com/nvidia/cloud-native/go-nvlib v0.0.0-20230818092907-09424fdc8884 go-module -glob 7.2.3 npm -glob 8.0.3 npm -gnupg 2.2.27-3ubuntu2.1 deb -gnupg-l10n 2.2.27-3ubuntu2.1 deb -gnupg-utils 2.2.27-3ubuntu2.1 deb -go.etcd.io/bbolt v1.3.7 go-module -go.etcd.io/etcd/client/pkg/v3 v3.5.6 go-module -go.etcd.io/etcd/pkg/v3 v3.5.6 go-module -go.etcd.io/etcd/raft/v3 v3.5.6 go-module -go.etcd.io/etcd/server/v3 v3.5.6 go-module -go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module -go.opencensus.io v0.24.0 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.28.0 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.45.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.45.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 go-module -go.opentelemetry.io/otel v1.19.0 go-module -go.opentelemetry.io/otel v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.42.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.42.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v0.42.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.19.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.19.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.3.0 go-module -go.opentelemetry.io/otel/exporters/prometheus v0.42.0 go-module -go.opentelemetry.io/otel/metric v1.19.0 go-module -go.opentelemetry.io/otel/sdk v1.19.0 go-module -go.opentelemetry.io/otel/sdk v1.3.0 go-module -go.opentelemetry.io/otel/sdk/metric v1.19.0 go-module -go.opentelemetry.io/otel/trace v1.19.0 go-module -go.opentelemetry.io/otel/trace v1.3.0 go-module -go.opentelemetry.io/proto/otlp v0.11.0 go-module -go.opentelemetry.io/proto/otlp v1.0.0 go-module -go.uber.org/atomic v1.9.0 go-module -go.uber.org/mock v0.4.0 go-module -go.uber.org/multierr v1.8.0 go-module -go.uber.org/zap v1.21.0 go-module -golang.org/x/crypto v0.14.0 go-module -golang.org/x/crypto v0.17.0 go-module -golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 go-module -golang.org/x/exp v0.0.0-20230713183714-613f0c0eb8a1 go-module -golang.org/x/mod v0.11.0 go-module -golang.org/x/mod v0.5.0 go-module -golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module -golang.org/x/net v0.17.0 go-module -golang.org/x/net v0.8.0 go-module -golang.org/x/oauth2 v0.10.0 go-module -golang.org/x/oauth2 v0.11.0 go-module -golang.org/x/sync v0.3.0 go-module -golang.org/x/sync v0.6.0 go-module -golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module -golang.org/x/sys v0.13.0 go-module -golang.org/x/sys v0.16.0 go-module -golang.org/x/sys v0.6.0 go-module -golang.org/x/sys v0.7.0 go-module -golang.org/x/term v0.13.0 go-module -golang.org/x/term v0.15.0 go-module -golang.org/x/text v0.13.0 go-module -golang.org/x/text v0.14.0 go-module -golang.org/x/text v0.3.7 go-module -golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module -golang.org/x/time v0.3.0 go-module -golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module -google.golang.org/api v0.126.0 go-module -google.golang.org/appengine v1.6.7 go-module -google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63 go-module -google.golang.org/genproto v0.0.0-20230711160842-782d3b101e98 go-module -google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d go-module -google.golang.org/genproto/googleapis/api v0.0.0-20230711160842-782d3b101e98 go-module -google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d go-module -google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 go-module -google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d go-module -google.golang.org/grpc v1.58.3 go-module -google.golang.org/grpc v1.59.0 go-module -google.golang.org/protobuf v1.27.1 go-module -google.golang.org/protobuf v1.31.0 go-module -gopd 1.0.1 npm -gopkg.in/inf.v0 v0.9.1 go-module -gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module -gopkg.in/square/go-jose.v2 v2.5.1 go-module -gopkg.in/yaml.v2 v2.4.0 go-module -gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b go-module -gopkg.in/yaml.v3 v3.0.1 go-module -gpg 2.2.27-3ubuntu2.1 deb -gpg-agent 2.2.27-3ubuntu2.1 deb -gpg-wks-client 2.2.27-3ubuntu2.1 deb -gpg-wks-server 2.2.27-3ubuntu2.1 deb -gpgconf 2.2.27-3ubuntu2.1 deb -gpgsm 2.2.27-3ubuntu2.1 deb -gpgv 2.2.27-3ubuntu2.1 deb -graceful-fs 4.2.10 npm -grep 3.7-1build1 deb -gzip 1.10-4ubuntu4.1 deb -has 1.0.3 npm -has-flag 4.0.0 npm -has-property-descriptors 1.0.1 npm -has-proto 1.0.1 npm -has-symbols 1.0.3 npm -has-unicode 2.0.1 npm -hasown 2.0.0 npm -hosted-git-info 5.2.1 npm -hostname 3.23ubuntu2 deb -http-cache-semantics 4.1.1 npm -http-errors 2.0.0 npm -http-proxy-agent 5.0.0 npm -https-proxy-agent 5.0.1 npm -humanize-ms 1.2.1 npm -iconv-lite 0.4.24 npm -iconv-lite 0.6.3 npm -ieee754 1.2.1 npm -ignore-walk 5.0.1 npm -imurmurhash 0.1.4 npm -indent-string 4.0.0 npm -infer-owner 1.0.4 npm -inflight 1.0.6 npm -inherits 2.0.4 npm -ini 3.0.1 npm -init-package-json 3.0.2 npm -init-system-helpers 1.62 deb -ip 2.0.0 npm -ip-regex 4.3.0 npm -ipaddr.js 1.9.1 npm -iptables 1.8.7-1ubuntu5.1 deb -is-cidr 4.0.2 npm -is-core-module 2.10.0 npm -is-fullwidth-code-point 3.0.0 npm -is-lambda 1.0.1 npm -isexe 2.0.0 npm -jq 1.6-2.1ubuntu3 deb -js-yaml 4.1.0 npm -json-parse-even-better-errors 2.3.1 npm -json-stringify-nice 1.1.4 npm -jsonparse 1.3.1 npm -just-diff 5.1.1 npm -just-diff-apply 5.4.1 npm -k8s.io/api v0.22.5 go-module -k8s.io/api v0.26.7 go-module -k8s.io/apimachinery v0.22.5 go-module -k8s.io/apimachinery v0.26.7 go-module -k8s.io/apiserver v0.22.5 go-module -k8s.io/apiserver v0.26.7 go-module -k8s.io/client-go v0.22.5 go-module -k8s.io/client-go v0.26.7 go-module -k8s.io/component-base v0.22.5 go-module -k8s.io/cri-api v0.25.0 go-module -k8s.io/klog/v2 v2.30.0 go-module -k8s.io/klog/v2 v2.90.1 go-module -k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 go-module -k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b go-module -k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 go-module -kasm-wizard 0.0.1 npm -libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.11 deb -libassuan0 2.5.5-1build1 deb -libattr1 1:2.5.1-1build1 deb -libaudit-common 1:3.0.7-1build1 deb -libaudit1 1:3.0.7-1build1 deb -libblkid1 2.37.2-4ubuntu3 deb -libbrotli1 1.0.9-2build6 deb -libbsd0 0.11.5-1 deb -libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.1 deb -libc6 2.35-0ubuntu3.6 deb -libcap-ng0 0.7.9-2.2build3 deb -libcap2 1:2.44-1ubuntu0.22.04.1 deb -libcom-err2 1.46.5-2ubuntu1.1 deb -libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.15 deb -libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb -libdebconfclient0 0.261ubuntu1 deb -libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb -libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb -libdrm2 2.4.113-2~ubuntu0.22.04.1 deb -libedit2 3.1-20210910-1build1 deb -libexpat1 2.4.7-1ubuntu0.2 deb -libext2fs2 1.46.5-2ubuntu1.1 deb -libffi8 3.4.2-4 deb -libfuse3-3 3.10.5-1build1 deb -libgcc-s1 12.3.0-1ubuntu1~22.04 deb -libgcrypt20 1.9.4-3ubuntu3 deb -libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.2 deb -libgpg-error0 1.43-3 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb -libhogweed6 3.7.3-1build2 deb -libicu70 70.1-2 deb -libidn2-0 2.3.2-2build1 deb -libinih1 53-1ubuntu3 deb -libip4tc2 1.8.7-1ubuntu5.1 deb -libip6tc2 1.8.7-1ubuntu5.1 deb -libjq1 1.6-2.1ubuntu3 deb -libjson-c5 0.15-3~ubuntu1.22.04.2 deb -libk5crypto3 1.19.2-2ubuntu0.2 deb -libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.2 deb -libkrb5support0 1.19.2-2ubuntu0.2 deb -libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.2 deb -libldap-common 2.5.16+dfsg-0ubuntu0.22.04.2 deb -liblz4-1 1.9.3-2build2 deb -liblzma5 5.2.5-2ubuntu1 deb -liblzo2-2 2.10-2build3 deb -libmd0 1.0.4-1build1 deb -libmnl0 1.0.4-3build2 deb -libmount1 2.37.2-4ubuntu3 deb -libmpdec3 2.5.1-2build2 deb -libncurses6 6.3-2ubuntu0.1 deb -libncursesw6 6.3-2ubuntu0.1 deb -libnetfilter-conntrack3 1.0.9-1 deb -libnettle8 3.7.3-1build2 deb -libnfnetlink0 1.0.1-3build3 deb -libnftnl11 1.2.1-1build1 deb -libnghttp2-14 1.43.0-1ubuntu0.1 deb -libnpmaccess 6.0.4 npm -libnpmdiff 4.0.5 npm -libnpmexec 4.0.14 npm -libnpmfund 3.0.5 npm -libnpmhook 8.0.4 npm -libnpmorg 4.0.4 npm -libnpmpack 4.1.3 npm -libnpmpublish 6.0.5 npm -libnpmsearch 5.0.4 npm -libnpmteam 4.0.4 npm -libnpmversion 3.0.7 npm -libnpth0 1.6-3build2 deb -libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.14.4-1 deb -libnvidia-container1 1.14.4-1 deb -libonig5 6.9.7.1-2build1 deb -libp11-kit0 0.24.0-6build1 deb -libpam-modules 1.4.0-11ubuntu2.3 deb -libpam-modules-bin 1.4.0-11ubuntu2.3 deb -libpam-runtime 1.4.0-11ubuntu2.3 deb -libpam0g 1.4.0-11ubuntu2.3 deb -libpcre2-8-0 10.39-3ubuntu0.1 deb -libpcre3 2:8.39-13ubuntu0.22.04.1 deb -libprocps8 2:3.3.17-6ubuntu2 deb -libpsl5 0.21.0-1.2build2 deb -libpython3-stdlib 3.10.6-1~22.04 deb -libpython3.10-minimal 3.10.12-1~22.04.3 deb -libpython3.10-stdlib 3.10.12-1~22.04.3 deb -libreadline8 8.1.2-1 deb -librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb -libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libseccomp2 2.5.3-2ubuntu2 deb -libselinux1 3.3-1build2 deb -libsemanage-common 3.3-1build2 deb -libsemanage2 3.3-1build2 deb -libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3 deb -libsqlite3-0 3.37.2-2ubuntu0.3 deb -libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2ubuntu0.22.04.3 deb -libssl3 3.0.2-0ubuntu1.10 deb -libstdc++6 12.3.0-1ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.9 deb -libtasn1-6 4.18.0-4build1 deb -libtinfo6 6.3-2ubuntu0.1 deb -libtirpc-common 1.3.2-2ubuntu0.1 deb -libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.9 deb -libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3 deb -libxtables12 1.8.7-1ubuntu5.1 deb -libxxhash0 0.8.1-1 deb -libzstd1 1.4.8+dfsg-3build1 deb -locales 2.35-0ubuntu3.6 deb -lodash 4.17.21 npm -login 1:4.8.1-2ubuntu2.1 deb -logsave 1.46.5-2ubuntu1.1 deb -lru-cache 6.0.0 npm -lru-cache 7.13.2 npm -lsb-base 11.1.0ubuntu4 deb -lsb-release 11.1.0ubuntu4 deb -lsof 4.93.2+dfsg-1.1build2 deb -make-fetch-happen 10.2.1 npm -mawk 1.3.4.20200120-3 deb -media-typer 0.3.0 npm -media-types 7.0.0 deb -merge-descriptors 1.0.1 npm -methods 1.1.2 npm -mime 1.6.0 npm -mime-db 1.52.0 npm -mime-types 2.1.35 npm -minimatch 3.1.2 npm -minimatch 5.1.0 npm -minipass 3.3.4 npm -minipass-collect 1.0.2 npm -minipass-fetch 2.1.1 npm -minipass-flush 1.0.5 npm -minipass-json-stream 1.0.1 npm -minipass-pipeline 1.2.4 npm -minipass-sized 1.0.3 npm -minizlib 2.1.2 npm -mkdirp 1.0.4 npm -mkdirp-classic 0.5.3 npm -mkdirp-infer-owner 2.0.0 npm -mount 2.37.2-4ubuntu3 deb -ms 2.0.0 npm -ms 2.1.2 npm -ms 2.1.3 npm -mute-stream 0.0.8 npm -nan 2.18.0 npm -ncurses-base 6.3-2ubuntu0.1 deb -ncurses-bin 6.3-2ubuntu0.1 deb -negotiator 0.6.3 npm -netbase 6.3 deb -netcat 1.218-4ubuntu1 deb -netcat-openbsd 1.218-4ubuntu1 deb -node-gyp 9.1.0 npm -node-pty 0.10.1 npm -nodejs 16.20.2-deb-1nodesource1 deb -nopt 5.0.0 npm -nopt 6.0.0 npm -normalize-package-data 4.0.1 npm -npm 8.19.4 npm -npm-audit-report 3.0.0 npm -npm-bundled 1.1.2 npm -npm-bundled 2.0.1 npm -npm-init 0.0.0 npm -npm-install-checks 5.0.0 npm -npm-normalize-package-bin 1.0.1 npm -npm-normalize-package-bin 2.0.0 npm -npm-package-arg 9.1.0 npm -npm-packlist 5.1.3 npm -npm-pick-manifest 7.0.2 npm -npm-profile 6.2.1 npm -npm-registry-fetch 13.3.1 npm -npm-user-validate 1.0.1 npm -npmlog 6.0.2 npm -nvidia-container-toolkit 1.14.4-1 deb -nvidia-container-toolkit-base 1.14.4-1 deb -nvidia-docker2 2.14.0-1 deb -object-assign 4.1.1 npm -object-inspect 1.13.1 npm -on-finished 2.4.1 npm -once 1.4.0 npm -opener 1.5.2 npm -openssl 3.0.2-0ubuntu1.13 deb -p-map 4.0.0 npm -pacote 13.6.2 npm -parse-conflict-json 2.0.2 npm -parseurl 1.3.3 npm -passwd 1:4.8.1-2ubuntu2.1 deb -path-is-absolute 1.0.1 npm -path-to-regexp 0.1.7 npm -perl-base 5.34.0-3ubuntu1.2 deb -pigz 2.6-1 deb -pinentry-curses 1.1.1-1build2 deb -postcss-selector-parser 6.0.10 npm -proc-log 2.0.1 npm -procps 2:3.3.17-6ubuntu2 deb -promise-all-reject-late 1.0.1 npm -promise-call-limit 1.0.1 npm -promise-inflight 1.0.1 npm -promise-retry 2.0.1 npm -promzard 0.3.0 npm -proxy-addr 2.0.7 npm -publicsuffix 20211207.1025-1 deb -pump 3.0.0 npm -python3 3.10.6-1~22.04 deb -python3-minimal 3.10.6-1~22.04 deb -python3.10 3.10.12-1~22.04.3 deb -python3.10-minimal 3.10.12-1~22.04.3 deb -qrcode-terminal 0.12.0 npm -qs 6.11.0 npm -range-parser 1.2.1 npm -raw-body 2.5.1 npm -read 1.0.7 npm -read-cmd-shim 3.0.0 npm -read-package-json 5.0.2 npm -read-package-json-fast 2.0.3 npm -readable-stream 3.6.0 npm -readable-stream 3.6.2 npm -readdir-scoped-modules 1.1.0 npm -readline-common 8.1.2-1 deb -resenje.org/singleflight v0.4.1 go-module -retry 0.12.0 npm -rimraf 3.0.2 npm -safe-buffer 5.2.1 npm -safer-buffer 2.1.2 npm -sed 4.8-1ubuntu2 deb -semver 7.3.7 npm -send 0.18.0 npm -sensible-utils 0.0.17 deb -serve-static 1.15.0 npm -set-blocking 2.0.0 npm -set-function-length 1.2.0 npm -setprototypeof 1.2.0 npm -side-channel 1.0.4 npm -signal-exit 3.0.7 npm -sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 go-module -sigs.k8s.io/structured-merge-diff/v4 v4.1.2 go-module -sigs.k8s.io/structured-merge-diff/v4 v4.2.3 go-module -sigs.k8s.io/yaml v1.2.0 go-module -sigs.k8s.io/yaml v1.3.0 go-module -smart-buffer 4.2.0 npm -socket.io 4.7.4 npm -socket.io-adapter 2.5.2 npm -socket.io-parser 4.2.4 npm -socks 2.7.0 npm -socks-proxy-agent 7.0.0 npm -spdx-correct 3.1.1 npm -spdx-exceptions 2.3.0 npm -spdx-expression-parse 3.0.1 npm -spdx-license-ids 3.0.11 npm -split-ca 1.0.1 npm -ssh2 1.15.0 npm -ssri 9.0.1 npm -statuses 2.0.1 npm -stdlib go1.18.1 go-module -stdlib go1.20.13 go-module -stdlib go1.20.5 go-module -stdlib go1.21.6 go-module -string-width 4.2.3 npm -string_decoder 1.3.0 npm -strip-ansi 6.0.1 npm -sudo 1.9.9-1ubuntu2.4 deb -supports-color 7.2.0 npm -systeminformation 5.21.24 npm -sysvinit-utils 3.01-1ubuntu1 deb -tags.cncf.io/container-device-interface v0.6.2 go-module -tags.cncf.io/container-device-interface/specs-go v0.6.0 go-module -tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tar 6.1.11 npm -tar-fs 2.0.1 npm -tar-stream 2.2.0 npm -text-table 0.2.0 npm -tiny-relative-date 1.3.0 npm -toidentifier 1.0.1 npm -treeverse 2.0.0 npm -tweetnacl 0.14.5 npm -type-is 1.6.18 npm -tzdata 2023d-0ubuntu0.22.04 deb -ubuntu-keyring 2021.03.26 deb -uidmap 1:4.8.1-2ubuntu2.1 deb -undici-types 5.26.5 npm -unique-filename 2.0.1 npm -unique-slug 3.0.0 npm -unpipe 1.0.0 npm -usrmerge 25ubuntu2 deb -util-deprecate 1.0.2 npm -util-linux 2.37.2-4ubuntu3 deb -utils-merge 1.0.1 npm -validate-npm-package-license 3.0.4 npm -validate-npm-package-name 4.0.0 npm -vary 1.1.2 npm -walk-up-path 1.0.0 npm -wcwidth 1.0.1 npm -which 2.0.2 npm -wide-align 1.1.5 npm -wrappy 1.0.2 npm -write-file-atomic 4.0.2 npm -ws 8.11.0 npm -xfsprogs 5.13.0-1ubuntu2 deb -yallist 4.0.0 npm -zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb +NAME VERSION TYPE +1to2 1.0.0 npm +@balena/dockerignore 1.0.2 npm +@colors/colors 1.5.0 npm +@gar/promisify 1.1.3 npm +@isaacs/string-locale-compare 1.1.0 npm +@npmcli/arborist 5.6.3 npm +@npmcli/ci-detect 2.0.0 npm +@npmcli/config 4.2.2 npm +@npmcli/disparity-colors 2.0.0 npm +@npmcli/fs 2.1.2 npm +@npmcli/git 3.0.2 npm +@npmcli/installed-package-contents 1.0.7 npm +@npmcli/map-workspaces 2.0.4 npm +@npmcli/metavuln-calculator 3.1.1 npm +@npmcli/move-file 2.0.1 npm +@npmcli/name-from-folder 1.0.1 npm +@npmcli/node-gyp 2.0.0 npm +@npmcli/package-json 2.0.0 npm +@npmcli/promise-spawn 3.0.0 npm +@npmcli/query 1.2.0 npm +@npmcli/run-script 4.2.1 npm +@socket.io/component-emitter 3.1.0 npm +@tootallnate/once 2.0.0 npm +@types/cookie 0.4.1 npm +@types/cors 2.8.17 npm +@types/node 20.11.14 npm +abbrev 1.1.1 npm +accepts 1.3.8 npm +adduser 3.118ubuntu5 deb +agent-base 6.0.2 npm +agentkeepalive 4.2.1 npm +aggregate-error 3.1.0 npm +ansi-regex 5.0.1 npm +ansi-styles 4.3.0 npm +aproba 2.0.0 npm +apt 2.4.11 deb +apt-utils 2.4.11 deb +archy 1.0.0 npm +are-we-there-yet 3.0.1 npm +argparse 2.0.1 npm +array-flatten 1.1.1 npm +asap 2.0.6 npm +asn1 0.2.6 npm +balanced-match 1.0.2 npm +base-files 12ubuntu4.3 deb +base-passwd 3.5.52build1 deb +base64-js 1.5.1 npm +base64id 2.0.0 npm +bash 5.1-6ubuntu1 deb +bash 5.1.16 binary +bcrypt-pbkdf 1.0.2 npm +bin-links 3.0.3 npm +binary-extensions 2.2.0 npm +bl 4.1.0 npm +body-parser 1.20.1 npm +brace-expansion 1.1.11 npm +brace-expansion 2.0.1 npm +bsdutils 1:2.37.2-4ubuntu3 deb +btrfs-progs 5.16.2-1 deb +buffer 5.7.1 npm +buildcheck 0.0.6 npm +builtins 5.0.1 npm +bytes 3.1.2 npm +ca-certificates 20230311ubuntu0.22.04.1 deb +cacache 16.1.3 npm +call-bind 1.0.5 npm +chalk 4.1.2 npm +chownr 1.1.4 npm +chownr 2.0.0 npm +cidr-regex 3.1.1 npm +clean-stack 2.2.0 npm +cli-columns 4.0.0 npm +cli-table3 0.6.2 npm +clone 1.0.4 npm +cloud.google.com/go/compute/metadata v0.2.3 go-module +cloud.google.com/go/logging v1.7.0 go-module +cloud.google.com/go/longrunning v0.5.1 go-module +cmd-shim 5.0.0 npm +code.cloudfoundry.org/clock v1.0.0 go-module +color-convert 2.0.1 npm +color-name 1.1.4 npm +color-support 1.1.3 npm +columnify 1.6.0 npm +common-ancestor-path 1.0.1 npm +concat-map 0.0.1 npm +console-control-strings 1.1.0 npm +containerd.io 1.6.28-1 deb +content-disposition 0.5.4 npm +content-type 1.0.5 npm +cookie 0.4.2 npm +cookie 0.5.0 npm +cookie-signature 1.0.6 npm +corepack 0.17.0 npm +coreutils 8.32-4.1ubuntu1 deb +cors 2.8.5 npm +cpu-features 0.0.9 npm +cron 3.0pl1-137ubuntu3 deb +cssesc 3.0.0 npm +curl 7.81.0-1ubuntu1.15 deb +dario.cat/mergo v1.0.0 go-module +dash 0.5.11+git20210903+057cd650a4ed-3build1 deb +debconf 1.5.79ubuntu1 deb +debianutils 5.5-1ubuntu2 deb +debug 2.6.9 npm +debug 4.3.4 npm +debuglog 1.0.1 npm +defaults 1.0.3 npm +define-data-property 1.1.1 npm +delegates 1.0.0 npm +depd 1.1.2 npm +depd 2.0.0 npm +destroy 1.2.0 npm +dezalgo 1.0.4 npm +diff 5.1.0 npm +diffutils 1:3.8-0ubuntu2 deb +dirmngr 2.2.27-3ubuntu2.1 deb +distro-info-data 0.52ubuntu0.6 deb +docker-ce 5:25.0.2-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:25.0.2-1~ubuntu.22.04~jammy deb +docker-compose-plugin 2.24.5-1~ubuntu.22.04~jammy deb +docker-modem 3.0.8 npm +dockerode 3.3.5 npm +dpkg 1.21.1ubuntu2.2 deb +drm-info 2.2.0-2 deb +e2fsprogs 1.46.5-2ubuntu1.1 deb +ee-first 1.1.1 npm +emoji-regex 8.0.0 npm +encodeurl 1.0.2 npm +encoding 0.1.13 npm +end-of-stream 1.4.4 npm +engine.io 6.5.4 npm +engine.io-parser 5.2.1 npm +env-paths 2.2.1 npm +err-code 2.0.3 npm +escape-html 1.0.3 npm +etag 1.8.1 npm +express 4.18.2 npm +fastest-levenshtein 1.0.12 npm +finalhandler 1.2.0 npm +findutils 4.8.0-1ubuntu3 deb +forwarded 0.2.0 npm +fresh 0.5.2 npm +fs-constants 1.0.0 npm +fs-minipass 2.1.0 npm +fs.realpath 1.0.0 npm +function-bind 1.1.1 npm +function-bind 1.1.2 npm +fuse-overlayfs 1.7.1-1 deb +fuse3 3.10.5-1build1 deb +gauge 4.0.4 npm +gcc-12-base 12.3.0-1ubuntu1~22.04 deb +get-intrinsic 1.2.2 npm +github.com/AlecAivazis/survey/v2 v2.3.7 go-module +github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module +github.com/Masterminds/semver/v3 v3.2.1 go-module +github.com/Microsoft/hcsshim v0.11.4 go-module +github.com/Microsoft/hcsshim v0.9.10 go-module +github.com/NVIDIA/go-nvml v0.12.0-1 go-module +github.com/NVIDIA/nvidia-container-toolkit v1.14.4 go-module +github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module +github.com/a8m/envsubst v1.3.0 go-module +github.com/agext/levenshtein v1.2.3 go-module +github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092 go-module +github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 go-module +github.com/armon/go-metrics v0.4.1 go-module +github.com/aws/aws-sdk-go-v2 v1.17.6 go-module +github.com/aws/aws-sdk-go-v2/config v1.18.16 go-module +github.com/aws/aws-sdk-go-v2/credentials v1.13.16 go-module +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.24 go-module +github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.30 go-module +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.24 go-module +github.com/aws/aws-sdk-go-v2/internal/ini v1.3.31 go-module +github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.15.17 go-module +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.24 go-module +github.com/aws/aws-sdk-go-v2/service/sso v1.12.5 go-module +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.5 go-module +github.com/aws/aws-sdk-go-v2/service/sts v1.18.6 go-module +github.com/aws/smithy-go v1.13.5 go-module +github.com/beorn7/perks v1.0.1 go-module +github.com/blang/semver v3.5.1+incompatible go-module +github.com/buger/goterm v1.0.4 go-module +github.com/cenkalti/backoff/v4 v4.1.2 go-module +github.com/cenkalti/backoff/v4 v4.2.1 go-module +github.com/cespare/xxhash/v2 v2.2.0 go-module +github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module +github.com/cilium/ebpf v0.11.0 go-module +github.com/cilium/ebpf v0.7.0 go-module +github.com/cloudflare/cfssl v1.6.4 go-module +github.com/compose-spec/compose-go/v2 v2.0.0-rc.3 go-module +github.com/container-orchestrated-devices/container-device-interface v0.6.0 go-module +github.com/container-storage-interface/spec v1.5.0 go-module +github.com/containerd/aufs v1.0.0 go-module +github.com/containerd/btrfs v1.0.0 go-module +github.com/containerd/cgroups v1.0.4 go-module +github.com/containerd/cgroups/v3 v3.0.3 go-module +github.com/containerd/console v1.0.3 go-module +github.com/containerd/containerd v1.6.28 go-module +github.com/containerd/containerd v1.7.12 go-module +github.com/containerd/continuity v0.3.0 go-module +github.com/containerd/continuity v0.4.2 go-module +github.com/containerd/fifo v1.0.0 go-module +github.com/containerd/fifo v1.1.0 go-module +github.com/containerd/go-cni v1.1.6 go-module +github.com/containerd/go-cni v1.1.9 go-module +github.com/containerd/go-runc v1.0.0 go-module +github.com/containerd/go-runc v1.1.0 go-module +github.com/containerd/imgcrypt v1.1.4 go-module +github.com/containerd/log v0.1.0 go-module +github.com/containerd/nri v0.1.1 go-module +github.com/containerd/nydus-snapshotter v0.8.2 go-module +github.com/containerd/stargz-snapshotter/estargz v0.14.3 go-module +github.com/containerd/ttrpc v1.1.2 go-module +github.com/containerd/ttrpc v1.2.2 go-module +github.com/containerd/typeurl v1.0.2 go-module +github.com/containerd/typeurl/v2 v2.1.1 go-module +github.com/containerd/zfs v1.1.0 go-module +github.com/containernetworking/cni v1.1.1 go-module +github.com/containernetworking/cni v1.1.2 go-module +github.com/containernetworking/plugins v1.1.1 go-module +github.com/containers/ocicrypt v1.1.3 go-module +github.com/coreos/go-systemd/v22 v22.3.2 go-module +github.com/coreos/go-systemd/v22 v22.5.0 go-module +github.com/cpuguy83/go-md2man/v2 v2.0.0 go-module +github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module +github.com/cpuguy83/go-md2man/v2 v2.0.2 go-module +github.com/crazy-max/buildkit v0.7.1-0.20240130133234-d9aa289bd124 go-module +github.com/cyphar/filepath-securejoin v0.2.4 go-module +github.com/davecgh/go-spew v1.1.1 go-module +github.com/deckarep/golang-set/v2 v2.3.0 go-module +github.com/dimchansky/utfbom v1.1.1 go-module +github.com/distribution/reference v0.5.0 go-module +github.com/docker/buildx v0.12.0-rc2.0.20231219140829-617f538cb315 go-module +github.com/docker/cli v25.0.1+incompatible go-module +github.com/docker/cli/cmd/docker v25.0.2 go-module +github.com/docker/compose/v2 (devel) go-module +github.com/docker/distribution v2.8.3+incompatible go-module +github.com/docker/docker v25.0.1+incompatible go-module +github.com/docker/docker v25.0.2 go-module +github.com/docker/docker-credential-helpers v0.8.0 go-module +github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module +github.com/docker/go-connections v0.5.0 go-module +github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module +github.com/docker/go-metrics v0.0.1 go-module +github.com/docker/go-units v0.4.0 go-module +github.com/docker/go-units v0.5.0 go-module +github.com/docker/libtrust v0.0.0-20150526203908-9cbd2a1374f4 go-module +github.com/dustin/go-humanize v1.0.0 go-module +github.com/elliotchance/orderedmap v1.4.0 go-module +github.com/emicklei/go-restful v2.16.0+incompatible go-module +github.com/emicklei/go-restful/v3 v3.10.1 go-module +github.com/fatih/color v1.13.0 go-module +github.com/felixge/httpsnoop v1.0.4 go-module +github.com/fernet/fernet-go v0.0.0-20211208181803-9f70042a33ee go-module +github.com/fluent/fluent-logger-golang v1.9.0 go-module +github.com/fsnotify/fsnotify v1.4.9 go-module +github.com/fsnotify/fsnotify v1.5.4 go-module +github.com/fsnotify/fsnotify v1.6.0 go-module +github.com/fvbommel/sortorder v1.0.2 go-module +github.com/go-logr/logr v1.2.4 go-module +github.com/go-logr/logr v1.3.0 go-module +github.com/go-logr/stdr v1.2.2 go-module +github.com/go-openapi/jsonpointer v0.19.5 go-module +github.com/go-openapi/jsonreference v0.20.0 go-module +github.com/go-openapi/swag v0.19.14 go-module +github.com/goccy/go-yaml v1.9.5 go-module +github.com/godbus/dbus/v5 v5.0.6 go-module +github.com/godbus/dbus/v5 v5.1.0 go-module +github.com/gofrs/flock v0.8.1 go-module +github.com/gogo/googleapis v1.3.2 go-module +github.com/gogo/googleapis v1.4.1 go-module +github.com/gogo/protobuf v1.3.2 go-module +github.com/golang-jwt/jwt/v4 v4.4.2 go-module +github.com/golang/gddo v0.0.0-20190904175337-72a348e765d2 go-module +github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da go-module +github.com/golang/protobuf v1.5.3 go-module +github.com/google/btree v1.1.2 go-module +github.com/google/certificate-transparency-go v1.1.4 go-module +github.com/google/gnostic v0.5.7-v3refs go-module +github.com/google/go-cmp v0.6.0 go-module +github.com/google/gofuzz v1.2.0 go-module +github.com/google/s2a-go v0.1.4 go-module +github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module +github.com/google/uuid v1.3.1 go-module +github.com/google/uuid v1.5.0 go-module +github.com/googleapis/enterprise-certificate-proxy v0.2.3 go-module +github.com/googleapis/gax-go/v2 v2.11.0 go-module +github.com/gorilla/mux v1.8.1 go-module +github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module +github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module +github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module +github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 go-module +github.com/hashicorp/errwrap v1.1.0 go-module +github.com/hashicorp/go-cleanhttp v0.5.2 go-module +github.com/hashicorp/go-immutable-radix v1.3.1 go-module +github.com/hashicorp/go-memdb v1.3.2 go-module +github.com/hashicorp/go-msgpack v0.5.5 go-module +github.com/hashicorp/go-multierror v1.1.1 go-module +github.com/hashicorp/go-sockaddr v1.0.2 go-module +github.com/hashicorp/go-version v1.6.0 go-module +github.com/hashicorp/golang-lru v0.5.4 go-module +github.com/hashicorp/memberlist v0.4.0 go-module +github.com/hashicorp/serf v0.8.5 go-module +github.com/imdario/mergo v0.3.16 go-module +github.com/in-toto/in-toto-golang v0.5.0 go-module +github.com/intel/goresctrl v0.2.0 go-module +github.com/ishidawataru/sctp v0.0.0-20230406120618-7ff4192f6ff2 go-module +github.com/jinzhu/copier v0.3.5 go-module +github.com/jmoiron/sqlx v1.3.3 go-module +github.com/jonboulle/clockwork v0.4.0 go-module +github.com/josharian/intern v1.0.0 go-module +github.com/json-iterator/go v1.1.12 go-module +github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module +github.com/klauspost/compress v1.15.9 go-module +github.com/klauspost/compress v1.17.4 go-module +github.com/magiconair/properties v1.8.6 go-module +github.com/mailru/easyjson v0.7.6 go-module +github.com/mattn/go-colorable v0.1.12 go-module +github.com/mattn/go-colorable v0.1.13 go-module +github.com/mattn/go-isatty v0.0.14 go-module +github.com/mattn/go-isatty v0.0.17 go-module +github.com/mattn/go-runewidth v0.0.15 go-module +github.com/mattn/go-shellwords v1.0.12 go-module +github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module +github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module +github.com/miekg/dns v1.1.43 go-module +github.com/miekg/pkcs11 v1.1.1 go-module +github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module +github.com/mistifyio/go-zfs/v3 v3.0.1 go-module +github.com/mitchellh/copystructure v1.2.0 go-module +github.com/mitchellh/hashstructure/v2 v2.0.2 go-module +github.com/mitchellh/mapstructure v1.5.0 go-module +github.com/mitchellh/reflectwalk v1.0.2 go-module +github.com/moby/buildkit v0.12.5 go-module +github.com/moby/ipvs v1.1.0 go-module +github.com/moby/locker v1.0.1 go-module +github.com/moby/patternmatcher v0.6.0 go-module +github.com/moby/pubsub v1.0.0 go-module +github.com/moby/spdystream v0.2.0 go-module +github.com/moby/swarmkit/v2 v2.0.0-20230911190601-f082dd7a0cee go-module +github.com/moby/sys/mount v0.3.3 go-module +github.com/moby/sys/mountinfo v0.5.0 go-module +github.com/moby/sys/mountinfo v0.6.2 go-module +github.com/moby/sys/mountinfo v0.7.1 go-module +github.com/moby/sys/sequential v0.5.0 go-module +github.com/moby/sys/signal v0.6.0 go-module +github.com/moby/sys/signal v0.7.0 go-module +github.com/moby/sys/symlink v0.2.0 go-module +github.com/moby/sys/user v0.1.0 go-module +github.com/moby/term v0.5.0 go-module +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module +github.com/modern-go/reflect2 v1.0.2 go-module +github.com/morikuni/aec v1.0.0 go-module +github.com/mrunalp/fileutils v0.5.1 go-module +github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 go-module +github.com/opencontainers/go-digest v1.0.0 go-module +github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module +github.com/opencontainers/image-spec v1.1.0-rc5 go-module +github.com/opencontainers/runc v0.0.0-20240123131248-51d5e94601ce go-module +github.com/opencontainers/runc v1.1.12 go-module +github.com/opencontainers/runc v1.1.6 go-module +github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module +github.com/opencontainers/runtime-spec v1.1.0 go-module +github.com/opencontainers/runtime-spec v1.1.0-rc.2 go-module +github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module +github.com/opencontainers/selinux v1.10.0 go-module +github.com/opencontainers/selinux v1.10.1 go-module +github.com/opencontainers/selinux v1.11.0 go-module +github.com/package-url/packageurl-go v0.1.1-0.20220428063043-89078438f170 go-module +github.com/pelletier/go-toml v1.9.4 go-module +github.com/pelletier/go-toml v1.9.5 go-module +github.com/philhofer/fwd v1.1.2 go-module +github.com/pkg/errors v0.9.1 go-module +github.com/pmezard/go-difflib v1.0.0 go-module +github.com/prometheus/client_golang v1.11.1 go-module +github.com/prometheus/client_golang v1.14.0 go-module +github.com/prometheus/client_golang v1.16.0 go-module +github.com/prometheus/client_model v0.2.0 go-module +github.com/prometheus/client_model v0.3.0 go-module +github.com/prometheus/client_model v0.4.0 go-module +github.com/prometheus/common v0.30.0 go-module +github.com/prometheus/common v0.42.0 go-module +github.com/prometheus/procfs v0.10.1 go-module +github.com/prometheus/procfs v0.7.3 go-module +github.com/prometheus/procfs v0.9.0 go-module +github.com/rivo/uniseg v0.2.0 go-module +github.com/rootless-containers/rootlesskit/v2 v2.0.0 go-module +github.com/russross/blackfriday/v2 v2.0.1 go-module +github.com/russross/blackfriday/v2 v2.1.0 go-module +github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 go-module +github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 go-module +github.com/secure-systems-lab/go-securesystemslib v0.4.0 go-module +github.com/serialx/hashring v0.0.0-20190422032157-8b2912629002 go-module +github.com/shibumi/go-pathspec v1.3.0 go-module +github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module +github.com/sirupsen/logrus v1.8.1 go-module +github.com/sirupsen/logrus v1.9.0 go-module +github.com/sirupsen/logrus v1.9.3 go-module +github.com/spdx/tools-golang v0.5.1 go-module +github.com/spf13/cobra v1.4.0 go-module +github.com/spf13/cobra v1.8.0 go-module +github.com/spf13/pflag v1.0.5 go-module +github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 go-module +github.com/stretchr/testify v1.8.4 go-module +github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module +github.com/tchap/go-patricia v2.2.6+incompatible go-module +github.com/theupdateframework/notary v0.7.0 go-module +github.com/tilt-dev/fsnotify v1.4.8-0.20220602155310-fff9c274a375 go-module +github.com/timtadh/data-structures v0.5.3 go-module +github.com/timtadh/lexmachine v0.2.2 go-module +github.com/tinylib/msgp v1.1.8 go-module +github.com/tonistiigi/fsutil v0.0.0-20230629203738-36ef4d8c0dbb go-module +github.com/tonistiigi/go-actions-cache v0.0.0-20220404170428-0bdeb6e1eac7 go-module +github.com/tonistiigi/go-archvariant v1.0.0 go-module +github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module +github.com/tonistiigi/vt100 v0.0.0-20230623042737-f9a4f7ef6531 go-module +github.com/urfave/cli v1.22.1 go-module +github.com/urfave/cli/v2 v2.3.0 go-module +github.com/vbatts/tar-split v0.11.5 go-module +github.com/vishvananda/netlink v1.1.0 go-module +github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5 go-module +github.com/vishvananda/netlink v1.2.1-beta.2 go-module +github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df go-module +github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f go-module +github.com/vishvananda/netns v0.0.4 go-module +github.com/weppos/publicsuffix-go v0.15.1-0.20210511084619-b1f36a2d6c0b go-module +github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb go-module +github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module +github.com/xeipuuv/gojsonschema v1.2.0 go-module +github.com/zmap/zcrypto v0.0.0-20210511125630-18f1e0152cfc go-module +github.com/zmap/zlint/v3 v3.1.0 go-module +gitlab.com/nvidia/cloud-native/go-nvlib v0.0.0-20230818092907-09424fdc8884 go-module +glob 7.2.3 npm +glob 8.0.3 npm +gnupg 2.2.27-3ubuntu2.1 deb +gnupg-l10n 2.2.27-3ubuntu2.1 deb +gnupg-utils 2.2.27-3ubuntu2.1 deb +go.etcd.io/bbolt v1.3.7 go-module +go.etcd.io/etcd/client/pkg/v3 v3.5.6 go-module +go.etcd.io/etcd/pkg/v3 v3.5.6 go-module +go.etcd.io/etcd/raft/v3 v3.5.6 go-module +go.etcd.io/etcd/server/v3 v3.5.6 go-module +go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module +go.opencensus.io v0.24.0 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.45.0 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.45.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 go-module +go.opentelemetry.io/otel v1.19.0 go-module +go.opentelemetry.io/otel v1.21.0 go-module +go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.42.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.42.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v0.42.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.19.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.19.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.3.0 go-module +go.opentelemetry.io/otel/exporters/prometheus v0.42.0 go-module +go.opentelemetry.io/otel/metric v1.19.0 go-module +go.opentelemetry.io/otel/metric v1.21.0 go-module +go.opentelemetry.io/otel/sdk v1.19.0 go-module +go.opentelemetry.io/otel/sdk v1.21.0 go-module +go.opentelemetry.io/otel/sdk/metric v1.19.0 go-module +go.opentelemetry.io/otel/trace v1.19.0 go-module +go.opentelemetry.io/otel/trace v1.21.0 go-module +go.opentelemetry.io/proto/otlp v0.11.0 go-module +go.opentelemetry.io/proto/otlp v1.0.0 go-module +go.uber.org/atomic v1.9.0 go-module +go.uber.org/mock v0.4.0 go-module +go.uber.org/multierr v1.8.0 go-module +go.uber.org/zap v1.21.0 go-module +golang.org/x/crypto v0.17.0 go-module +golang.org/x/crypto v0.18.0 go-module +golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 go-module +golang.org/x/exp v0.0.0-20230713183714-613f0c0eb8a1 go-module +golang.org/x/mod v0.11.0 go-module +golang.org/x/mod v0.5.0 go-module +golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module +golang.org/x/net v0.17.0 go-module +golang.org/x/net v0.18.0 go-module +golang.org/x/net v0.8.0 go-module +golang.org/x/oauth2 v0.10.0 go-module +golang.org/x/oauth2 v0.11.0 go-module +golang.org/x/sync v0.3.0 go-module +golang.org/x/sync v0.6.0 go-module +golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module +golang.org/x/sys v0.16.0 go-module +golang.org/x/sys v0.6.0 go-module +golang.org/x/sys v0.7.0 go-module +golang.org/x/term v0.15.0 go-module +golang.org/x/term v0.16.0 go-module +golang.org/x/text v0.14.0 go-module +golang.org/x/text v0.3.7 go-module +golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module +golang.org/x/time v0.3.0 go-module +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module +google.golang.org/api v0.126.0 go-module +google.golang.org/appengine v1.6.7 go-module +google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63 go-module +google.golang.org/genproto v0.0.0-20230711160842-782d3b101e98 go-module +google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d go-module +google.golang.org/genproto/googleapis/api v0.0.0-20230711160842-782d3b101e98 go-module +google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d go-module +google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 go-module +google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d go-module +google.golang.org/grpc v1.58.3 go-module +google.golang.org/grpc v1.59.0 go-module +google.golang.org/protobuf v1.27.1 go-module +google.golang.org/protobuf v1.31.0 go-module +gopd 1.0.1 npm +gopkg.in/inf.v0 v0.9.1 go-module +gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module +gopkg.in/square/go-jose.v2 v2.5.1 go-module +gopkg.in/yaml.v2 v2.4.0 go-module +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b go-module +gopkg.in/yaml.v3 v3.0.1 go-module +gpg 2.2.27-3ubuntu2.1 deb +gpg-agent 2.2.27-3ubuntu2.1 deb +gpg-wks-client 2.2.27-3ubuntu2.1 deb +gpg-wks-server 2.2.27-3ubuntu2.1 deb +gpgconf 2.2.27-3ubuntu2.1 deb +gpgsm 2.2.27-3ubuntu2.1 deb +gpgv 2.2.27-3ubuntu2.1 deb +graceful-fs 4.2.10 npm +grep 3.7-1build1 deb +gzip 1.10-4ubuntu4.1 deb +has 1.0.3 npm +has-flag 4.0.0 npm +has-property-descriptors 1.0.1 npm +has-proto 1.0.1 npm +has-symbols 1.0.3 npm +has-unicode 2.0.1 npm +hasown 2.0.0 npm +hosted-git-info 5.2.1 npm +hostname 3.23ubuntu2 deb +http-cache-semantics 4.1.1 npm +http-errors 2.0.0 npm +http-proxy-agent 5.0.0 npm +https-proxy-agent 5.0.1 npm +humanize-ms 1.2.1 npm +iconv-lite 0.4.24 npm +iconv-lite 0.6.3 npm +ieee754 1.2.1 npm +ignore-walk 5.0.1 npm +imurmurhash 0.1.4 npm +indent-string 4.0.0 npm +infer-owner 1.0.4 npm +inflight 1.0.6 npm +inherits 2.0.4 npm +ini 3.0.1 npm +init-package-json 3.0.2 npm +init-system-helpers 1.62 deb +ip 2.0.0 npm +ip-regex 4.3.0 npm +ipaddr.js 1.9.1 npm +iptables 1.8.7-1ubuntu5.1 deb +is-cidr 4.0.2 npm +is-core-module 2.10.0 npm +is-fullwidth-code-point 3.0.0 npm +is-lambda 1.0.1 npm +isexe 2.0.0 npm +jq 1.6-2.1ubuntu3 deb +js-yaml 4.1.0 npm +json-parse-even-better-errors 2.3.1 npm +json-stringify-nice 1.1.4 npm +jsonparse 1.3.1 npm +just-diff 5.1.1 npm +just-diff-apply 5.4.1 npm +k8s.io/api v0.22.5 go-module +k8s.io/api v0.26.7 go-module +k8s.io/apimachinery v0.22.5 go-module +k8s.io/apimachinery v0.26.7 go-module +k8s.io/apiserver v0.22.5 go-module +k8s.io/apiserver v0.26.7 go-module +k8s.io/client-go v0.22.5 go-module +k8s.io/client-go v0.26.7 go-module +k8s.io/component-base v0.22.5 go-module +k8s.io/cri-api v0.25.0 go-module +k8s.io/klog/v2 v2.30.0 go-module +k8s.io/klog/v2 v2.90.1 go-module +k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 go-module +k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b go-module +k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 go-module +kasm-wizard 0.0.1 npm +libacl1 2.3.1-1 deb +libapt-pkg6.0 2.4.11 deb +libassuan0 2.5.5-1build1 deb +libattr1 1:2.5.1-1build1 deb +libaudit-common 1:3.0.7-1build1 deb +libaudit1 1:3.0.7-1build1 deb +libblkid1 2.37.2-4ubuntu3 deb +libbrotli1 1.0.9-2build6 deb +libbsd0 0.11.5-1 deb +libbz2-1.0 1.0.8-5build1 deb +libc-bin 2.35-0ubuntu3.1 deb +libc6 2.35-0ubuntu3.6 deb +libcap-ng0 0.7.9-2.2build3 deb +libcap2 1:2.44-1ubuntu0.22.04.1 deb +libcom-err2 1.46.5-2ubuntu1.1 deb +libcrypt1 1:4.4.27-1 deb +libcurl4 7.81.0-1ubuntu1.15 deb +libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb +libdebconfclient0 0.261ubuntu1 deb +libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb +libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb +libdrm2 2.4.113-2~ubuntu0.22.04.1 deb +libedit2 3.1-20210910-1build1 deb +libexpat1 2.4.7-1ubuntu0.2 deb +libext2fs2 1.46.5-2ubuntu1.1 deb +libffi8 3.4.2-4 deb +libfuse3-3 3.10.5-1build1 deb +libgcc-s1 12.3.0-1ubuntu1~22.04 deb +libgcrypt20 1.9.4-3ubuntu3 deb +libgmp10 2:6.2.1+dfsg-3ubuntu1 deb +libgnutls30 3.7.3-4ubuntu1.2 deb +libgpg-error0 1.43-3 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb +libhogweed6 3.7.3-1build2 deb +libicu70 70.1-2 deb +libidn2-0 2.3.2-2build1 deb +libinih1 53-1ubuntu3 deb +libip4tc2 1.8.7-1ubuntu5.1 deb +libip6tc2 1.8.7-1ubuntu5.1 deb +libjq1 1.6-2.1ubuntu3 deb +libjson-c5 0.15-3~ubuntu1.22.04.2 deb +libk5crypto3 1.19.2-2ubuntu0.2 deb +libkeyutils1 1.6.1-2ubuntu3 deb +libkrb5-3 1.19.2-2ubuntu0.2 deb +libkrb5support0 1.19.2-2ubuntu0.2 deb +libksba8 1.6.0-2ubuntu0.2 deb +libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.2 deb +libldap-common 2.5.16+dfsg-0ubuntu0.22.04.2 deb +liblz4-1 1.9.3-2build2 deb +liblzma5 5.2.5-2ubuntu1 deb +liblzo2-2 2.10-2build3 deb +libmd0 1.0.4-1build1 deb +libmnl0 1.0.4-3build2 deb +libmount1 2.37.2-4ubuntu3 deb +libmpdec3 2.5.1-2build2 deb +libncurses6 6.3-2ubuntu0.1 deb +libncursesw6 6.3-2ubuntu0.1 deb +libnetfilter-conntrack3 1.0.9-1 deb +libnettle8 3.7.3-1build2 deb +libnfnetlink0 1.0.1-3build3 deb +libnftnl11 1.2.1-1build1 deb +libnghttp2-14 1.43.0-1ubuntu0.1 deb +libnpmaccess 6.0.4 npm +libnpmdiff 4.0.5 npm +libnpmexec 4.0.14 npm +libnpmfund 3.0.5 npm +libnpmhook 8.0.4 npm +libnpmorg 4.0.4 npm +libnpmpack 4.1.3 npm +libnpmpublish 6.0.5 npm +libnpmsearch 5.0.4 npm +libnpmteam 4.0.4 npm +libnpmversion 3.0.7 npm +libnpth0 1.6-3build2 deb +libnsl2 1.3.0-2build2 deb +libnvidia-container-tools 1.14.4-1 deb +libnvidia-container1 1.14.4-1 deb +libonig5 6.9.7.1-2build1 deb +libp11-kit0 0.24.0-6build1 deb +libpam-modules 1.4.0-11ubuntu2.3 deb +libpam-modules-bin 1.4.0-11ubuntu2.3 deb +libpam-runtime 1.4.0-11ubuntu2.3 deb +libpam0g 1.4.0-11ubuntu2.3 deb +libpcre2-8-0 10.39-3ubuntu0.1 deb +libpcre3 2:8.39-13ubuntu0.22.04.1 deb +libprocps8 2:3.3.17-6ubuntu2 deb +libpsl5 0.21.0-1.2build2 deb +libpython3-stdlib 3.10.6-1~22.04 deb +libpython3.10-minimal 3.10.12-1~22.04.3 deb +libpython3.10-stdlib 3.10.12-1~22.04.3 deb +libreadline8 8.1.2-1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb +libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb +libseccomp2 2.5.3-2ubuntu2 deb +libselinux1 3.3-1build2 deb +libsemanage-common 3.3-1build2 deb +libsemanage2 3.3-1build2 deb +libsepol2 3.3-1build1 deb +libsmartcols1 2.37.2-4ubuntu3 deb +libsqlite3-0 3.37.2-2ubuntu0.3 deb +libss2 1.46.5-2ubuntu1.1 deb +libssh-4 0.9.6-2ubuntu0.22.04.3 deb +libssl3 3.0.2-0ubuntu1.10 deb +libstdc++6 12.3.0-1ubuntu1~22.04 deb +libsystemd0 249.11-0ubuntu3.9 deb +libtasn1-6 4.18.0-4build1 deb +libtinfo6 6.3-2ubuntu0.1 deb +libtirpc-common 1.3.2-2ubuntu0.1 deb +libtirpc3 1.3.2-2ubuntu0.1 deb +libudev1 249.11-0ubuntu3.9 deb +libunistring2 1.0-1 deb +libuuid1 2.37.2-4ubuntu3 deb +libxtables12 1.8.7-1ubuntu5.1 deb +libxxhash0 0.8.1-1 deb +libzstd1 1.4.8+dfsg-3build1 deb +locales 2.35-0ubuntu3.6 deb +lodash 4.17.21 npm +login 1:4.8.1-2ubuntu2.1 deb +logsave 1.46.5-2ubuntu1.1 deb +lru-cache 6.0.0 npm +lru-cache 7.13.2 npm +lsb-base 11.1.0ubuntu4 deb +lsb-release 11.1.0ubuntu4 deb +lsof 4.93.2+dfsg-1.1build2 deb +make-fetch-happen 10.2.1 npm +mawk 1.3.4.20200120-3 deb +media-typer 0.3.0 npm +media-types 7.0.0 deb +merge-descriptors 1.0.1 npm +methods 1.1.2 npm +mime 1.6.0 npm +mime-db 1.52.0 npm +mime-types 2.1.35 npm +minimatch 3.1.2 npm +minimatch 5.1.0 npm +minipass 3.3.4 npm +minipass-collect 1.0.2 npm +minipass-fetch 2.1.1 npm +minipass-flush 1.0.5 npm +minipass-json-stream 1.0.1 npm +minipass-pipeline 1.2.4 npm +minipass-sized 1.0.3 npm +minizlib 2.1.2 npm +mkdirp 1.0.4 npm +mkdirp-classic 0.5.3 npm +mkdirp-infer-owner 2.0.0 npm +mount 2.37.2-4ubuntu3 deb +ms 2.0.0 npm +ms 2.1.2 npm +ms 2.1.3 npm +mute-stream 0.0.8 npm +nan 2.18.0 npm +ncurses-base 6.3-2ubuntu0.1 deb +ncurses-bin 6.3-2ubuntu0.1 deb +negotiator 0.6.3 npm +netbase 6.3 deb +netcat 1.218-4ubuntu1 deb +netcat-openbsd 1.218-4ubuntu1 deb +node-gyp 9.1.0 npm +node-pty 0.10.1 npm +nodejs 16.20.2-deb-1nodesource1 deb +nopt 5.0.0 npm +nopt 6.0.0 npm +normalize-package-data 4.0.1 npm +npm 8.19.4 npm +npm-audit-report 3.0.0 npm +npm-bundled 1.1.2 npm +npm-bundled 2.0.1 npm +npm-init 0.0.0 npm +npm-install-checks 5.0.0 npm +npm-normalize-package-bin 1.0.1 npm +npm-normalize-package-bin 2.0.0 npm +npm-package-arg 9.1.0 npm +npm-packlist 5.1.3 npm +npm-pick-manifest 7.0.2 npm +npm-profile 6.2.1 npm +npm-registry-fetch 13.3.1 npm +npm-user-validate 1.0.1 npm +npmlog 6.0.2 npm +nvidia-container-toolkit 1.14.4-1 deb +nvidia-container-toolkit-base 1.14.4-1 deb +nvidia-docker2 2.14.0-1 deb +object-assign 4.1.1 npm +object-inspect 1.13.1 npm +on-finished 2.4.1 npm +once 1.4.0 npm +opener 1.5.2 npm +openssl 3.0.2-0ubuntu1.13 deb +p-map 4.0.0 npm +pacote 13.6.2 npm +parse-conflict-json 2.0.2 npm +parseurl 1.3.3 npm +passwd 1:4.8.1-2ubuntu2.1 deb +path-is-absolute 1.0.1 npm +path-to-regexp 0.1.7 npm +perl-base 5.34.0-3ubuntu1.2 deb +pigz 2.6-1 deb +pinentry-curses 1.1.1-1build2 deb +postcss-selector-parser 6.0.10 npm +proc-log 2.0.1 npm +procps 2:3.3.17-6ubuntu2 deb +promise-all-reject-late 1.0.1 npm +promise-call-limit 1.0.1 npm +promise-inflight 1.0.1 npm +promise-retry 2.0.1 npm +promzard 0.3.0 npm +proxy-addr 2.0.7 npm +publicsuffix 20211207.1025-1 deb +pump 3.0.0 npm +python3 3.10.6-1~22.04 deb +python3-minimal 3.10.6-1~22.04 deb +python3.10 3.10.12-1~22.04.3 deb +python3.10-minimal 3.10.12-1~22.04.3 deb +qrcode-terminal 0.12.0 npm +qs 6.11.0 npm +range-parser 1.2.1 npm +raw-body 2.5.1 npm +read 1.0.7 npm +read-cmd-shim 3.0.0 npm +read-package-json 5.0.2 npm +read-package-json-fast 2.0.3 npm +readable-stream 3.6.0 npm +readable-stream 3.6.2 npm +readdir-scoped-modules 1.1.0 npm +readline-common 8.1.2-1 deb +resenje.org/singleflight v0.4.1 go-module +retry 0.12.0 npm +rimraf 3.0.2 npm +safe-buffer 5.2.1 npm +safer-buffer 2.1.2 npm +sed 4.8-1ubuntu2 deb +semver 7.3.7 npm +send 0.18.0 npm +sensible-utils 0.0.17 deb +serve-static 1.15.0 npm +set-blocking 2.0.0 npm +set-function-length 1.2.0 npm +setprototypeof 1.2.0 npm +side-channel 1.0.4 npm +signal-exit 3.0.7 npm +sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 go-module +sigs.k8s.io/structured-merge-diff/v4 v4.1.2 go-module +sigs.k8s.io/structured-merge-diff/v4 v4.2.3 go-module +sigs.k8s.io/yaml v1.2.0 go-module +sigs.k8s.io/yaml v1.3.0 go-module +smart-buffer 4.2.0 npm +socket.io 4.7.4 npm +socket.io-adapter 2.5.2 npm +socket.io-parser 4.2.4 npm +socks 2.7.0 npm +socks-proxy-agent 7.0.0 npm +spdx-correct 3.1.1 npm +spdx-exceptions 2.3.0 npm +spdx-expression-parse 3.0.1 npm +spdx-license-ids 3.0.11 npm +split-ca 1.0.1 npm +ssh2 1.15.0 npm +ssri 9.0.1 npm +statuses 2.0.1 npm +stdlib go1.18.1 go-module +stdlib go1.20.13 go-module +stdlib go1.20.5 go-module +stdlib go1.21.6 go-module +string-width 4.2.3 npm +string_decoder 1.3.0 npm +strip-ansi 6.0.1 npm +sudo 1.9.9-1ubuntu2.4 deb +supports-color 7.2.0 npm +systeminformation 5.21.24 npm +sysvinit-utils 3.01-1ubuntu1 deb +tags.cncf.io/container-device-interface v0.6.2 go-module +tags.cncf.io/container-device-interface/specs-go v0.6.0 go-module +tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb +tar 6.1.11 npm +tar-fs 2.0.1 npm +tar-stream 2.2.0 npm +text-table 0.2.0 npm +tiny-relative-date 1.3.0 npm +toidentifier 1.0.1 npm +treeverse 2.0.0 npm +tweetnacl 0.14.5 npm +type-is 1.6.18 npm +tzdata 2023d-0ubuntu0.22.04 deb +ubuntu-keyring 2021.03.26 deb +uidmap 1:4.8.1-2ubuntu2.1 deb +undici-types 5.26.5 npm +unique-filename 2.0.1 npm +unique-slug 3.0.0 npm +unpipe 1.0.0 npm +usrmerge 25ubuntu2 deb +util-deprecate 1.0.2 npm +util-linux 2.37.2-4ubuntu3 deb +utils-merge 1.0.1 npm +validate-npm-package-license 3.0.4 npm +validate-npm-package-name 4.0.0 npm +vary 1.1.2 npm +walk-up-path 1.0.0 npm +wcwidth 1.0.1 npm +which 2.0.2 npm +wide-align 1.1.5 npm +wrappy 1.0.2 npm +write-file-atomic 4.0.2 npm +ws 8.11.0 npm +xfsprogs 5.13.0-1ubuntu2 deb +yallist 4.0.0 npm +zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From 168dc3fcae937e8a651aa522b1c11c9c750b0771 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 1 Feb 2024 23:40:43 +0000 Subject: [PATCH 195/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f1e131b..3a1f430 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ NAME VE @tootallnate/once 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.11.14 npm +@types/node 20.11.16 npm abbrev 1.1.1 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From f3bf3e1381e7415c90d061be561ae4a800135f3e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 5 Feb 2024 19:40:06 +0000 Subject: [PATCH 196/337] Bot Updating Package Versions --- package_versions.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 3a1f430..b971d79 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -130,9 +130,10 @@ encodeurl 1. encoding 0.1.13 npm end-of-stream 1.4.4 npm engine.io 6.5.4 npm -engine.io-parser 5.2.1 npm +engine.io-parser 5.2.2 npm env-paths 2.2.1 npm err-code 2.0.3 npm +es-errors 1.3.0 npm escape-html 1.0.3 npm etag 1.8.1 npm express 4.18.2 npm @@ -150,7 +151,7 @@ fuse-overlayfs 1. fuse3 3.10.5-1build1 deb gauge 4.0.4 npm gcc-12-base 12.3.0-1ubuntu1~22.04 deb -get-intrinsic 1.2.2 npm +get-intrinsic 1.2.3 npm github.com/AlecAivazis/survey/v2 v2.3.7 go-module github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module github.com/Masterminds/semver/v3 v3.2.1 go-module @@ -774,7 +775,7 @@ object-inspect 1. on-finished 2.4.1 npm once 1.4.0 npm opener 1.5.2 npm -openssl 3.0.2-0ubuntu1.13 deb +openssl 3.0.2-0ubuntu1.14 deb p-map 4.0.0 npm pacote 13.6.2 npm parse-conflict-json 2.0.2 npm From ee3ea10c5af338a9b18db0c9668db181dc23a7de Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 6 Feb 2024 18:40:28 +0000 Subject: [PATCH 197/337] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b971d79..f743463 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -64,7 +64,7 @@ builtins 5. bytes 3.1.2 npm ca-certificates 20230311ubuntu0.22.04.1 deb cacache 16.1.3 npm -call-bind 1.0.5 npm +call-bind 1.0.6 npm chalk 4.1.2 npm chownr 1.1.4 npm chownr 2.0.0 npm @@ -106,7 +106,7 @@ debug 2. debug 4.3.4 npm debuglog 1.0.1 npm defaults 1.0.3 npm -define-data-property 1.1.1 npm +define-data-property 1.1.2 npm delegates 1.0.0 npm depd 1.1.2 npm depd 2.0.0 npm @@ -151,7 +151,7 @@ fuse-overlayfs 1. fuse3 3.10.5-1build1 deb gauge 4.0.4 npm gcc-12-base 12.3.0-1ubuntu1~22.04 deb -get-intrinsic 1.2.3 npm +get-intrinsic 1.2.4 npm github.com/AlecAivazis/survey/v2 v2.3.7 go-module github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module github.com/Masterminds/semver/v3 v3.2.1 go-module @@ -824,9 +824,9 @@ send 0. sensible-utils 0.0.17 deb serve-static 1.15.0 npm set-blocking 2.0.0 npm -set-function-length 1.2.0 npm +set-function-length 1.2.1 npm setprototypeof 1.2.0 npm -side-channel 1.0.4 npm +side-channel 1.0.5 npm signal-exit 3.0.7 npm sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 go-module sigs.k8s.io/structured-merge-diff/v4 v4.1.2 go-module From 2e4601bd4585415f2d7e88f67f254eb12dccec75 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 7 Feb 2024 17:42:02 +0000 Subject: [PATCH 198/337] Bot Updating Package Versions --- package_versions.txt | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index f743463..5be8218 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -77,7 +77,7 @@ cloud.google.com/go/compute/metadata v0 cloud.google.com/go/logging v1.7.0 go-module cloud.google.com/go/longrunning v0.5.1 go-module cmd-shim 5.0.0 npm -code.cloudfoundry.org/clock v1.0.0 go-module +code.cloudfoundry.org/clock v1.1.0 go-module color-convert 2.0.1 npm color-name 1.1.4 npm color-support 1.1.3 npm @@ -116,8 +116,8 @@ diff 5. diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb distro-info-data 0.52ubuntu0.6 deb -docker-ce 5:25.0.2-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:25.0.2-1~ubuntu.22.04~jammy deb +docker-ce 5:25.0.3-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:25.0.3-1~ubuntu.22.04~jammy deb docker-compose-plugin 2.24.5-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm @@ -158,7 +158,7 @@ github.com/Masterminds/semver/v3 v3 github.com/Microsoft/hcsshim v0.11.4 go-module github.com/Microsoft/hcsshim v0.9.10 go-module github.com/NVIDIA/go-nvml v0.12.0-1 go-module -github.com/NVIDIA/nvidia-container-toolkit v1.14.4 go-module +github.com/NVIDIA/nvidia-container-toolkit v1.14.5 go-module github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module github.com/a8m/envsubst v1.3.0 go-module github.com/agext/levenshtein v1.2.3 go-module @@ -189,7 +189,6 @@ github.com/cilium/ebpf v0 github.com/cilium/ebpf v0.7.0 go-module github.com/cloudflare/cfssl v1.6.4 go-module github.com/compose-spec/compose-go/v2 v2.0.0-rc.3 go-module -github.com/container-orchestrated-devices/container-device-interface v0.6.0 go-module github.com/container-storage-interface/spec v1.5.0 go-module github.com/containerd/aufs v1.0.0 go-module github.com/containerd/btrfs v1.0.0 go-module @@ -233,11 +232,11 @@ github.com/dimchansky/utfbom v1 github.com/distribution/reference v0.5.0 go-module github.com/docker/buildx v0.12.0-rc2.0.20231219140829-617f538cb315 go-module github.com/docker/cli v25.0.1+incompatible go-module -github.com/docker/cli/cmd/docker v25.0.2 go-module +github.com/docker/cli/cmd/docker v25.0.3 go-module github.com/docker/compose/v2 (devel) go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v25.0.1+incompatible go-module -github.com/docker/docker v25.0.2 go-module +github.com/docker/docker v25.0.3 go-module github.com/docker/docker-credential-helpers v0.8.0 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.5.0 go-module @@ -338,7 +337,7 @@ github.com/moby/locker v1 github.com/moby/patternmatcher v0.6.0 go-module github.com/moby/pubsub v1.0.0 go-module github.com/moby/spdystream v0.2.0 go-module -github.com/moby/swarmkit/v2 v2.0.0-20230911190601-f082dd7a0cee go-module +github.com/moby/swarmkit/v2 v2.0.0-20240125134710-dcda100a8261 go-module github.com/moby/sys/mount v0.3.3 go-module github.com/moby/sys/mountinfo v0.5.0 go-module github.com/moby/sys/mountinfo v0.6.2 go-module @@ -359,10 +358,8 @@ github.com/opencontainers/image-spec v1 github.com/opencontainers/image-spec v1.1.0-rc5 go-module github.com/opencontainers/runc v0.0.0-20240123131248-51d5e94601ce go-module github.com/opencontainers/runc v1.1.12 go-module -github.com/opencontainers/runc v1.1.6 go-module github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module github.com/opencontainers/runtime-spec v1.1.0 go-module -github.com/opencontainers/runtime-spec v1.1.0-rc.2 go-module github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module github.com/opencontainers/selinux v1.10.0 go-module github.com/opencontainers/selinux v1.10.1 go-module @@ -661,8 +658,8 @@ libnpmteam 4. libnpmversion 3.0.7 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.14.4-1 deb -libnvidia-container1 1.14.4-1 deb +libnvidia-container-tools 1.14.5-1 deb +libnvidia-container1 1.14.5-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.3 deb @@ -767,8 +764,8 @@ npm-profile 6. npm-registry-fetch 13.3.1 npm npm-user-validate 1.0.1 npm npmlog 6.0.2 npm -nvidia-container-toolkit 1.14.4-1 deb -nvidia-container-toolkit-base 1.14.4-1 deb +nvidia-container-toolkit 1.14.5-1 deb +nvidia-container-toolkit-base 1.14.5-1 deb nvidia-docker2 2.14.0-1 deb object-assign 4.1.1 npm object-inspect 1.13.1 npm From 90b9e3c5c337fec225aab5069a54d1845c84c9ae Mon Sep 17 00:00:00 2001 From: thelamer <ryankuba@gmail.com> Date: Wed, 7 Feb 2024 11:02:48 -0800 Subject: [PATCH 199/337] update develop to be functional --- Dockerfile | 16 +++++++++++++--- Dockerfile.aarch64 | 18 ++++++++++++++---- 2 files changed, 27 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 23d4bd9..8dd4c2c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,13 +28,12 @@ RUN \ curl -s -L https://nvidia.github.io/libnvidia-container/ubuntu22.04/libnvidia-container.list | \ sed 's#deb https://#deb [signed-by=/usr/share/keyrings/nvidia-container-toolkit-keyring.gpg] https://#g' | \ tee /etc/apt/sources.list.d/nvidia-container-toolkit.list && \ - curl -fsSL https://deb.nodesource.com/setup_16.x | bash - && \ + curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \ apt-get install -y --no-install-recommends \ btrfs-progs \ containerd.io \ docker-ce \ docker-ce-cli \ - docker-compose-plugin \ drm-info \ e2fsprogs \ fuse-overlayfs \ @@ -52,6 +51,12 @@ RUN \ sudo \ uidmap \ xfsprogs && \ + echo "**** compose install ****" && \ + mkdir -p /usr/local/lib/docker/cli-plugins && \ + curl -L \ + https://github.com/docker/compose/releases/download/v2.5.0/docker-compose-$(uname -s)-$(uname -m) -o \ + /usr/local/lib/docker/cli-plugins/docker-compose && \ + chmod +x /usr/local/lib/docker/cli-plugins/docker-compose && \ echo "**** dind setup ****" && \ useradd -U dockremap && \ usermod -G dockremap dockremap && \ @@ -83,13 +88,18 @@ RUN \ tar xf \ /tmp/kasm.tar.gz -C \ / && \ + ALVERSION=$(cat /kasm_release/conf/database/seed_data/default_properties.yaml |awk '/alembic_version/ {print $2}') && \ curl -o \ /tmp/images.tar.gz -L \ - "https://kasm-ci.s3.amazonaws.com/1.13.0-images-combined.tar.gz" && \ + "https://kasm-ci.s3.amazonaws.com/1.14.0-images-combined.tar.gz" && \ tar xf \ /tmp/images.tar.gz -C \ / && \ + sed -i \ + '/alembic_version/s/.*/alembic_version: '${ALVERSION}'/' \ + /kasm_release/conf/database/seed_data/default_images_a* && \ sed -i 's/-N -e -H/-N -B -e -H/g' /kasm_release/upgrade.sh && \ + echo "exit 0" > /kasm_release/install_dependencies.sh && \ echo "**** copy assets ****" && \ cp \ /kasm_release/www/img/thumbnails/*.png /kasm_release/www/img/thumbnails/*.svg \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index c8e0eaf..1560d18 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -28,13 +28,12 @@ RUN \ curl -s -L https://nvidia.github.io/libnvidia-container/ubuntu22.04/libnvidia-container.list | \ sed 's#deb https://#deb [signed-by=/usr/share/keyrings/nvidia-container-toolkit-keyring.gpg] https://#g' | \ tee /etc/apt/sources.list.d/nvidia-container-toolkit.list && \ - curl -fsSL https://deb.nodesource.com/setup_16.x | bash - && \ + curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \ apt-get install -y --no-install-recommends \ btrfs-progs \ containerd.io \ docker-ce \ docker-ce-cli \ - docker-compose-plugin \ drm-info \ e2fsprogs \ fuse-overlayfs \ @@ -52,6 +51,12 @@ RUN \ sudo \ uidmap \ xfsprogs && \ + echo "**** compose install ****" && \ + mkdir -p /usr/local/lib/docker/cli-plugins && \ + curl -L \ + https://github.com/docker/compose/releases/download/v2.5.0/docker-compose-$(uname -s)-$(uname -m) -o \ + /usr/local/lib/docker/cli-plugins/docker-compose && \ + chmod +x /usr/local/lib/docker/cli-plugins/docker-compose && \ echo "**** dind setup ****" && \ useradd -U dockremap && \ usermod -G dockremap dockremap && \ @@ -83,13 +88,18 @@ RUN \ tar xf \ /tmp/kasm.tar.gz -C \ / && \ + ALVERSION=$(cat /kasm_release/conf/database/seed_data/default_properties.yaml |awk '/alembic_version/ {print $2}') && \ curl -o \ /tmp/images.tar.gz -L \ - "https://kasm-ci.s3.amazonaws.com/1.13.0-images-combined.tar.gz" && \ + "https://kasm-ci.s3.amazonaws.com/1.14.0-images-combined.tar.gz" && \ tar xf \ /tmp/images.tar.gz -C \ / && \ - sed -i 's/-N -e -H/-N -B -e -H/g' /kasm_release/upgrade.sh && \ + sed -i \ + '/alembic_version/s/.*/alembic_version: '${ALVERSION}'/' \ + /kasm_release/conf/database/seed_data/default_images_a* && \ + sed -i 's/-N -e -H/-N -B -e -H/g' /kasm_release/upgrade.sh && \ + echo "exit 0" > /kasm_release/install_dependencies.sh && \ echo "**** copy assets ****" && \ cp \ /kasm_release/www/img/thumbnails/*.png /kasm_release/www/img/thumbnails/*.svg \ From acc650759c39996f1d943edad4844bad1e5adf81 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 7 Feb 2024 19:09:56 +0000 Subject: [PATCH 200/337] Bot Updating Package Versions --- package_versions.txt | 1805 +++++++++++++++++++++--------------------- 1 file changed, 912 insertions(+), 893 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 5be8218..d51de87 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,893 +1,912 @@ -NAME VERSION TYPE -1to2 1.0.0 npm -@balena/dockerignore 1.0.2 npm -@colors/colors 1.5.0 npm -@gar/promisify 1.1.3 npm -@isaacs/string-locale-compare 1.1.0 npm -@npmcli/arborist 5.6.3 npm -@npmcli/ci-detect 2.0.0 npm -@npmcli/config 4.2.2 npm -@npmcli/disparity-colors 2.0.0 npm -@npmcli/fs 2.1.2 npm -@npmcli/git 3.0.2 npm -@npmcli/installed-package-contents 1.0.7 npm -@npmcli/map-workspaces 2.0.4 npm -@npmcli/metavuln-calculator 3.1.1 npm -@npmcli/move-file 2.0.1 npm -@npmcli/name-from-folder 1.0.1 npm -@npmcli/node-gyp 2.0.0 npm -@npmcli/package-json 2.0.0 npm -@npmcli/promise-spawn 3.0.0 npm -@npmcli/query 1.2.0 npm -@npmcli/run-script 4.2.1 npm -@socket.io/component-emitter 3.1.0 npm -@tootallnate/once 2.0.0 npm -@types/cookie 0.4.1 npm -@types/cors 2.8.17 npm -@types/node 20.11.16 npm -abbrev 1.1.1 npm -accepts 1.3.8 npm -adduser 3.118ubuntu5 deb -agent-base 6.0.2 npm -agentkeepalive 4.2.1 npm -aggregate-error 3.1.0 npm -ansi-regex 5.0.1 npm -ansi-styles 4.3.0 npm -aproba 2.0.0 npm -apt 2.4.11 deb -apt-utils 2.4.11 deb -archy 1.0.0 npm -are-we-there-yet 3.0.1 npm -argparse 2.0.1 npm -array-flatten 1.1.1 npm -asap 2.0.6 npm -asn1 0.2.6 npm -balanced-match 1.0.2 npm -base-files 12ubuntu4.3 deb -base-passwd 3.5.52build1 deb -base64-js 1.5.1 npm -base64id 2.0.0 npm -bash 5.1-6ubuntu1 deb -bash 5.1.16 binary -bcrypt-pbkdf 1.0.2 npm -bin-links 3.0.3 npm -binary-extensions 2.2.0 npm -bl 4.1.0 npm -body-parser 1.20.1 npm -brace-expansion 1.1.11 npm -brace-expansion 2.0.1 npm -bsdutils 1:2.37.2-4ubuntu3 deb -btrfs-progs 5.16.2-1 deb -buffer 5.7.1 npm -buildcheck 0.0.6 npm -builtins 5.0.1 npm -bytes 3.1.2 npm -ca-certificates 20230311ubuntu0.22.04.1 deb -cacache 16.1.3 npm -call-bind 1.0.6 npm -chalk 4.1.2 npm -chownr 1.1.4 npm -chownr 2.0.0 npm -cidr-regex 3.1.1 npm -clean-stack 2.2.0 npm -cli-columns 4.0.0 npm -cli-table3 0.6.2 npm -clone 1.0.4 npm -cloud.google.com/go/compute/metadata v0.2.3 go-module -cloud.google.com/go/logging v1.7.0 go-module -cloud.google.com/go/longrunning v0.5.1 go-module -cmd-shim 5.0.0 npm -code.cloudfoundry.org/clock v1.1.0 go-module -color-convert 2.0.1 npm -color-name 1.1.4 npm -color-support 1.1.3 npm -columnify 1.6.0 npm -common-ancestor-path 1.0.1 npm -concat-map 0.0.1 npm -console-control-strings 1.1.0 npm -containerd.io 1.6.28-1 deb -content-disposition 0.5.4 npm -content-type 1.0.5 npm -cookie 0.4.2 npm -cookie 0.5.0 npm -cookie-signature 1.0.6 npm -corepack 0.17.0 npm -coreutils 8.32-4.1ubuntu1 deb -cors 2.8.5 npm -cpu-features 0.0.9 npm -cron 3.0pl1-137ubuntu3 deb -cssesc 3.0.0 npm -curl 7.81.0-1ubuntu1.15 deb -dario.cat/mergo v1.0.0 go-module -dash 0.5.11+git20210903+057cd650a4ed-3build1 deb -debconf 1.5.79ubuntu1 deb -debianutils 5.5-1ubuntu2 deb -debug 2.6.9 npm -debug 4.3.4 npm -debuglog 1.0.1 npm -defaults 1.0.3 npm -define-data-property 1.1.2 npm -delegates 1.0.0 npm -depd 1.1.2 npm -depd 2.0.0 npm -destroy 1.2.0 npm -dezalgo 1.0.4 npm -diff 5.1.0 npm -diffutils 1:3.8-0ubuntu2 deb -dirmngr 2.2.27-3ubuntu2.1 deb -distro-info-data 0.52ubuntu0.6 deb -docker-ce 5:25.0.3-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:25.0.3-1~ubuntu.22.04~jammy deb -docker-compose-plugin 2.24.5-1~ubuntu.22.04~jammy deb -docker-modem 3.0.8 npm -dockerode 3.3.5 npm -dpkg 1.21.1ubuntu2.2 deb -drm-info 2.2.0-2 deb -e2fsprogs 1.46.5-2ubuntu1.1 deb -ee-first 1.1.1 npm -emoji-regex 8.0.0 npm -encodeurl 1.0.2 npm -encoding 0.1.13 npm -end-of-stream 1.4.4 npm -engine.io 6.5.4 npm -engine.io-parser 5.2.2 npm -env-paths 2.2.1 npm -err-code 2.0.3 npm -es-errors 1.3.0 npm -escape-html 1.0.3 npm -etag 1.8.1 npm -express 4.18.2 npm -fastest-levenshtein 1.0.12 npm -finalhandler 1.2.0 npm -findutils 4.8.0-1ubuntu3 deb -forwarded 0.2.0 npm -fresh 0.5.2 npm -fs-constants 1.0.0 npm -fs-minipass 2.1.0 npm -fs.realpath 1.0.0 npm -function-bind 1.1.1 npm -function-bind 1.1.2 npm -fuse-overlayfs 1.7.1-1 deb -fuse3 3.10.5-1build1 deb -gauge 4.0.4 npm -gcc-12-base 12.3.0-1ubuntu1~22.04 deb -get-intrinsic 1.2.4 npm -github.com/AlecAivazis/survey/v2 v2.3.7 go-module -github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module -github.com/Masterminds/semver/v3 v3.2.1 go-module -github.com/Microsoft/hcsshim v0.11.4 go-module -github.com/Microsoft/hcsshim v0.9.10 go-module -github.com/NVIDIA/go-nvml v0.12.0-1 go-module -github.com/NVIDIA/nvidia-container-toolkit v1.14.5 go-module -github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module -github.com/a8m/envsubst v1.3.0 go-module -github.com/agext/levenshtein v1.2.3 go-module -github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092 go-module -github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 go-module -github.com/armon/go-metrics v0.4.1 go-module -github.com/aws/aws-sdk-go-v2 v1.17.6 go-module -github.com/aws/aws-sdk-go-v2/config v1.18.16 go-module -github.com/aws/aws-sdk-go-v2/credentials v1.13.16 go-module -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.24 go-module -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.30 go-module -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.24 go-module -github.com/aws/aws-sdk-go-v2/internal/ini v1.3.31 go-module -github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.15.17 go-module -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.24 go-module -github.com/aws/aws-sdk-go-v2/service/sso v1.12.5 go-module -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.5 go-module -github.com/aws/aws-sdk-go-v2/service/sts v1.18.6 go-module -github.com/aws/smithy-go v1.13.5 go-module -github.com/beorn7/perks v1.0.1 go-module -github.com/blang/semver v3.5.1+incompatible go-module -github.com/buger/goterm v1.0.4 go-module -github.com/cenkalti/backoff/v4 v4.1.2 go-module -github.com/cenkalti/backoff/v4 v4.2.1 go-module -github.com/cespare/xxhash/v2 v2.2.0 go-module -github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module -github.com/cilium/ebpf v0.11.0 go-module -github.com/cilium/ebpf v0.7.0 go-module -github.com/cloudflare/cfssl v1.6.4 go-module -github.com/compose-spec/compose-go/v2 v2.0.0-rc.3 go-module -github.com/container-storage-interface/spec v1.5.0 go-module -github.com/containerd/aufs v1.0.0 go-module -github.com/containerd/btrfs v1.0.0 go-module -github.com/containerd/cgroups v1.0.4 go-module -github.com/containerd/cgroups/v3 v3.0.3 go-module -github.com/containerd/console v1.0.3 go-module -github.com/containerd/containerd v1.6.28 go-module -github.com/containerd/containerd v1.7.12 go-module -github.com/containerd/continuity v0.3.0 go-module -github.com/containerd/continuity v0.4.2 go-module -github.com/containerd/fifo v1.0.0 go-module -github.com/containerd/fifo v1.1.0 go-module -github.com/containerd/go-cni v1.1.6 go-module -github.com/containerd/go-cni v1.1.9 go-module -github.com/containerd/go-runc v1.0.0 go-module -github.com/containerd/go-runc v1.1.0 go-module -github.com/containerd/imgcrypt v1.1.4 go-module -github.com/containerd/log v0.1.0 go-module -github.com/containerd/nri v0.1.1 go-module -github.com/containerd/nydus-snapshotter v0.8.2 go-module -github.com/containerd/stargz-snapshotter/estargz v0.14.3 go-module -github.com/containerd/ttrpc v1.1.2 go-module -github.com/containerd/ttrpc v1.2.2 go-module -github.com/containerd/typeurl v1.0.2 go-module -github.com/containerd/typeurl/v2 v2.1.1 go-module -github.com/containerd/zfs v1.1.0 go-module -github.com/containernetworking/cni v1.1.1 go-module -github.com/containernetworking/cni v1.1.2 go-module -github.com/containernetworking/plugins v1.1.1 go-module -github.com/containers/ocicrypt v1.1.3 go-module -github.com/coreos/go-systemd/v22 v22.3.2 go-module -github.com/coreos/go-systemd/v22 v22.5.0 go-module -github.com/cpuguy83/go-md2man/v2 v2.0.0 go-module -github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module -github.com/cpuguy83/go-md2man/v2 v2.0.2 go-module -github.com/crazy-max/buildkit v0.7.1-0.20240130133234-d9aa289bd124 go-module -github.com/cyphar/filepath-securejoin v0.2.4 go-module -github.com/davecgh/go-spew v1.1.1 go-module -github.com/deckarep/golang-set/v2 v2.3.0 go-module -github.com/dimchansky/utfbom v1.1.1 go-module -github.com/distribution/reference v0.5.0 go-module -github.com/docker/buildx v0.12.0-rc2.0.20231219140829-617f538cb315 go-module -github.com/docker/cli v25.0.1+incompatible go-module -github.com/docker/cli/cmd/docker v25.0.3 go-module -github.com/docker/compose/v2 (devel) go-module -github.com/docker/distribution v2.8.3+incompatible go-module -github.com/docker/docker v25.0.1+incompatible go-module -github.com/docker/docker v25.0.3 go-module -github.com/docker/docker-credential-helpers v0.8.0 go-module -github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module -github.com/docker/go-connections v0.5.0 go-module -github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module -github.com/docker/go-metrics v0.0.1 go-module -github.com/docker/go-units v0.4.0 go-module -github.com/docker/go-units v0.5.0 go-module -github.com/docker/libtrust v0.0.0-20150526203908-9cbd2a1374f4 go-module -github.com/dustin/go-humanize v1.0.0 go-module -github.com/elliotchance/orderedmap v1.4.0 go-module -github.com/emicklei/go-restful v2.16.0+incompatible go-module -github.com/emicklei/go-restful/v3 v3.10.1 go-module -github.com/fatih/color v1.13.0 go-module -github.com/felixge/httpsnoop v1.0.4 go-module -github.com/fernet/fernet-go v0.0.0-20211208181803-9f70042a33ee go-module -github.com/fluent/fluent-logger-golang v1.9.0 go-module -github.com/fsnotify/fsnotify v1.4.9 go-module -github.com/fsnotify/fsnotify v1.5.4 go-module -github.com/fsnotify/fsnotify v1.6.0 go-module -github.com/fvbommel/sortorder v1.0.2 go-module -github.com/go-logr/logr v1.2.4 go-module -github.com/go-logr/logr v1.3.0 go-module -github.com/go-logr/stdr v1.2.2 go-module -github.com/go-openapi/jsonpointer v0.19.5 go-module -github.com/go-openapi/jsonreference v0.20.0 go-module -github.com/go-openapi/swag v0.19.14 go-module -github.com/goccy/go-yaml v1.9.5 go-module -github.com/godbus/dbus/v5 v5.0.6 go-module -github.com/godbus/dbus/v5 v5.1.0 go-module -github.com/gofrs/flock v0.8.1 go-module -github.com/gogo/googleapis v1.3.2 go-module -github.com/gogo/googleapis v1.4.1 go-module -github.com/gogo/protobuf v1.3.2 go-module -github.com/golang-jwt/jwt/v4 v4.4.2 go-module -github.com/golang/gddo v0.0.0-20190904175337-72a348e765d2 go-module -github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da go-module -github.com/golang/protobuf v1.5.3 go-module -github.com/google/btree v1.1.2 go-module -github.com/google/certificate-transparency-go v1.1.4 go-module -github.com/google/gnostic v0.5.7-v3refs go-module -github.com/google/go-cmp v0.6.0 go-module -github.com/google/gofuzz v1.2.0 go-module -github.com/google/s2a-go v0.1.4 go-module -github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module -github.com/google/uuid v1.3.1 go-module -github.com/google/uuid v1.5.0 go-module -github.com/googleapis/enterprise-certificate-proxy v0.2.3 go-module -github.com/googleapis/gax-go/v2 v2.11.0 go-module -github.com/gorilla/mux v1.8.1 go-module -github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module -github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module -github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module -github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 go-module -github.com/hashicorp/errwrap v1.1.0 go-module -github.com/hashicorp/go-cleanhttp v0.5.2 go-module -github.com/hashicorp/go-immutable-radix v1.3.1 go-module -github.com/hashicorp/go-memdb v1.3.2 go-module -github.com/hashicorp/go-msgpack v0.5.5 go-module -github.com/hashicorp/go-multierror v1.1.1 go-module -github.com/hashicorp/go-sockaddr v1.0.2 go-module -github.com/hashicorp/go-version v1.6.0 go-module -github.com/hashicorp/golang-lru v0.5.4 go-module -github.com/hashicorp/memberlist v0.4.0 go-module -github.com/hashicorp/serf v0.8.5 go-module -github.com/imdario/mergo v0.3.16 go-module -github.com/in-toto/in-toto-golang v0.5.0 go-module -github.com/intel/goresctrl v0.2.0 go-module -github.com/ishidawataru/sctp v0.0.0-20230406120618-7ff4192f6ff2 go-module -github.com/jinzhu/copier v0.3.5 go-module -github.com/jmoiron/sqlx v1.3.3 go-module -github.com/jonboulle/clockwork v0.4.0 go-module -github.com/josharian/intern v1.0.0 go-module -github.com/json-iterator/go v1.1.12 go-module -github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module -github.com/klauspost/compress v1.15.9 go-module -github.com/klauspost/compress v1.17.4 go-module -github.com/magiconair/properties v1.8.6 go-module -github.com/mailru/easyjson v0.7.6 go-module -github.com/mattn/go-colorable v0.1.12 go-module -github.com/mattn/go-colorable v0.1.13 go-module -github.com/mattn/go-isatty v0.0.14 go-module -github.com/mattn/go-isatty v0.0.17 go-module -github.com/mattn/go-runewidth v0.0.15 go-module -github.com/mattn/go-shellwords v1.0.12 go-module -github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module -github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module -github.com/miekg/dns v1.1.43 go-module -github.com/miekg/pkcs11 v1.1.1 go-module -github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module -github.com/mistifyio/go-zfs/v3 v3.0.1 go-module -github.com/mitchellh/copystructure v1.2.0 go-module -github.com/mitchellh/hashstructure/v2 v2.0.2 go-module -github.com/mitchellh/mapstructure v1.5.0 go-module -github.com/mitchellh/reflectwalk v1.0.2 go-module -github.com/moby/buildkit v0.12.5 go-module -github.com/moby/ipvs v1.1.0 go-module -github.com/moby/locker v1.0.1 go-module -github.com/moby/patternmatcher v0.6.0 go-module -github.com/moby/pubsub v1.0.0 go-module -github.com/moby/spdystream v0.2.0 go-module -github.com/moby/swarmkit/v2 v2.0.0-20240125134710-dcda100a8261 go-module -github.com/moby/sys/mount v0.3.3 go-module -github.com/moby/sys/mountinfo v0.5.0 go-module -github.com/moby/sys/mountinfo v0.6.2 go-module -github.com/moby/sys/mountinfo v0.7.1 go-module -github.com/moby/sys/sequential v0.5.0 go-module -github.com/moby/sys/signal v0.6.0 go-module -github.com/moby/sys/signal v0.7.0 go-module -github.com/moby/sys/symlink v0.2.0 go-module -github.com/moby/sys/user v0.1.0 go-module -github.com/moby/term v0.5.0 go-module -github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module -github.com/modern-go/reflect2 v1.0.2 go-module -github.com/morikuni/aec v1.0.0 go-module -github.com/mrunalp/fileutils v0.5.1 go-module -github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 go-module -github.com/opencontainers/go-digest v1.0.0 go-module -github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module -github.com/opencontainers/image-spec v1.1.0-rc5 go-module -github.com/opencontainers/runc v0.0.0-20240123131248-51d5e94601ce go-module -github.com/opencontainers/runc v1.1.12 go-module -github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module -github.com/opencontainers/runtime-spec v1.1.0 go-module -github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module -github.com/opencontainers/selinux v1.10.0 go-module -github.com/opencontainers/selinux v1.10.1 go-module -github.com/opencontainers/selinux v1.11.0 go-module -github.com/package-url/packageurl-go v0.1.1-0.20220428063043-89078438f170 go-module -github.com/pelletier/go-toml v1.9.4 go-module -github.com/pelletier/go-toml v1.9.5 go-module -github.com/philhofer/fwd v1.1.2 go-module -github.com/pkg/errors v0.9.1 go-module -github.com/pmezard/go-difflib v1.0.0 go-module -github.com/prometheus/client_golang v1.11.1 go-module -github.com/prometheus/client_golang v1.14.0 go-module -github.com/prometheus/client_golang v1.16.0 go-module -github.com/prometheus/client_model v0.2.0 go-module -github.com/prometheus/client_model v0.3.0 go-module -github.com/prometheus/client_model v0.4.0 go-module -github.com/prometheus/common v0.30.0 go-module -github.com/prometheus/common v0.42.0 go-module -github.com/prometheus/procfs v0.10.1 go-module -github.com/prometheus/procfs v0.7.3 go-module -github.com/prometheus/procfs v0.9.0 go-module -github.com/rivo/uniseg v0.2.0 go-module -github.com/rootless-containers/rootlesskit/v2 v2.0.0 go-module -github.com/russross/blackfriday/v2 v2.0.1 go-module -github.com/russross/blackfriday/v2 v2.1.0 go-module -github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 go-module -github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 go-module -github.com/secure-systems-lab/go-securesystemslib v0.4.0 go-module -github.com/serialx/hashring v0.0.0-20190422032157-8b2912629002 go-module -github.com/shibumi/go-pathspec v1.3.0 go-module -github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module -github.com/sirupsen/logrus v1.8.1 go-module -github.com/sirupsen/logrus v1.9.0 go-module -github.com/sirupsen/logrus v1.9.3 go-module -github.com/spdx/tools-golang v0.5.1 go-module -github.com/spf13/cobra v1.4.0 go-module -github.com/spf13/cobra v1.8.0 go-module -github.com/spf13/pflag v1.0.5 go-module -github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 go-module -github.com/stretchr/testify v1.8.4 go-module -github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module -github.com/tchap/go-patricia v2.2.6+incompatible go-module -github.com/theupdateframework/notary v0.7.0 go-module -github.com/tilt-dev/fsnotify v1.4.8-0.20220602155310-fff9c274a375 go-module -github.com/timtadh/data-structures v0.5.3 go-module -github.com/timtadh/lexmachine v0.2.2 go-module -github.com/tinylib/msgp v1.1.8 go-module -github.com/tonistiigi/fsutil v0.0.0-20230629203738-36ef4d8c0dbb go-module -github.com/tonistiigi/go-actions-cache v0.0.0-20220404170428-0bdeb6e1eac7 go-module -github.com/tonistiigi/go-archvariant v1.0.0 go-module -github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module -github.com/tonistiigi/vt100 v0.0.0-20230623042737-f9a4f7ef6531 go-module -github.com/urfave/cli v1.22.1 go-module -github.com/urfave/cli/v2 v2.3.0 go-module -github.com/vbatts/tar-split v0.11.5 go-module -github.com/vishvananda/netlink v1.1.0 go-module -github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5 go-module -github.com/vishvananda/netlink v1.2.1-beta.2 go-module -github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df go-module -github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f go-module -github.com/vishvananda/netns v0.0.4 go-module -github.com/weppos/publicsuffix-go v0.15.1-0.20210511084619-b1f36a2d6c0b go-module -github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb go-module -github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module -github.com/xeipuuv/gojsonschema v1.2.0 go-module -github.com/zmap/zcrypto v0.0.0-20210511125630-18f1e0152cfc go-module -github.com/zmap/zlint/v3 v3.1.0 go-module -gitlab.com/nvidia/cloud-native/go-nvlib v0.0.0-20230818092907-09424fdc8884 go-module -glob 7.2.3 npm -glob 8.0.3 npm -gnupg 2.2.27-3ubuntu2.1 deb -gnupg-l10n 2.2.27-3ubuntu2.1 deb -gnupg-utils 2.2.27-3ubuntu2.1 deb -go.etcd.io/bbolt v1.3.7 go-module -go.etcd.io/etcd/client/pkg/v3 v3.5.6 go-module -go.etcd.io/etcd/pkg/v3 v3.5.6 go-module -go.etcd.io/etcd/raft/v3 v3.5.6 go-module -go.etcd.io/etcd/server/v3 v3.5.6 go-module -go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module -go.opencensus.io v0.24.0 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.45.0 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.45.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 go-module -go.opentelemetry.io/otel v1.19.0 go-module -go.opentelemetry.io/otel v1.21.0 go-module -go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.42.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.42.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v0.42.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.19.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.19.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.3.0 go-module -go.opentelemetry.io/otel/exporters/prometheus v0.42.0 go-module -go.opentelemetry.io/otel/metric v1.19.0 go-module -go.opentelemetry.io/otel/metric v1.21.0 go-module -go.opentelemetry.io/otel/sdk v1.19.0 go-module -go.opentelemetry.io/otel/sdk v1.21.0 go-module -go.opentelemetry.io/otel/sdk/metric v1.19.0 go-module -go.opentelemetry.io/otel/trace v1.19.0 go-module -go.opentelemetry.io/otel/trace v1.21.0 go-module -go.opentelemetry.io/proto/otlp v0.11.0 go-module -go.opentelemetry.io/proto/otlp v1.0.0 go-module -go.uber.org/atomic v1.9.0 go-module -go.uber.org/mock v0.4.0 go-module -go.uber.org/multierr v1.8.0 go-module -go.uber.org/zap v1.21.0 go-module -golang.org/x/crypto v0.17.0 go-module -golang.org/x/crypto v0.18.0 go-module -golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 go-module -golang.org/x/exp v0.0.0-20230713183714-613f0c0eb8a1 go-module -golang.org/x/mod v0.11.0 go-module -golang.org/x/mod v0.5.0 go-module -golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module -golang.org/x/net v0.17.0 go-module -golang.org/x/net v0.18.0 go-module -golang.org/x/net v0.8.0 go-module -golang.org/x/oauth2 v0.10.0 go-module -golang.org/x/oauth2 v0.11.0 go-module -golang.org/x/sync v0.3.0 go-module -golang.org/x/sync v0.6.0 go-module -golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module -golang.org/x/sys v0.16.0 go-module -golang.org/x/sys v0.6.0 go-module -golang.org/x/sys v0.7.0 go-module -golang.org/x/term v0.15.0 go-module -golang.org/x/term v0.16.0 go-module -golang.org/x/text v0.14.0 go-module -golang.org/x/text v0.3.7 go-module -golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module -golang.org/x/time v0.3.0 go-module -golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module -google.golang.org/api v0.126.0 go-module -google.golang.org/appengine v1.6.7 go-module -google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63 go-module -google.golang.org/genproto v0.0.0-20230711160842-782d3b101e98 go-module -google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d go-module -google.golang.org/genproto/googleapis/api v0.0.0-20230711160842-782d3b101e98 go-module -google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d go-module -google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 go-module -google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d go-module -google.golang.org/grpc v1.58.3 go-module -google.golang.org/grpc v1.59.0 go-module -google.golang.org/protobuf v1.27.1 go-module -google.golang.org/protobuf v1.31.0 go-module -gopd 1.0.1 npm -gopkg.in/inf.v0 v0.9.1 go-module -gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module -gopkg.in/square/go-jose.v2 v2.5.1 go-module -gopkg.in/yaml.v2 v2.4.0 go-module -gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b go-module -gopkg.in/yaml.v3 v3.0.1 go-module -gpg 2.2.27-3ubuntu2.1 deb -gpg-agent 2.2.27-3ubuntu2.1 deb -gpg-wks-client 2.2.27-3ubuntu2.1 deb -gpg-wks-server 2.2.27-3ubuntu2.1 deb -gpgconf 2.2.27-3ubuntu2.1 deb -gpgsm 2.2.27-3ubuntu2.1 deb -gpgv 2.2.27-3ubuntu2.1 deb -graceful-fs 4.2.10 npm -grep 3.7-1build1 deb -gzip 1.10-4ubuntu4.1 deb -has 1.0.3 npm -has-flag 4.0.0 npm -has-property-descriptors 1.0.1 npm -has-proto 1.0.1 npm -has-symbols 1.0.3 npm -has-unicode 2.0.1 npm -hasown 2.0.0 npm -hosted-git-info 5.2.1 npm -hostname 3.23ubuntu2 deb -http-cache-semantics 4.1.1 npm -http-errors 2.0.0 npm -http-proxy-agent 5.0.0 npm -https-proxy-agent 5.0.1 npm -humanize-ms 1.2.1 npm -iconv-lite 0.4.24 npm -iconv-lite 0.6.3 npm -ieee754 1.2.1 npm -ignore-walk 5.0.1 npm -imurmurhash 0.1.4 npm -indent-string 4.0.0 npm -infer-owner 1.0.4 npm -inflight 1.0.6 npm -inherits 2.0.4 npm -ini 3.0.1 npm -init-package-json 3.0.2 npm -init-system-helpers 1.62 deb -ip 2.0.0 npm -ip-regex 4.3.0 npm -ipaddr.js 1.9.1 npm -iptables 1.8.7-1ubuntu5.1 deb -is-cidr 4.0.2 npm -is-core-module 2.10.0 npm -is-fullwidth-code-point 3.0.0 npm -is-lambda 1.0.1 npm -isexe 2.0.0 npm -jq 1.6-2.1ubuntu3 deb -js-yaml 4.1.0 npm -json-parse-even-better-errors 2.3.1 npm -json-stringify-nice 1.1.4 npm -jsonparse 1.3.1 npm -just-diff 5.1.1 npm -just-diff-apply 5.4.1 npm -k8s.io/api v0.22.5 go-module -k8s.io/api v0.26.7 go-module -k8s.io/apimachinery v0.22.5 go-module -k8s.io/apimachinery v0.26.7 go-module -k8s.io/apiserver v0.22.5 go-module -k8s.io/apiserver v0.26.7 go-module -k8s.io/client-go v0.22.5 go-module -k8s.io/client-go v0.26.7 go-module -k8s.io/component-base v0.22.5 go-module -k8s.io/cri-api v0.25.0 go-module -k8s.io/klog/v2 v2.30.0 go-module -k8s.io/klog/v2 v2.90.1 go-module -k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 go-module -k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b go-module -k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 go-module -kasm-wizard 0.0.1 npm -libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.11 deb -libassuan0 2.5.5-1build1 deb -libattr1 1:2.5.1-1build1 deb -libaudit-common 1:3.0.7-1build1 deb -libaudit1 1:3.0.7-1build1 deb -libblkid1 2.37.2-4ubuntu3 deb -libbrotli1 1.0.9-2build6 deb -libbsd0 0.11.5-1 deb -libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.1 deb -libc6 2.35-0ubuntu3.6 deb -libcap-ng0 0.7.9-2.2build3 deb -libcap2 1:2.44-1ubuntu0.22.04.1 deb -libcom-err2 1.46.5-2ubuntu1.1 deb -libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.15 deb -libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb -libdebconfclient0 0.261ubuntu1 deb -libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb -libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb -libdrm2 2.4.113-2~ubuntu0.22.04.1 deb -libedit2 3.1-20210910-1build1 deb -libexpat1 2.4.7-1ubuntu0.2 deb -libext2fs2 1.46.5-2ubuntu1.1 deb -libffi8 3.4.2-4 deb -libfuse3-3 3.10.5-1build1 deb -libgcc-s1 12.3.0-1ubuntu1~22.04 deb -libgcrypt20 1.9.4-3ubuntu3 deb -libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.2 deb -libgpg-error0 1.43-3 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb -libhogweed6 3.7.3-1build2 deb -libicu70 70.1-2 deb -libidn2-0 2.3.2-2build1 deb -libinih1 53-1ubuntu3 deb -libip4tc2 1.8.7-1ubuntu5.1 deb -libip6tc2 1.8.7-1ubuntu5.1 deb -libjq1 1.6-2.1ubuntu3 deb -libjson-c5 0.15-3~ubuntu1.22.04.2 deb -libk5crypto3 1.19.2-2ubuntu0.2 deb -libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.2 deb -libkrb5support0 1.19.2-2ubuntu0.2 deb -libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.2 deb -libldap-common 2.5.16+dfsg-0ubuntu0.22.04.2 deb -liblz4-1 1.9.3-2build2 deb -liblzma5 5.2.5-2ubuntu1 deb -liblzo2-2 2.10-2build3 deb -libmd0 1.0.4-1build1 deb -libmnl0 1.0.4-3build2 deb -libmount1 2.37.2-4ubuntu3 deb -libmpdec3 2.5.1-2build2 deb -libncurses6 6.3-2ubuntu0.1 deb -libncursesw6 6.3-2ubuntu0.1 deb -libnetfilter-conntrack3 1.0.9-1 deb -libnettle8 3.7.3-1build2 deb -libnfnetlink0 1.0.1-3build3 deb -libnftnl11 1.2.1-1build1 deb -libnghttp2-14 1.43.0-1ubuntu0.1 deb -libnpmaccess 6.0.4 npm -libnpmdiff 4.0.5 npm -libnpmexec 4.0.14 npm -libnpmfund 3.0.5 npm -libnpmhook 8.0.4 npm -libnpmorg 4.0.4 npm -libnpmpack 4.1.3 npm -libnpmpublish 6.0.5 npm -libnpmsearch 5.0.4 npm -libnpmteam 4.0.4 npm -libnpmversion 3.0.7 npm -libnpth0 1.6-3build2 deb -libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.14.5-1 deb -libnvidia-container1 1.14.5-1 deb -libonig5 6.9.7.1-2build1 deb -libp11-kit0 0.24.0-6build1 deb -libpam-modules 1.4.0-11ubuntu2.3 deb -libpam-modules-bin 1.4.0-11ubuntu2.3 deb -libpam-runtime 1.4.0-11ubuntu2.3 deb -libpam0g 1.4.0-11ubuntu2.3 deb -libpcre2-8-0 10.39-3ubuntu0.1 deb -libpcre3 2:8.39-13ubuntu0.22.04.1 deb -libprocps8 2:3.3.17-6ubuntu2 deb -libpsl5 0.21.0-1.2build2 deb -libpython3-stdlib 3.10.6-1~22.04 deb -libpython3.10-minimal 3.10.12-1~22.04.3 deb -libpython3.10-stdlib 3.10.12-1~22.04.3 deb -libreadline8 8.1.2-1 deb -librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb -libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libseccomp2 2.5.3-2ubuntu2 deb -libselinux1 3.3-1build2 deb -libsemanage-common 3.3-1build2 deb -libsemanage2 3.3-1build2 deb -libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3 deb -libsqlite3-0 3.37.2-2ubuntu0.3 deb -libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2ubuntu0.22.04.3 deb -libssl3 3.0.2-0ubuntu1.10 deb -libstdc++6 12.3.0-1ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.9 deb -libtasn1-6 4.18.0-4build1 deb -libtinfo6 6.3-2ubuntu0.1 deb -libtirpc-common 1.3.2-2ubuntu0.1 deb -libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.9 deb -libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3 deb -libxtables12 1.8.7-1ubuntu5.1 deb -libxxhash0 0.8.1-1 deb -libzstd1 1.4.8+dfsg-3build1 deb -locales 2.35-0ubuntu3.6 deb -lodash 4.17.21 npm -login 1:4.8.1-2ubuntu2.1 deb -logsave 1.46.5-2ubuntu1.1 deb -lru-cache 6.0.0 npm -lru-cache 7.13.2 npm -lsb-base 11.1.0ubuntu4 deb -lsb-release 11.1.0ubuntu4 deb -lsof 4.93.2+dfsg-1.1build2 deb -make-fetch-happen 10.2.1 npm -mawk 1.3.4.20200120-3 deb -media-typer 0.3.0 npm -media-types 7.0.0 deb -merge-descriptors 1.0.1 npm -methods 1.1.2 npm -mime 1.6.0 npm -mime-db 1.52.0 npm -mime-types 2.1.35 npm -minimatch 3.1.2 npm -minimatch 5.1.0 npm -minipass 3.3.4 npm -minipass-collect 1.0.2 npm -minipass-fetch 2.1.1 npm -minipass-flush 1.0.5 npm -minipass-json-stream 1.0.1 npm -minipass-pipeline 1.2.4 npm -minipass-sized 1.0.3 npm -minizlib 2.1.2 npm -mkdirp 1.0.4 npm -mkdirp-classic 0.5.3 npm -mkdirp-infer-owner 2.0.0 npm -mount 2.37.2-4ubuntu3 deb -ms 2.0.0 npm -ms 2.1.2 npm -ms 2.1.3 npm -mute-stream 0.0.8 npm -nan 2.18.0 npm -ncurses-base 6.3-2ubuntu0.1 deb -ncurses-bin 6.3-2ubuntu0.1 deb -negotiator 0.6.3 npm -netbase 6.3 deb -netcat 1.218-4ubuntu1 deb -netcat-openbsd 1.218-4ubuntu1 deb -node-gyp 9.1.0 npm -node-pty 0.10.1 npm -nodejs 16.20.2-deb-1nodesource1 deb -nopt 5.0.0 npm -nopt 6.0.0 npm -normalize-package-data 4.0.1 npm -npm 8.19.4 npm -npm-audit-report 3.0.0 npm -npm-bundled 1.1.2 npm -npm-bundled 2.0.1 npm -npm-init 0.0.0 npm -npm-install-checks 5.0.0 npm -npm-normalize-package-bin 1.0.1 npm -npm-normalize-package-bin 2.0.0 npm -npm-package-arg 9.1.0 npm -npm-packlist 5.1.3 npm -npm-pick-manifest 7.0.2 npm -npm-profile 6.2.1 npm -npm-registry-fetch 13.3.1 npm -npm-user-validate 1.0.1 npm -npmlog 6.0.2 npm -nvidia-container-toolkit 1.14.5-1 deb -nvidia-container-toolkit-base 1.14.5-1 deb -nvidia-docker2 2.14.0-1 deb -object-assign 4.1.1 npm -object-inspect 1.13.1 npm -on-finished 2.4.1 npm -once 1.4.0 npm -opener 1.5.2 npm -openssl 3.0.2-0ubuntu1.14 deb -p-map 4.0.0 npm -pacote 13.6.2 npm -parse-conflict-json 2.0.2 npm -parseurl 1.3.3 npm -passwd 1:4.8.1-2ubuntu2.1 deb -path-is-absolute 1.0.1 npm -path-to-regexp 0.1.7 npm -perl-base 5.34.0-3ubuntu1.2 deb -pigz 2.6-1 deb -pinentry-curses 1.1.1-1build2 deb -postcss-selector-parser 6.0.10 npm -proc-log 2.0.1 npm -procps 2:3.3.17-6ubuntu2 deb -promise-all-reject-late 1.0.1 npm -promise-call-limit 1.0.1 npm -promise-inflight 1.0.1 npm -promise-retry 2.0.1 npm -promzard 0.3.0 npm -proxy-addr 2.0.7 npm -publicsuffix 20211207.1025-1 deb -pump 3.0.0 npm -python3 3.10.6-1~22.04 deb -python3-minimal 3.10.6-1~22.04 deb -python3.10 3.10.12-1~22.04.3 deb -python3.10-minimal 3.10.12-1~22.04.3 deb -qrcode-terminal 0.12.0 npm -qs 6.11.0 npm -range-parser 1.2.1 npm -raw-body 2.5.1 npm -read 1.0.7 npm -read-cmd-shim 3.0.0 npm -read-package-json 5.0.2 npm -read-package-json-fast 2.0.3 npm -readable-stream 3.6.0 npm -readable-stream 3.6.2 npm -readdir-scoped-modules 1.1.0 npm -readline-common 8.1.2-1 deb -resenje.org/singleflight v0.4.1 go-module -retry 0.12.0 npm -rimraf 3.0.2 npm -safe-buffer 5.2.1 npm -safer-buffer 2.1.2 npm -sed 4.8-1ubuntu2 deb -semver 7.3.7 npm -send 0.18.0 npm -sensible-utils 0.0.17 deb -serve-static 1.15.0 npm -set-blocking 2.0.0 npm -set-function-length 1.2.1 npm -setprototypeof 1.2.0 npm -side-channel 1.0.5 npm -signal-exit 3.0.7 npm -sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 go-module -sigs.k8s.io/structured-merge-diff/v4 v4.1.2 go-module -sigs.k8s.io/structured-merge-diff/v4 v4.2.3 go-module -sigs.k8s.io/yaml v1.2.0 go-module -sigs.k8s.io/yaml v1.3.0 go-module -smart-buffer 4.2.0 npm -socket.io 4.7.4 npm -socket.io-adapter 2.5.2 npm -socket.io-parser 4.2.4 npm -socks 2.7.0 npm -socks-proxy-agent 7.0.0 npm -spdx-correct 3.1.1 npm -spdx-exceptions 2.3.0 npm -spdx-expression-parse 3.0.1 npm -spdx-license-ids 3.0.11 npm -split-ca 1.0.1 npm -ssh2 1.15.0 npm -ssri 9.0.1 npm -statuses 2.0.1 npm -stdlib go1.18.1 go-module -stdlib go1.20.13 go-module -stdlib go1.20.5 go-module -stdlib go1.21.6 go-module -string-width 4.2.3 npm -string_decoder 1.3.0 npm -strip-ansi 6.0.1 npm -sudo 1.9.9-1ubuntu2.4 deb -supports-color 7.2.0 npm -systeminformation 5.21.24 npm -sysvinit-utils 3.01-1ubuntu1 deb -tags.cncf.io/container-device-interface v0.6.2 go-module -tags.cncf.io/container-device-interface/specs-go v0.6.0 go-module -tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tar 6.1.11 npm -tar-fs 2.0.1 npm -tar-stream 2.2.0 npm -text-table 0.2.0 npm -tiny-relative-date 1.3.0 npm -toidentifier 1.0.1 npm -treeverse 2.0.0 npm -tweetnacl 0.14.5 npm -type-is 1.6.18 npm -tzdata 2023d-0ubuntu0.22.04 deb -ubuntu-keyring 2021.03.26 deb -uidmap 1:4.8.1-2ubuntu2.1 deb -undici-types 5.26.5 npm -unique-filename 2.0.1 npm -unique-slug 3.0.0 npm -unpipe 1.0.0 npm -usrmerge 25ubuntu2 deb -util-deprecate 1.0.2 npm -util-linux 2.37.2-4ubuntu3 deb -utils-merge 1.0.1 npm -validate-npm-package-license 3.0.4 npm -validate-npm-package-name 4.0.0 npm -vary 1.1.2 npm -walk-up-path 1.0.0 npm -wcwidth 1.0.1 npm -which 2.0.2 npm -wide-align 1.1.5 npm -wrappy 1.0.2 npm -write-file-atomic 4.0.2 npm -ws 8.11.0 npm -xfsprogs 5.13.0-1ubuntu2 deb -yallist 4.0.0 npm -zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb +NAME VERSION TYPE +1to2 1.0.0 npm +@balena/dockerignore 1.0.2 npm +@colors/colors 1.5.0 npm +@isaacs/cliui 8.0.2 npm +@isaacs/string-locale-compare 1.1.0 npm +@npmcli/agent 2.2.0 npm +@npmcli/arborist 7.2.1 npm +@npmcli/config 8.0.1 npm +@npmcli/disparity-colors 3.0.0 npm +@npmcli/fs 3.1.0 npm +@npmcli/git 5.0.3 npm +@npmcli/installed-package-contents 2.0.2 npm +@npmcli/map-workspaces 3.0.4 npm +@npmcli/metavuln-calculator 7.0.0 npm +@npmcli/name-from-folder 2.0.0 npm +@npmcli/node-gyp 3.0.0 npm +@npmcli/package-json 5.0.0 npm +@npmcli/promise-spawn 7.0.0 npm +@npmcli/query 3.0.1 npm +@npmcli/run-script 7.0.2 npm +@pkgjs/parseargs 0.11.0 npm +@sigstore/bundle 2.1.0 npm +@sigstore/protobuf-specs 0.2.1 npm +@sigstore/sign 2.1.0 npm +@sigstore/tuf 2.1.0 npm +@socket.io/component-emitter 3.1.0 npm +@tufjs/canonical-json 2.0.0 npm +@tufjs/models 2.0.0 npm +@types/cookie 0.4.1 npm +@types/cors 2.8.17 npm +@types/node 20.11.16 npm +abbrev 2.0.0 npm +abort-controller 3.0.0 npm +accepts 1.3.8 npm +adduser 3.118ubuntu5 deb +agent-base 7.1.0 npm +aggregate-error 3.1.0 npm +ansi-regex 5.0.1 npm +ansi-regex 6.0.1 npm +ansi-styles 4.3.0 npm +ansi-styles 6.2.1 npm +aproba 2.0.0 npm +apt 2.4.11 deb +apt-transport-https 2.4.11 deb +apt-utils 2.4.11 deb +archy 1.0.0 npm +are-we-there-yet 4.0.1 npm +argparse 2.0.1 npm +array-flatten 1.1.1 npm +asn1 0.2.6 npm +balanced-match 1.0.2 npm +base-files 12ubuntu4.3 deb +base-passwd 3.5.52build1 deb +base64-js 1.5.1 npm +base64id 2.0.0 npm +bash 5.1-6ubuntu1 deb +bash 5.1.16 binary +bcrypt-pbkdf 1.0.2 npm +bin-links 4.0.3 npm +binary-extensions 2.2.0 npm +bl 4.1.0 npm +body-parser 1.20.1 npm +brace-expansion 2.0.1 npm +bsdutils 1:2.37.2-4ubuntu3 deb +btrfs-progs 5.16.2-1 deb +buffer 5.7.1 npm +buffer 6.0.3 npm +buildcheck 0.0.6 npm +builtins 5.0.1 npm +bytes 3.1.2 npm +ca-certificates 20230311ubuntu0.22.04.1 deb +cacache 18.0.0 npm +call-bind 1.0.6 npm +chalk 5.3.0 npm +chownr 1.1.4 npm +chownr 2.0.0 npm +ci-info 3.9.0 npm +cidr-regex 3.1.1 npm +clean-stack 2.2.0 npm +cli-columns 4.0.0 npm +cli-table3 0.6.3 npm +clone 1.0.4 npm +cloud.google.com/go/compute/metadata v0.2.3 go-module +cloud.google.com/go/logging v1.7.0 go-module +cloud.google.com/go/longrunning v0.5.1 go-module +cmd-shim 6.0.2 npm +code.cloudfoundry.org/clock v1.1.0 go-module +color-convert 2.0.1 npm +color-name 1.1.4 npm +color-support 1.1.3 npm +columnify 1.6.0 npm +common-ancestor-path 1.0.1 npm +console-control-strings 1.1.0 npm +containerd.io 1.6.28-1 deb +content-disposition 0.5.4 npm +content-type 1.0.5 npm +cookie 0.4.2 npm +cookie 0.5.0 npm +cookie-signature 1.0.6 npm +corepack 0.22.0 npm +coreutils 8.32-4.1ubuntu1 deb +cors 2.8.5 npm +cpu-features 0.0.9 npm +cron 3.0pl1-137ubuntu3 deb +cross-spawn 7.0.3 npm +cssesc 3.0.0 npm +curl 7.81.0-1ubuntu1.15 deb +dario.cat/mergo v1.0.0 go-module +dash 0.5.11+git20210903+057cd650a4ed-3build1 deb +debconf 1.5.79ubuntu1 deb +debianutils 5.5-1ubuntu2 deb +debug 2.6.9 npm +debug 4.3.4 npm +defaults 1.0.4 npm +define-data-property 1.1.2 npm +delegates 1.0.0 npm +depd 2.0.0 npm +destroy 1.2.0 npm +diff 5.1.0 npm +diffutils 1:3.8-0ubuntu2 deb +dirmngr 2.2.27-3ubuntu2.1 deb +docker-ce 5:25.0.3-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:25.0.3-1~ubuntu.22.04~jammy deb +docker-modem 3.0.8 npm +dockerode 3.3.5 npm +dpkg 1.21.1ubuntu2.2 deb +drm-info 2.2.0-2 deb +e2fsprogs 1.46.5-2ubuntu1.1 deb +eastasianwidth 0.2.0 npm +ee-first 1.1.1 npm +emoji-regex 8.0.0 npm +emoji-regex 9.2.2 npm +encodeurl 1.0.2 npm +encoding 0.1.13 npm +end-of-stream 1.4.4 npm +engine.io 6.5.4 npm +engine.io-parser 5.2.2 npm +env-paths 2.2.1 npm +err-code 2.0.3 npm +es-errors 1.3.0 npm +escape-html 1.0.3 npm +etag 1.8.1 npm +event-target-shim 5.0.1 npm +events 3.3.0 npm +exponential-backoff 3.1.1 npm +express 4.18.2 npm +fastest-levenshtein 1.0.16 npm +finalhandler 1.2.0 npm +findutils 4.8.0-1ubuntu3 deb +foreground-child 3.1.1 npm +forwarded 0.2.0 npm +fresh 0.5.2 npm +fs-constants 1.0.0 npm +fs-minipass 2.1.0 npm +fs-minipass 3.0.3 npm +function-bind 1.1.1 npm +function-bind 1.1.2 npm +fuse-overlayfs 1.7.1-1 deb +fuse3 3.10.5-1build1 deb +gauge 5.0.1 npm +gcc-12-base 12.3.0-1ubuntu1~22.04 deb +get-intrinsic 1.2.4 npm +github.com/AlecAivazis/survey/v2 v2.3.2 go-module +github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module +github.com/Masterminds/semver v1.5.0 go-module +github.com/Microsoft/hcsshim v0.11.4 go-module +github.com/Microsoft/hcsshim v0.9.10 go-module +github.com/NVIDIA/go-nvml v0.12.0-1 go-module +github.com/NVIDIA/nvidia-container-toolkit v1.14.5 go-module +github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module +github.com/a8m/envsubst v1.3.0 go-module +github.com/agext/levenshtein v1.2.3 go-module +github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412 go-module +github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092 go-module +github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 go-module +github.com/armon/go-metrics v0.4.1 go-module +github.com/aws/aws-sdk-go-v2 v1.17.6 go-module +github.com/aws/aws-sdk-go-v2/config v1.18.16 go-module +github.com/aws/aws-sdk-go-v2/credentials v1.13.16 go-module +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.24 go-module +github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.30 go-module +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.24 go-module +github.com/aws/aws-sdk-go-v2/internal/ini v1.3.31 go-module +github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.15.17 go-module +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.24 go-module +github.com/aws/aws-sdk-go-v2/service/sso v1.12.5 go-module +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.5 go-module +github.com/aws/aws-sdk-go-v2/service/sts v1.18.6 go-module +github.com/aws/smithy-go v1.13.5 go-module +github.com/beorn7/perks v1.0.1 go-module +github.com/blang/semver v3.5.1+incompatible go-module +github.com/buger/goterm v1.0.4 go-module +github.com/cenkalti/backoff/v4 v4.1.2 go-module +github.com/cenkalti/backoff/v4 v4.2.1 go-module +github.com/cespare/xxhash/v2 v2.1.2 go-module +github.com/cespare/xxhash/v2 v2.2.0 go-module +github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module +github.com/cilium/ebpf v0.11.0 go-module +github.com/cilium/ebpf v0.7.0 go-module +github.com/cloudflare/cfssl v1.6.4 go-module +github.com/cnabio/cnab-go v0.10.0-beta1 go-module +github.com/cnabio/cnab-to-oci v0.3.1-beta1 go-module +github.com/compose-spec/compose-go v1.2.4 go-module +github.com/container-storage-interface/spec v1.5.0 go-module +github.com/containerd/aufs v1.0.0 go-module +github.com/containerd/btrfs v1.0.0 go-module +github.com/containerd/cgroups v1.0.4 go-module +github.com/containerd/cgroups/v3 v3.0.3 go-module +github.com/containerd/console v1.0.3 go-module +github.com/containerd/containerd v1.6.2 go-module +github.com/containerd/containerd v1.6.28 go-module +github.com/containerd/containerd v1.7.12 go-module +github.com/containerd/continuity v0.2.2 go-module +github.com/containerd/continuity v0.3.0 go-module +github.com/containerd/continuity v0.4.2 go-module +github.com/containerd/fifo v1.0.0 go-module +github.com/containerd/fifo v1.1.0 go-module +github.com/containerd/go-cni v1.1.6 go-module +github.com/containerd/go-cni v1.1.9 go-module +github.com/containerd/go-runc v1.0.0 go-module +github.com/containerd/go-runc v1.1.0 go-module +github.com/containerd/imgcrypt v1.1.4 go-module +github.com/containerd/log v0.1.0 go-module +github.com/containerd/nri v0.1.1 go-module +github.com/containerd/nydus-snapshotter v0.8.2 go-module +github.com/containerd/stargz-snapshotter/estargz v0.14.3 go-module +github.com/containerd/ttrpc v1.1.0 go-module +github.com/containerd/ttrpc v1.1.2 go-module +github.com/containerd/ttrpc v1.2.2 go-module +github.com/containerd/typeurl v1.0.2 go-module +github.com/containerd/typeurl/v2 v2.1.1 go-module +github.com/containerd/zfs v1.1.0 go-module +github.com/containernetworking/cni v1.1.1 go-module +github.com/containernetworking/cni v1.1.2 go-module +github.com/containernetworking/plugins v1.1.1 go-module +github.com/containers/ocicrypt v1.1.3 go-module +github.com/coreos/go-systemd/v22 v22.3.2 go-module +github.com/coreos/go-systemd/v22 v22.5.0 go-module +github.com/cpuguy83/go-md2man/v2 v2.0.0 go-module +github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module +github.com/cpuguy83/go-md2man/v2 v2.0.2 go-module +github.com/cyphar/filepath-securejoin v0.2.4 go-module +github.com/davecgh/go-spew v1.1.1 go-module +github.com/deckarep/golang-set/v2 v2.3.0 go-module +github.com/dimchansky/utfbom v1.1.1 go-module +github.com/distribution/distribution/v3 v3.0.0-20210316161203-a01c71e2477e go-module +github.com/distribution/reference v0.5.0 go-module +github.com/docker/buildx v0.8.1 go-module +github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module +github.com/docker/cli/cmd/docker v25.0.3 go-module +github.com/docker/compose/v2 (devel) go-module +github.com/docker/distribution v2.8.0+incompatible go-module +github.com/docker/distribution v2.8.3+incompatible go-module +github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module +github.com/docker/docker v25.0.3 go-module +github.com/docker/docker-credential-helpers v0.6.4 go-module +github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module +github.com/docker/go-connections v0.4.0 go-module +github.com/docker/go-connections v0.5.0 go-module +github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module +github.com/docker/go-metrics v0.0.1 go-module +github.com/docker/go-units v0.4.0 go-module +github.com/docker/go-units v0.5.0 go-module +github.com/docker/libtrust v0.0.0-20150526203908-9cbd2a1374f4 go-module +github.com/dustin/go-humanize v1.0.0 go-module +github.com/elliotchance/orderedmap v1.4.0 go-module +github.com/emicklei/go-restful v2.16.0+incompatible go-module +github.com/emicklei/go-restful/v3 v3.10.1 go-module +github.com/fatih/color v1.13.0 go-module +github.com/felixge/httpsnoop v1.0.2 go-module +github.com/felixge/httpsnoop v1.0.4 go-module +github.com/fernet/fernet-go v0.0.0-20211208181803-9f70042a33ee go-module +github.com/fluent/fluent-logger-golang v1.9.0 go-module +github.com/fsnotify/fsnotify v1.4.9 go-module +github.com/fsnotify/fsnotify v1.5.4 go-module +github.com/fsnotify/fsnotify v1.6.0 go-module +github.com/fvbommel/sortorder v1.0.1 go-module +github.com/go-logr/logr v1.2.2 go-module +github.com/go-logr/logr v1.2.4 go-module +github.com/go-logr/logr v1.3.0 go-module +github.com/go-logr/stdr v1.2.2 go-module +github.com/goccy/go-yaml v1.9.5 go-module +github.com/godbus/dbus/v5 v5.0.6 go-module +github.com/godbus/dbus/v5 v5.1.0 go-module +github.com/gofrs/flock v0.8.0 go-module +github.com/gofrs/flock v0.8.1 go-module +github.com/gogo/googleapis v1.3.2 go-module +github.com/gogo/googleapis v1.4.1 go-module +github.com/gogo/protobuf v1.3.2 go-module +github.com/golang-jwt/jwt/v4 v4.4.2 go-module +github.com/golang/gddo v0.0.0-20190904175337-72a348e765d2 go-module +github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da go-module +github.com/golang/mock v1.6.0 go-module +github.com/golang/protobuf v1.5.2 go-module +github.com/golang/protobuf v1.5.3 go-module +github.com/google/btree v1.1.2 go-module +github.com/google/certificate-transparency-go v1.1.4 go-module +github.com/google/go-cmp v0.5.7 go-module +github.com/google/go-cmp v0.6.0 go-module +github.com/google/gofuzz v1.2.0 go-module +github.com/google/s2a-go v0.1.4 go-module +github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module +github.com/google/uuid v1.3.1 go-module +github.com/google/uuid v1.5.0 go-module +github.com/googleapis/enterprise-certificate-proxy v0.2.3 go-module +github.com/googleapis/gax-go/v2 v2.11.0 go-module +github.com/gorilla/mux v1.8.0 go-module +github.com/gorilla/mux v1.8.1 go-module +github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module +github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module +github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module +github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 go-module +github.com/hashicorp/errwrap v1.1.0 go-module +github.com/hashicorp/go-immutable-radix v1.3.1 go-module +github.com/hashicorp/go-memdb v1.3.2 go-module +github.com/hashicorp/go-msgpack v0.5.5 go-module +github.com/hashicorp/go-multierror v1.1.1 go-module +github.com/hashicorp/go-sockaddr v1.0.2 go-module +github.com/hashicorp/go-version v1.3.0 go-module +github.com/hashicorp/golang-lru v0.5.4 go-module +github.com/hashicorp/memberlist v0.4.0 go-module +github.com/hashicorp/serf v0.8.5 go-module +github.com/imdario/mergo v0.3.12 go-module +github.com/in-toto/in-toto-golang v0.5.0 go-module +github.com/intel/goresctrl v0.2.0 go-module +github.com/ishidawataru/sctp v0.0.0-20230406120618-7ff4192f6ff2 go-module +github.com/jinzhu/copier v0.3.5 go-module +github.com/jmoiron/sqlx v1.3.3 go-module +github.com/json-iterator/go v1.1.12 go-module +github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module +github.com/klauspost/compress v1.15.0 go-module +github.com/klauspost/compress v1.15.9 go-module +github.com/klauspost/compress v1.17.4 go-module +github.com/magiconair/properties v1.8.6 go-module +github.com/mattn/go-colorable v0.1.12 go-module +github.com/mattn/go-isatty v0.0.14 go-module +github.com/mattn/go-shellwords v1.0.12 go-module +github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 go-module +github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module +github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module +github.com/miekg/dns v1.1.43 go-module +github.com/miekg/pkcs11 v1.1.1 go-module +github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module +github.com/mistifyio/go-zfs/v3 v3.0.1 go-module +github.com/mitchellh/copystructure v1.2.0 go-module +github.com/mitchellh/hashstructure/v2 v2.0.2 go-module +github.com/mitchellh/mapstructure v1.4.3 go-module +github.com/mitchellh/reflectwalk v1.0.2 go-module +github.com/moby/buildkit v0.10.0-rc2.0.20220308185020-fdecd0ae108b go-module +github.com/moby/buildkit v0.12.5 go-module +github.com/moby/ipvs v1.1.0 go-module +github.com/moby/locker v1.0.1 go-module +github.com/moby/patternmatcher v0.6.0 go-module +github.com/moby/pubsub v1.0.0 go-module +github.com/moby/spdystream v0.2.0 go-module +github.com/moby/swarmkit/v2 v2.0.0-20240125134710-dcda100a8261 go-module +github.com/moby/sys/mount v0.3.3 go-module +github.com/moby/sys/mountinfo v0.5.0 go-module +github.com/moby/sys/mountinfo v0.6.2 go-module +github.com/moby/sys/mountinfo v0.7.1 go-module +github.com/moby/sys/sequential v0.5.0 go-module +github.com/moby/sys/signal v0.6.0 go-module +github.com/moby/sys/signal v0.7.0 go-module +github.com/moby/sys/symlink v0.2.0 go-module +github.com/moby/sys/user v0.1.0 go-module +github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 go-module +github.com/moby/term v0.5.0 go-module +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module +github.com/modern-go/reflect2 v1.0.2 go-module +github.com/morikuni/aec v1.0.0 go-module +github.com/mrunalp/fileutils v0.5.1 go-module +github.com/opencontainers/go-digest v1.0.0 go-module +github.com/opencontainers/image-spec v1.0.2 go-module +github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module +github.com/opencontainers/image-spec v1.1.0-rc5 go-module +github.com/opencontainers/runc v0.0.0-20240123131248-51d5e94601ce go-module +github.com/opencontainers/runc v1.1.0 go-module +github.com/opencontainers/runc v1.1.12 go-module +github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module +github.com/opencontainers/runtime-spec v1.1.0 go-module +github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module +github.com/opencontainers/selinux v1.10.0 go-module +github.com/opencontainers/selinux v1.10.1 go-module +github.com/opencontainers/selinux v1.11.0 go-module +github.com/package-url/packageurl-go v0.1.1-0.20220428063043-89078438f170 go-module +github.com/pelletier/go-toml v1.9.4 go-module +github.com/pelletier/go-toml v1.9.5 go-module +github.com/philhofer/fwd v1.1.2 go-module +github.com/pkg/errors v0.9.1 go-module +github.com/prometheus/client_golang v1.11.1 go-module +github.com/prometheus/client_golang v1.12.1 go-module +github.com/prometheus/client_golang v1.14.0 go-module +github.com/prometheus/client_model v0.2.0 go-module +github.com/prometheus/client_model v0.3.0 go-module +github.com/prometheus/common v0.30.0 go-module +github.com/prometheus/common v0.32.1 go-module +github.com/prometheus/common v0.42.0 go-module +github.com/prometheus/procfs v0.7.3 go-module +github.com/prometheus/procfs v0.9.0 go-module +github.com/qri-io/jsonpointer v0.1.0 go-module +github.com/qri-io/jsonschema v0.1.1 go-module +github.com/rootless-containers/rootlesskit/v2 v2.0.0 go-module +github.com/russross/blackfriday/v2 v2.0.1 go-module +github.com/russross/blackfriday/v2 v2.1.0 go-module +github.com/sanathkr/go-yaml v0.0.0-20170819195128-ed9d249f429b go-module +github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 go-module +github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 go-module +github.com/secure-systems-lab/go-securesystemslib v0.4.0 go-module +github.com/shibumi/go-pathspec v1.3.0 go-module +github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module +github.com/sirupsen/logrus v1.8.1 go-module +github.com/sirupsen/logrus v1.9.0 go-module +github.com/sirupsen/logrus v1.9.3 go-module +github.com/spdx/tools-golang v0.5.1 go-module +github.com/spf13/cobra v1.4.0 go-module +github.com/spf13/cobra v1.8.0 go-module +github.com/spf13/pflag v1.0.5 go-module +github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 go-module +github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module +github.com/tchap/go-patricia v2.2.6+incompatible go-module +github.com/theupdateframework/notary v0.6.1 go-module +github.com/timtadh/data-structures v0.5.3 go-module +github.com/timtadh/lexmachine v0.2.2 go-module +github.com/tinylib/msgp v1.1.8 go-module +github.com/tonistiigi/fsutil v0.0.0-20220315205639-9ed612626da3 go-module +github.com/tonistiigi/fsutil v0.0.0-20230629203738-36ef4d8c0dbb go-module +github.com/tonistiigi/go-actions-cache v0.0.0-20220404170428-0bdeb6e1eac7 go-module +github.com/tonistiigi/go-archvariant v1.0.0 go-module +github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module +github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f go-module +github.com/urfave/cli v1.22.1 go-module +github.com/urfave/cli/v2 v2.3.0 go-module +github.com/vbatts/tar-split v0.11.5 go-module +github.com/vishvananda/netlink v1.1.0 go-module +github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5 go-module +github.com/vishvananda/netlink v1.2.1-beta.2 go-module +github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df go-module +github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f go-module +github.com/vishvananda/netns v0.0.4 go-module +github.com/weppos/publicsuffix-go v0.15.1-0.20210511084619-b1f36a2d6c0b go-module +github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb go-module +github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module +github.com/xeipuuv/gojsonschema v1.2.0 go-module +github.com/zmap/zcrypto v0.0.0-20210511125630-18f1e0152cfc go-module +github.com/zmap/zlint/v3 v3.1.0 go-module +gitlab.com/nvidia/cloud-native/go-nvlib v0.0.0-20230818092907-09424fdc8884 go-module +glob 10.3.10 npm +gnupg 2.2.27-3ubuntu2.1 deb +gnupg-l10n 2.2.27-3ubuntu2.1 deb +gnupg-utils 2.2.27-3ubuntu2.1 deb +go.etcd.io/bbolt v1.3.7 go-module +go.etcd.io/etcd/client/pkg/v3 v3.5.6 go-module +go.etcd.io/etcd/pkg/v3 v3.5.6 go-module +go.etcd.io/etcd/raft/v3 v3.5.6 go-module +go.etcd.io/etcd/server/v3 v3.5.6 go-module +go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module +go.opencensus.io v0.24.0 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.29.0 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.45.0 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.29.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.45.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.29.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 go-module +go.opentelemetry.io/otel v1.19.0 go-module +go.opentelemetry.io/otel v1.21.0 go-module +go.opentelemetry.io/otel v1.4.1 go-module +go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.4.1 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.19.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.19.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.3.0 go-module +go.opentelemetry.io/otel/internal/metric v0.27.0 go-module +go.opentelemetry.io/otel/metric v0.27.0 go-module +go.opentelemetry.io/otel/metric v1.19.0 go-module +go.opentelemetry.io/otel/metric v1.21.0 go-module +go.opentelemetry.io/otel/sdk v1.19.0 go-module +go.opentelemetry.io/otel/sdk v1.21.0 go-module +go.opentelemetry.io/otel/sdk v1.4.1 go-module +go.opentelemetry.io/otel/trace v1.19.0 go-module +go.opentelemetry.io/otel/trace v1.21.0 go-module +go.opentelemetry.io/otel/trace v1.4.1 go-module +go.opentelemetry.io/proto/otlp v0.11.0 go-module +go.opentelemetry.io/proto/otlp v0.12.0 go-module +go.opentelemetry.io/proto/otlp v1.0.0 go-module +go.uber.org/atomic v1.9.0 go-module +go.uber.org/multierr v1.8.0 go-module +go.uber.org/zap v1.21.0 go-module +golang.org/x/crypto v0.0.0-20211202192323-5770296d904e go-module +golang.org/x/crypto v0.17.0 go-module +golang.org/x/crypto v0.18.0 go-module +golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 go-module +golang.org/x/mod v0.11.0 go-module +golang.org/x/mod v0.5.0 go-module +golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module +golang.org/x/net v0.0.0-20211216030914-fe4d6282115f go-module +golang.org/x/net v0.17.0 go-module +golang.org/x/net v0.18.0 go-module +golang.org/x/net v0.8.0 go-module +golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 go-module +golang.org/x/oauth2 v0.10.0 go-module +golang.org/x/oauth2 v0.11.0 go-module +golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module +golang.org/x/sync v0.3.0 go-module +golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module +golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module +golang.org/x/sys v0.16.0 go-module +golang.org/x/sys v0.6.0 go-module +golang.org/x/sys v0.7.0 go-module +golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module +golang.org/x/term v0.16.0 go-module +golang.org/x/text v0.14.0 go-module +golang.org/x/text v0.3.7 go-module +golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module +golang.org/x/time v0.3.0 go-module +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module +google.golang.org/api v0.126.0 go-module +google.golang.org/appengine v1.6.7 go-module +google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63 go-module +google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa go-module +google.golang.org/genproto v0.0.0-20230711160842-782d3b101e98 go-module +google.golang.org/genproto/googleapis/api v0.0.0-20230711160842-782d3b101e98 go-module +google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 go-module +google.golang.org/grpc v1.44.0 go-module +google.golang.org/grpc v1.58.3 go-module +google.golang.org/grpc v1.59.0 go-module +google.golang.org/protobuf v1.27.1 go-module +google.golang.org/protobuf v1.31.0 go-module +gopd 1.0.1 npm +gopkg.in/inf.v0 v0.9.1 go-module +gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module +gopkg.in/square/go-jose.v2 v2.5.1 go-module +gopkg.in/yaml.v2 v2.4.0 go-module +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b go-module +gpg 2.2.27-3ubuntu2.1 deb +gpg-agent 2.2.27-3ubuntu2.1 deb +gpg-wks-client 2.2.27-3ubuntu2.1 deb +gpg-wks-server 2.2.27-3ubuntu2.1 deb +gpgconf 2.2.27-3ubuntu2.1 deb +gpgsm 2.2.27-3ubuntu2.1 deb +gpgv 2.2.27-3ubuntu2.1 deb +graceful-fs 4.2.11 npm +grep 3.7-1build1 deb +gzip 1.10-4ubuntu4.1 deb +has 1.0.3 npm +has-property-descriptors 1.0.1 npm +has-proto 1.0.1 npm +has-symbols 1.0.3 npm +has-unicode 2.0.1 npm +hasown 2.0.0 npm +hosted-git-info 7.0.1 npm +hostname 3.23ubuntu2 deb +http-cache-semantics 4.1.1 npm +http-errors 2.0.0 npm +http-proxy-agent 7.0.0 npm +https-proxy-agent 7.0.2 npm +iconv-lite 0.4.24 npm +iconv-lite 0.6.3 npm +ieee754 1.2.1 npm +ignore-walk 6.0.3 npm +imurmurhash 0.1.4 npm +indent-string 4.0.0 npm +inherits 2.0.4 npm +ini 4.1.1 npm +init-package-json 6.0.0 npm +init-system-helpers 1.62 deb +ip 2.0.0 npm +ip-regex 4.3.0 npm +ipaddr.js 1.9.1 npm +iptables 1.8.7-1ubuntu5.1 deb +is-cidr 4.0.2 npm +is-core-module 2.13.0 npm +is-fullwidth-code-point 3.0.0 npm +is-lambda 1.0.1 npm +isexe 2.0.0 npm +isexe 3.1.1 npm +jackspeak 2.3.6 npm +jq 1.6-2.1ubuntu3 deb +js-yaml 4.1.0 npm +json-parse-even-better-errors 3.0.0 npm +json-stringify-nice 1.1.4 npm +jsonparse 1.3.1 npm +just-diff 6.0.2 npm +just-diff-apply 5.5.0 npm +k8s.io/api v0.22.5 go-module +k8s.io/apimachinery v0.22.4 go-module +k8s.io/apimachinery v0.22.5 go-module +k8s.io/apiserver v0.22.5 go-module +k8s.io/client-go v0.22.4 go-module +k8s.io/client-go v0.22.5 go-module +k8s.io/component-base v0.22.5 go-module +k8s.io/cri-api v0.25.0 go-module +k8s.io/klog/v2 v2.30.0 go-module +k8s.io/klog/v2 v2.90.1 go-module +k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b go-module +k8s.io/utils v0.0.0-20211116205334-6203023598ed go-module +kasm-wizard 0.0.1 npm +libacl1 2.3.1-1 deb +libapt-pkg6.0 2.4.11 deb +libassuan0 2.5.5-1build1 deb +libattr1 1:2.5.1-1build1 deb +libaudit-common 1:3.0.7-1build1 deb +libaudit1 1:3.0.7-1build1 deb +libblkid1 2.37.2-4ubuntu3 deb +libbrotli1 1.0.9-2build6 deb +libbsd0 0.11.5-1 deb +libbz2-1.0 1.0.8-5build1 deb +libc-bin 2.35-0ubuntu3.1 deb +libc6 2.35-0ubuntu3.6 deb +libcap-ng0 0.7.9-2.2build3 deb +libcap2 1:2.44-1ubuntu0.22.04.1 deb +libcom-err2 1.46.5-2ubuntu1.1 deb +libcrypt1 1:4.4.27-1 deb +libcurl4 7.81.0-1ubuntu1.15 deb +libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb +libdebconfclient0 0.261ubuntu1 deb +libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb +libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb +libdrm2 2.4.113-2~ubuntu0.22.04.1 deb +libedit2 3.1-20210910-1build1 deb +libexpat1 2.4.7-1ubuntu0.2 deb +libext2fs2 1.46.5-2ubuntu1.1 deb +libffi8 3.4.2-4 deb +libfuse3-3 3.10.5-1build1 deb +libgcc-s1 12.3.0-1ubuntu1~22.04 deb +libgcrypt20 1.9.4-3ubuntu3 deb +libgmp10 2:6.2.1+dfsg-3ubuntu1 deb +libgnutls30 3.7.3-4ubuntu1.2 deb +libgpg-error0 1.43-3 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb +libhogweed6 3.7.3-1build2 deb +libicu70 70.1-2 deb +libidn2-0 2.3.2-2build1 deb +libinih1 53-1ubuntu3 deb +libip4tc2 1.8.7-1ubuntu5.1 deb +libip6tc2 1.8.7-1ubuntu5.1 deb +libjq1 1.6-2.1ubuntu3 deb +libjson-c5 0.15-3~ubuntu1.22.04.2 deb +libk5crypto3 1.19.2-2ubuntu0.2 deb +libkeyutils1 1.6.1-2ubuntu3 deb +libkrb5-3 1.19.2-2ubuntu0.2 deb +libkrb5support0 1.19.2-2ubuntu0.2 deb +libksba8 1.6.0-2ubuntu0.2 deb +libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.2 deb +libldap-common 2.5.16+dfsg-0ubuntu0.22.04.2 deb +liblz4-1 1.9.3-2build2 deb +liblzma5 5.2.5-2ubuntu1 deb +liblzo2-2 2.10-2build3 deb +libmd0 1.0.4-1build1 deb +libmnl0 1.0.4-3build2 deb +libmount1 2.37.2-4ubuntu3 deb +libmpdec3 2.5.1-2build2 deb +libncurses6 6.3-2ubuntu0.1 deb +libncursesw6 6.3-2ubuntu0.1 deb +libnetfilter-conntrack3 1.0.9-1 deb +libnettle8 3.7.3-1build2 deb +libnfnetlink0 1.0.1-3build3 deb +libnftnl11 1.2.1-1build1 deb +libnghttp2-14 1.43.0-1ubuntu0.1 deb +libnpmaccess 8.0.1 npm +libnpmdiff 6.0.3 npm +libnpmexec 7.0.3 npm +libnpmfund 5.0.1 npm +libnpmhook 10.0.0 npm +libnpmorg 6.0.1 npm +libnpmpack 6.0.3 npm +libnpmpublish 9.0.1 npm +libnpmsearch 7.0.0 npm +libnpmteam 6.0.0 npm +libnpmversion 5.0.1 npm +libnpth0 1.6-3build2 deb +libnsl2 1.3.0-2build2 deb +libnvidia-container-tools 1.14.5-1 deb +libnvidia-container1 1.14.5-1 deb +libonig5 6.9.7.1-2build1 deb +libp11-kit0 0.24.0-6build1 deb +libpam-modules 1.4.0-11ubuntu2.3 deb +libpam-modules-bin 1.4.0-11ubuntu2.3 deb +libpam-runtime 1.4.0-11ubuntu2.3 deb +libpam0g 1.4.0-11ubuntu2.3 deb +libpcre2-8-0 10.39-3ubuntu0.1 deb +libpcre3 2:8.39-13ubuntu0.22.04.1 deb +libprocps8 2:3.3.17-6ubuntu2 deb +libpsl5 0.21.0-1.2build2 deb +libpython3-stdlib 3.10.6-1~22.04 deb +libpython3.10-minimal 3.10.12-1~22.04.3 deb +libpython3.10-stdlib 3.10.12-1~22.04.3 deb +libreadline8 8.1.2-1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb +libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb +libseccomp2 2.5.3-2ubuntu2 deb +libselinux1 3.3-1build2 deb +libsemanage-common 3.3-1build2 deb +libsemanage2 3.3-1build2 deb +libsepol2 3.3-1build1 deb +libsmartcols1 2.37.2-4ubuntu3 deb +libsqlite3-0 3.37.2-2ubuntu0.3 deb +libss2 1.46.5-2ubuntu1.1 deb +libssh-4 0.9.6-2ubuntu0.22.04.3 deb +libssl3 3.0.2-0ubuntu1.10 deb +libstdc++6 12.3.0-1ubuntu1~22.04 deb +libsystemd0 249.11-0ubuntu3.9 deb +libtasn1-6 4.18.0-4build1 deb +libtinfo6 6.3-2ubuntu0.1 deb +libtirpc-common 1.3.2-2ubuntu0.1 deb +libtirpc3 1.3.2-2ubuntu0.1 deb +libudev1 249.11-0ubuntu3.9 deb +libunistring2 1.0-1 deb +libuuid1 2.37.2-4ubuntu3 deb +libxtables12 1.8.7-1ubuntu5.1 deb +libxxhash0 0.8.1-1 deb +libzstd1 1.4.8+dfsg-3build1 deb +locales 2.35-0ubuntu3.6 deb +lodash 4.17.21 npm +login 1:4.8.1-2ubuntu2.1 deb +logsave 1.46.5-2ubuntu1.1 deb +lru-cache 10.0.1 npm +lru-cache 6.0.0 npm +lsb-base 11.1.0ubuntu4 deb +lsof 4.93.2+dfsg-1.1build2 deb +make-fetch-happen 13.0.0 npm +mawk 1.3.4.20200120-3 deb +media-typer 0.3.0 npm +media-types 7.0.0 deb +merge-descriptors 1.0.1 npm +methods 1.1.2 npm +mime 1.6.0 npm +mime-db 1.52.0 npm +mime-types 2.1.35 npm +minimatch 9.0.3 npm +minipass 3.3.6 npm +minipass 5.0.0 npm +minipass 7.0.4 npm +minipass-collect 1.0.2 npm +minipass-fetch 3.0.4 npm +minipass-flush 1.0.5 npm +minipass-json-stream 1.0.1 npm +minipass-pipeline 1.2.4 npm +minipass-sized 1.0.3 npm +minizlib 2.1.2 npm +mkdirp 1.0.4 npm +mkdirp-classic 0.5.3 npm +mount 2.37.2-4ubuntu3 deb +ms 2.0.0 npm +ms 2.1.2 npm +ms 2.1.3 npm +mute-stream 1.0.0 npm +nan 2.18.0 npm +ncurses-base 6.3-2ubuntu0.1 deb +ncurses-bin 6.3-2ubuntu0.1 deb +negotiator 0.6.3 npm +netbase 6.3 deb +netcat 1.218-4ubuntu1 deb +netcat-openbsd 1.218-4ubuntu1 deb +node-gyp 10.0.1 npm +node-pty 0.10.1 npm +nodejs 18.19.0-1nodesource1 deb +nopt 7.2.0 npm +normalize-package-data 6.0.0 npm +npm 10.2.3 npm +npm-audit-report 5.0.0 npm +npm-bundled 3.0.0 npm +npm-install-checks 6.3.0 npm +npm-normalize-package-bin 3.0.1 npm +npm-package-arg 11.0.1 npm +npm-packlist 8.0.0 npm +npm-pick-manifest 9.0.0 npm +npm-profile 9.0.0 npm +npm-registry-fetch 16.1.0 npm +npm-user-validate 2.0.0 npm +npmlog 7.0.1 npm +nvidia-container-toolkit 1.14.5-1 deb +nvidia-container-toolkit-base 1.14.5-1 deb +nvidia-docker2 2.14.0-1 deb +object-assign 4.1.1 npm +object-inspect 1.13.1 npm +on-finished 2.4.1 npm +once 1.4.0 npm +openssl 3.0.2-0ubuntu1.14 deb +p-map 4.0.0 npm +pacote 17.0.4 npm +parse-conflict-json 3.0.1 npm +parseurl 1.3.3 npm +passwd 1:4.8.1-2ubuntu2.1 deb +path-key 3.1.1 npm +path-scurry 1.10.1 npm +path-to-regexp 0.1.7 npm +perl-base 5.34.0-3ubuntu1.2 deb +pigz 2.6-1 deb +pinentry-curses 1.1.1-1build2 deb +postcss-selector-parser 6.0.13 npm +proc-log 3.0.0 npm +process 0.11.10 npm +procps 2:3.3.17-6ubuntu2 deb +promise-all-reject-late 1.0.1 npm +promise-call-limit 1.0.2 npm +promise-inflight 1.0.1 npm +promise-retry 2.0.1 npm +promzard 1.0.0 npm +proxy-addr 2.0.7 npm +publicsuffix 20211207.1025-1 deb +pump 3.0.0 npm +python3 3.10.6-1~22.04 deb +python3-minimal 3.10.6-1~22.04 deb +python3.10 3.10.12-1~22.04.3 deb +python3.10-minimal 3.10.12-1~22.04.3 deb +qrcode-terminal 0.12.0 npm +qs 6.11.0 npm +range-parser 1.2.1 npm +raw-body 2.5.1 npm +read 2.1.0 npm +read-cmd-shim 4.0.0 npm +read-package-json 7.0.0 npm +read-package-json-fast 3.0.2 npm +readable-stream 3.6.2 npm +readable-stream 4.4.2 npm +readline-common 8.1.2-1 deb +resenje.org/singleflight v0.4.1 go-module +retry 0.12.0 npm +safe-buffer 5.2.1 npm +safer-buffer 2.1.2 npm +sed 4.8-1ubuntu2 deb +semver 7.5.4 npm +send 0.18.0 npm +sensible-utils 0.0.17 deb +serve-static 1.15.0 npm +set-blocking 2.0.0 npm +set-function-length 1.2.1 npm +setprototypeof 1.2.0 npm +shebang-command 2.0.0 npm +shebang-regex 3.0.0 npm +side-channel 1.0.5 npm +signal-exit 4.0.2 npm +sigs.k8s.io/structured-merge-diff/v4 v4.1.2 go-module +sigs.k8s.io/structured-merge-diff/v4 v4.2.1 go-module +sigs.k8s.io/yaml v1.2.0 go-module +sigs.k8s.io/yaml v1.3.0 go-module +sigstore 2.1.0 npm +smart-buffer 4.2.0 npm +socket.io 4.7.4 npm +socket.io-adapter 2.5.2 npm +socket.io-parser 4.2.4 npm +socks 2.7.1 npm +socks-proxy-agent 8.0.2 npm +spdx-correct 3.2.0 npm +spdx-exceptions 2.3.0 npm +spdx-expression-parse 3.0.1 npm +spdx-license-ids 3.0.16 npm +split-ca 1.0.1 npm +ssh2 1.15.0 npm +ssri 10.0.5 npm +statuses 2.0.1 npm +stdlib go1.17.9 go-module +stdlib go1.18.1 go-module +stdlib go1.20.13 go-module +stdlib go1.20.5 go-module +stdlib go1.21.6 go-module +string-width 4.2.3 npm +string-width 5.1.2 npm +string_decoder 1.3.0 npm +strip-ansi 6.0.1 npm +strip-ansi 7.1.0 npm +sudo 1.9.9-1ubuntu2.4 deb +supports-color 9.4.0 npm +systeminformation 5.21.24 npm +sysvinit-utils 3.01-1ubuntu1 deb +tags.cncf.io/container-device-interface v0.6.2 go-module +tags.cncf.io/container-device-interface/specs-go v0.6.0 go-module +tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb +tar 6.2.0 npm +tar-fs 2.0.1 npm +tar-stream 2.2.0 npm +text-table 0.2.0 npm +tiny-relative-date 1.3.0 npm +toidentifier 1.0.1 npm +treeverse 3.0.0 npm +tuf-js 2.1.0 npm +tweetnacl 0.14.5 npm +type-is 1.6.18 npm +tzdata 2023d-0ubuntu0.22.04 deb +ubuntu-keyring 2021.03.26 deb +uidmap 1:4.8.1-2ubuntu2.1 deb +undici-types 5.26.5 npm +unique-filename 3.0.0 npm +unique-slug 4.0.0 npm +unpipe 1.0.0 npm +usrmerge 25ubuntu2 deb +util-deprecate 1.0.2 npm +util-linux 2.37.2-4ubuntu3 deb +utils-merge 1.0.1 npm +validate-npm-package-license 3.0.4 npm +validate-npm-package-name 5.0.0 npm +vary 1.1.2 npm +walk-up-path 3.0.1 npm +wcwidth 1.0.1 npm +which 2.0.2 npm +which 4.0.0 npm +wide-align 1.1.5 npm +wrap-ansi 7.0.0 npm +wrap-ansi 8.1.0 npm +wrappy 1.0.2 npm +write-file-atomic 5.0.1 npm +ws 8.11.0 npm +xfsprogs 5.13.0-1ubuntu2 deb +yallist 4.0.0 npm +zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From 25c6e799460f7bc96e6834111fe3e7b9f8bb71b6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 9 Feb 2024 14:39:27 +0000 Subject: [PATCH 201/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d51de87..e77e795 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -29,7 +29,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.11.16 npm +@types/node 20.11.17 npm abbrev 2.0.0 npm abort-controller 3.0.0 npm accepts 1.3.8 npm From 6bc959dede43dc5cf3b4bb182bd7053847fbaddb Mon Sep 17 00:00:00 2001 From: thelamer <ryankuba@gmail.com> Date: Fri, 9 Feb 2024 16:25:32 -0800 Subject: [PATCH 202/337] update image ingestion reference --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8dd4c2c..cd54261 100644 --- a/Dockerfile +++ b/Dockerfile @@ -91,7 +91,7 @@ RUN \ ALVERSION=$(cat /kasm_release/conf/database/seed_data/default_properties.yaml |awk '/alembic_version/ {print $2}') && \ curl -o \ /tmp/images.tar.gz -L \ - "https://kasm-ci.s3.amazonaws.com/1.14.0-images-combined.tar.gz" && \ + "https://kasm-ci.s3.amazonaws.com/1.15.0-images-combined.tar.gz" && \ tar xf \ /tmp/images.tar.gz -C \ / && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 1560d18..156505d 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -91,7 +91,7 @@ RUN \ ALVERSION=$(cat /kasm_release/conf/database/seed_data/default_properties.yaml |awk '/alembic_version/ {print $2}') && \ curl -o \ /tmp/images.tar.gz -L \ - "https://kasm-ci.s3.amazonaws.com/1.14.0-images-combined.tar.gz" && \ + "https://kasm-ci.s3.amazonaws.com/1.15.0-images-combined.tar.gz" && \ tar xf \ /tmp/images.tar.gz -C \ / && \ From beb78a348da6230e903718e0e374aa7c46dc8fe9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 13 Feb 2024 18:40:27 +0000 Subject: [PATCH 203/337] Bot Updating Package Versions --- package_versions.txt | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e77e795..54a2d78 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -71,7 +71,7 @@ builtins 5. bytes 3.1.2 npm ca-certificates 20230311ubuntu0.22.04.1 deb cacache 18.0.0 npm -call-bind 1.0.6 npm +call-bind 1.0.7 npm chalk 5.3.0 npm chownr 1.1.4 npm chownr 2.0.0 npm @@ -113,7 +113,7 @@ debianutils 5. debug 2.6.9 npm debug 4.3.4 npm defaults 1.0.4 npm -define-data-property 1.1.2 npm +define-data-property 1.1.4 npm delegates 1.0.0 npm depd 2.0.0 npm destroy 1.2.0 npm @@ -138,6 +138,7 @@ engine.io 6. engine.io-parser 5.2.2 npm env-paths 2.2.1 npm err-code 2.0.3 npm +es-define-property 1.0.0 npm es-errors 1.3.0 npm escape-html 1.0.3 npm etag 1.8.1 npm @@ -547,11 +548,11 @@ graceful-fs 4. grep 3.7-1build1 deb gzip 1.10-4ubuntu4.1 deb has 1.0.3 npm -has-property-descriptors 1.0.1 npm +has-property-descriptors 1.0.2 npm has-proto 1.0.1 npm has-symbols 1.0.3 npm has-unicode 2.0.1 npm -hasown 2.0.0 npm +hasown 2.0.1 npm hosted-git-info 7.0.1 npm hostname 3.23ubuntu2 deb http-cache-semantics 4.1.1 npm @@ -571,7 +572,7 @@ init-system-helpers 1. ip 2.0.0 npm ip-regex 4.3.0 npm ipaddr.js 1.9.1 npm -iptables 1.8.7-1ubuntu5.1 deb +iptables 1.8.7-1ubuntu5.2 deb is-cidr 4.0.2 npm is-core-module 2.13.0 npm is-fullwidth-code-point 3.0.0 npm @@ -636,8 +637,8 @@ libhogweed6 3. libicu70 70.1-2 deb libidn2-0 2.3.2-2build1 deb libinih1 53-1ubuntu3 deb -libip4tc2 1.8.7-1ubuntu5.1 deb -libip6tc2 1.8.7-1ubuntu5.1 deb +libip4tc2 1.8.7-1ubuntu5.2 deb +libip6tc2 1.8.7-1ubuntu5.2 deb libjq1 1.6-2.1ubuntu3 deb libjson-c5 0.15-3~ubuntu1.22.04.2 deb libk5crypto3 1.19.2-2ubuntu0.2 deb @@ -713,7 +714,7 @@ libtirpc3 1. libudev1 249.11-0ubuntu3.9 deb libunistring2 1.0-1 deb libuuid1 2.37.2-4ubuntu3 deb -libxtables12 1.8.7-1ubuntu5.1 deb +libxtables12 1.8.7-1ubuntu5.2 deb libxxhash0 0.8.1-1 deb libzstd1 1.4.8+dfsg-3build1 deb locales 2.35-0ubuntu3.6 deb From 2c8799abab5cd448fd48f7da3c9f0911fe399771 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 20 Feb 2024 21:46:31 +0000 Subject: [PATCH 204/337] Bot Updating Package Versions --- package_versions.txt | 43 +++++++++++++++++++++---------------------- 1 file changed, 21 insertions(+), 22 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 54a2d78..15c8970 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -6,7 +6,7 @@ NAME VE @isaacs/string-locale-compare 1.1.0 npm @npmcli/agent 2.2.0 npm @npmcli/arborist 7.2.1 npm -@npmcli/config 8.0.1 npm +@npmcli/config 8.0.2 npm @npmcli/disparity-colors 3.0.0 npm @npmcli/fs 3.1.0 npm @npmcli/git 5.0.3 npm @@ -22,14 +22,14 @@ NAME VE @pkgjs/parseargs 0.11.0 npm @sigstore/bundle 2.1.0 npm @sigstore/protobuf-specs 0.2.1 npm -@sigstore/sign 2.1.0 npm -@sigstore/tuf 2.1.0 npm +@sigstore/sign 2.2.0 npm +@sigstore/tuf 2.2.0 npm @socket.io/component-emitter 3.1.0 npm @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.11.17 npm +@types/node 20.11.19 npm abbrev 2.0.0 npm abort-controller 3.0.0 npm accepts 1.3.8 npm @@ -75,8 +75,8 @@ call-bind 1. chalk 5.3.0 npm chownr 1.1.4 npm chownr 2.0.0 npm -ci-info 3.9.0 npm -cidr-regex 3.1.1 npm +ci-info 4.0.0 npm +cidr-regex 4.0.3 npm clean-stack 2.2.0 npm cli-columns 4.0.0 npm cli-table3 0.6.3 npm @@ -155,7 +155,6 @@ fresh 0. fs-constants 1.0.0 npm fs-minipass 2.1.0 npm fs-minipass 3.0.3 npm -function-bind 1.1.1 npm function-bind 1.1.2 npm fuse-overlayfs 1.7.1-1 deb fuse3 3.10.5-1build1 deb @@ -250,7 +249,7 @@ github.com/distribution/reference v0 github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module github.com/docker/cli/cmd/docker v25.0.3 go-module -github.com/docker/compose/v2 (devel) go-module +github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module @@ -375,7 +374,7 @@ github.com/opencontainers/go-digest v1 github.com/opencontainers/image-spec v1.0.2 go-module github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module github.com/opencontainers/image-spec v1.1.0-rc5 go-module -github.com/opencontainers/runc v0.0.0-20240123131248-51d5e94601ce go-module +github.com/opencontainers/runc 1.1.12 go-module github.com/opencontainers/runc v1.1.0 go-module github.com/opencontainers/runc v1.1.12 go-module github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module @@ -547,11 +546,11 @@ gpgv 2. graceful-fs 4.2.11 npm grep 3.7-1build1 deb gzip 1.10-4ubuntu4.1 deb -has 1.0.3 npm has-property-descriptors 1.0.2 npm -has-proto 1.0.1 npm +has-proto 1.0.3 npm has-symbols 1.0.3 npm has-unicode 2.0.1 npm +hasown 2.0.0 npm hasown 2.0.1 npm hosted-git-info 7.0.1 npm hostname 3.23ubuntu2 deb @@ -570,11 +569,11 @@ ini 4. init-package-json 6.0.0 npm init-system-helpers 1.62 deb ip 2.0.0 npm -ip-regex 4.3.0 npm +ip-regex 5.0.0 npm ipaddr.js 1.9.1 npm iptables 1.8.7-1ubuntu5.2 deb -is-cidr 4.0.2 npm -is-core-module 2.13.0 npm +is-cidr 5.0.3 npm +is-core-module 2.13.1 npm is-fullwidth-code-point 3.0.0 npm is-lambda 1.0.1 npm isexe 2.0.0 npm @@ -664,12 +663,12 @@ libnftnl11 1. libnghttp2-14 1.43.0-1ubuntu0.1 deb libnpmaccess 8.0.1 npm libnpmdiff 6.0.3 npm -libnpmexec 7.0.3 npm +libnpmexec 7.0.4 npm libnpmfund 5.0.1 npm libnpmhook 10.0.0 npm libnpmorg 6.0.1 npm libnpmpack 6.0.3 npm -libnpmpublish 9.0.1 npm +libnpmpublish 9.0.2 npm libnpmsearch 7.0.0 npm libnpmteam 6.0.0 npm libnpmversion 5.0.1 npm @@ -721,7 +720,7 @@ locales 2. lodash 4.17.21 npm login 1:4.8.1-2ubuntu2.1 deb logsave 1.46.5-2ubuntu1.1 deb -lru-cache 10.0.1 npm +lru-cache 10.0.2 npm lru-cache 6.0.0 npm lsb-base 11.1.0ubuntu4 deb lsof 4.93.2+dfsg-1.1build2 deb @@ -761,10 +760,10 @@ netcat 1. netcat-openbsd 1.218-4ubuntu1 deb node-gyp 10.0.1 npm node-pty 0.10.1 npm -nodejs 18.19.0-1nodesource1 deb +nodejs 18.19.1-1nodesource1 deb nopt 7.2.0 npm normalize-package-data 6.0.0 npm -npm 10.2.3 npm +npm 10.2.4 npm npm-audit-report 5.0.0 npm npm-bundled 3.0.0 npm npm-install-checks 6.3.0 npm @@ -837,7 +836,7 @@ setprototypeof 1. shebang-command 2.0.0 npm shebang-regex 3.0.0 npm side-channel 1.0.5 npm -signal-exit 4.0.2 npm +signal-exit 4.1.0 npm sigs.k8s.io/structured-merge-diff/v4 v4.1.2 go-module sigs.k8s.io/structured-merge-diff/v4 v4.2.1 go-module sigs.k8s.io/yaml v1.2.0 go-module @@ -869,7 +868,7 @@ strip-ansi 6. strip-ansi 7.1.0 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 9.4.0 npm -systeminformation 5.21.24 npm +systeminformation 5.22.0 npm sysvinit-utils 3.01-1ubuntu1 deb tags.cncf.io/container-device-interface v0.6.2 go-module tags.cncf.io/container-device-interface/specs-go v0.6.0 go-module @@ -886,7 +885,7 @@ tweetnacl 0. type-is 1.6.18 npm tzdata 2023d-0ubuntu0.22.04 deb ubuntu-keyring 2021.03.26 deb -uidmap 1:4.8.1-2ubuntu2.1 deb +uidmap 1:4.8.1-2ubuntu2.2 deb undici-types 5.26.5 npm unique-filename 3.0.0 npm unique-slug 4.0.0 npm From e30a66d14d8ed3700f160adf42b453e7e8ba529f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 27 Feb 2024 17:22:19 +0000 Subject: [PATCH 205/337] Bot Updating Templated Files --- Jenkinsfile | 297 +++++++++++++++++++++++++--------------------------- 1 file changed, 143 insertions(+), 154 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 81ecf39..c82a2d5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -245,9 +245,11 @@ pipeline { -v ${WORKSPACE}:/mnt \ -e AWS_ACCESS_KEY_ID=\"${S3_KEY}\" \ -e AWS_SECRET_ACCESS_KEY=\"${S3_SECRET}\" \ - ghcr.io/linuxserver/baseimage-alpine:3.17 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\ - apk add --no-cache py3-pip && \ - pip install s3cmd && \ + ghcr.io/linuxserver/baseimage-alpine:3.19 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\ + apk add --no-cache python3 && \ + python3 -m venv /lsiopy && \ + pip install --no-cache-dir -U pip && \ + pip install --no-cache-dir s3cmd && \ s3cmd put --no-preserve --acl-public -m text/xml /mnt/shellcheck-result.xml s3://ci-tests.linuxserver.io/${IMAGE}/${META_TAG}/shellcheck-result.xml" || :''' } } @@ -262,150 +264,149 @@ pipeline { } } steps { - withCredentials([ - [ - $class: 'UsernamePasswordMultiBinding', - credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', - usernameVariable: 'DOCKERUSER', - passwordVariable: 'DOCKERPASS' - ] - ]) { - sh '''#! /bin/bash - set -e - TEMPDIR=$(mktemp -d) - docker pull ghcr.io/linuxserver/jenkins-builder:latest - docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=develop -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest - # Stage 1 - Jenkinsfile update - if [[ "$(md5sum Jenkinsfile | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile | awk '{ print $1 }')" ]]; then - mkdir -p ${TEMPDIR}/repo - git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} - cd ${TEMPDIR}/repo/${LS_REPO} - git checkout -f develop - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile ${TEMPDIR}/repo/${LS_REPO}/ - git add Jenkinsfile - git commit -m 'Bot Updating Templated Files' - git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop - echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} - echo "Updating Jenkinsfile" - rm -Rf ${TEMPDIR} - exit 0 - else - echo "Jenkinsfile is up to date." + sh '''#! /bin/bash + set -e + TEMPDIR=$(mktemp -d) + docker pull ghcr.io/linuxserver/jenkins-builder:latest + docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=develop -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest + # Stage 1 - Jenkinsfile update + if [[ "$(md5sum Jenkinsfile | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile | awk '{ print $1 }')" ]]; then + mkdir -p ${TEMPDIR}/repo + git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} + cd ${TEMPDIR}/repo/${LS_REPO} + git checkout -f develop + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile ${TEMPDIR}/repo/${LS_REPO}/ + git add Jenkinsfile + git commit -m 'Bot Updating Templated Files' + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop + echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + echo "Updating Jenkinsfile" + rm -Rf ${TEMPDIR} + exit 0 + else + echo "Jenkinsfile is up to date." + fi + # Stage 2 - Delete old templates + OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md .github/ISSUE_TEMPLATE/issue.bug.md .github/ISSUE_TEMPLATE/issue.feature.md .github/workflows/call_invalid_helper.yml .github/workflows/stale.yml Dockerfile.armhf" + for i in ${OLD_TEMPLATES}; do + if [[ -f "${i}" ]]; then + TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}" fi - # Stage 2 - Delete old templates - OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md .github/ISSUE_TEMPLATE/issue.bug.md .github/ISSUE_TEMPLATE/issue.feature.md .github/workflows/call_invalid_helper.yml .github/workflows/stale.yml Dockerfile.armhf" - for i in ${OLD_TEMPLATES}; do - if [[ -f "${i}" ]]; then - TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}" - fi + done + if [[ -n "${TEMPLATES_TO_DELETE}" ]]; then + mkdir -p ${TEMPDIR}/repo + git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} + cd ${TEMPDIR}/repo/${LS_REPO} + git checkout -f develop + for i in ${TEMPLATES_TO_DELETE}; do + git rm "${i}" done - if [[ -n "${TEMPLATES_TO_DELETE}" ]]; then - mkdir -p ${TEMPDIR}/repo - git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} - cd ${TEMPDIR}/repo/${LS_REPO} - git checkout -f develop - for i in ${TEMPLATES_TO_DELETE}; do - git rm "${i}" - done - git commit -m 'Bot Updating Templated Files' - git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop - echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} - echo "Deleting old and deprecated templates" - rm -Rf ${TEMPDIR} - exit 0 - else - echo "No templates to delete" - fi - # Stage 3 - Update templates - CURRENTHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) + git commit -m 'Bot Updating Templated Files' + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop + echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + echo "Deleting old and deprecated templates" + rm -Rf ${TEMPDIR} + exit 0 + else + echo "No templates to delete" + fi + # Stage 3 - Update templates + CURRENTHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) + cd ${TEMPDIR}/docker-${CONTAINER_NAME} + NEWHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) + if [[ "${CURRENTHASH}" != "${NEWHASH}" ]] || ! grep -q '.jenkins-external' "${WORKSPACE}/.gitignore" 2>/dev/null; then + mkdir -p ${TEMPDIR}/repo + git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} + cd ${TEMPDIR}/repo/${LS_REPO} + git checkout -f develop cd ${TEMPDIR}/docker-${CONTAINER_NAME} - NEWHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) - if [[ "${CURRENTHASH}" != "${NEWHASH}" ]] || ! grep -q '.jenkins-external' "${WORKSPACE}/.gitignore" 2>/dev/null; then - mkdir -p ${TEMPDIR}/repo - git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} - cd ${TEMPDIR}/repo/${LS_REPO} - git checkout -f develop - cd ${TEMPDIR}/docker-${CONTAINER_NAME} - mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/workflows - mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/ISSUE_TEMPLATE - cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ || : - cp --parents readme-vars.yml ${TEMPDIR}/repo/${LS_REPO}/ || : - cd ${TEMPDIR}/repo/${LS_REPO}/ - if ! grep -q '.jenkins-external' .gitignore 2>/dev/null; then - echo ".jenkins-external" >> .gitignore - git add .gitignore - fi - git add readme-vars.yml ${TEMPLATED_FILES} - git commit -m 'Bot Updating Templated Files' - git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop - echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/workflows + mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/ISSUE_TEMPLATE + cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ || : + cp --parents readme-vars.yml ${TEMPDIR}/repo/${LS_REPO}/ || : + cd ${TEMPDIR}/repo/${LS_REPO}/ + if ! grep -q '.jenkins-external' .gitignore 2>/dev/null; then + echo ".jenkins-external" >> .gitignore + git add .gitignore + fi + git add readme-vars.yml ${TEMPLATED_FILES} + git commit -m 'Bot Updating Templated Files' + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop + echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + else + echo "false" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + fi + mkdir -p ${TEMPDIR}/docs + git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/docs/docker-documentation + if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md ${TEMPDIR}/docs/docker-documentation/docs/images/ + cd ${TEMPDIR}/docs/docker-documentation + GH_DOCS_DEFAULT_BRANCH=$(git remote show origin | grep "HEAD branch:" | sed 's|.*HEAD branch: ||') + git add docs/images/docker-${CONTAINER_NAME}.md + git commit -m 'Bot Updating Documentation' + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} --rebase + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} || \ + (MAXWAIT="10" && echo "Push to docs failed, trying again in ${MAXWAIT} seconds" && \ + sleep $((RANDOM % MAXWAIT)) && \ + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} --rebase && \ + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH}) + fi + mkdir -p ${TEMPDIR}/unraid + git clone https://github.com/linuxserver/docker-templates.git ${TEMPDIR}/unraid/docker-templates + git clone https://github.com/linuxserver/templates.git ${TEMPDIR}/unraid/templates + if [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-logo.png ]]; then + sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-logo.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml + elif [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-icon.png ]]; then + sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-icon.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml + fi + if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml) || ("$(md5sum ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml | awk '{ print $1 }')") ]]; then + cd ${TEMPDIR}/unraid/templates/ + GH_TEMPLATES_DEFAULT_BRANCH=$(git remote show origin | grep "HEAD branch:" | sed 's|.*HEAD branch: ||') + if grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list; then + echo "Image is on the ignore list, marking Unraid template as deprecated" + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ + git add -u unraid/${CONTAINER_NAME}.xml + git mv unraid/${CONTAINER_NAME}.xml unraid/deprecated/${CONTAINER_NAME}.xml || : + git commit -m 'Bot Moving Deprecated Unraid Template' || : else - echo "false" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ + git add unraid/${CONTAINER_NAME}.xml + git commit -m 'Bot Updating Unraid Template' fi - mkdir -p ${TEMPDIR}/docs - git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/docs/docker-documentation - if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md ${TEMPDIR}/docs/docker-documentation/docs/images/ - cd ${TEMPDIR}/docs/docker-documentation - GH_DOCS_DEFAULT_BRANCH=$(git remote show origin | grep "HEAD branch:" | sed 's|.*HEAD branch: ||') - git add docs/images/docker-${CONTAINER_NAME}.md - git commit -m 'Bot Updating Documentation' - git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} - fi - mkdir -p ${TEMPDIR}/unraid - git clone https://github.com/linuxserver/docker-templates.git ${TEMPDIR}/unraid/docker-templates - git clone https://github.com/linuxserver/templates.git ${TEMPDIR}/unraid/templates - if [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-logo.png ]]; then - sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-logo.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml - elif [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-icon.png ]]; then - sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-icon.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml - fi - if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml) || ("$(md5sum ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml | awk '{ print $1 }')") ]]; then - cd ${TEMPDIR}/unraid/templates/ - GH_TEMPLATES_DEFAULT_BRANCH=$(git remote show origin | grep "HEAD branch:" | sed 's|.*HEAD branch: ||') - if grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list; then - echo "Image is on the ignore list, marking Unraid template as deprecated" - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ - git add -u unraid/${CONTAINER_NAME}.xml - git mv unraid/${CONTAINER_NAME}.xml unraid/deprecated/${CONTAINER_NAME}.xml || : - git commit -m 'Bot Moving Deprecated Unraid Template' || : - else - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ - git add unraid/${CONTAINER_NAME}.xml - git commit -m 'Bot Updating Unraid Template' - fi - git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH} - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH} - fi - # Stage 4 - Sync Readme to Docker Hub - if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]]; then - if [[ $(cat ${TEMPDIR}/docker-${CONTAINER_NAME}/README.md | wc -m) > 25000 ]]; then - echo "Readme is longer than 25,000 characters. Syncing the lite version to Docker Hub" - DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/README.lite" - else - echo "Syncing readme to Docker Hub" - DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/README.md" - fi - DH_TOKEN=$(curl -d '{"username":"'${DOCKERUSER}'", "password":"'${DOCKERHUB_TOKEN}'"}' -H "Content-Type: application/json" -X POST https://hub.docker.com/v2/users/login | jq -r '.token') - curl -s \ - -H "Authorization: JWT ${DH_TOKEN}" \ - -H "Content-Type: application/json" \ - -X PATCH \ - -d "{\\"full_description\\":$(jq -Rsa . ${DH_README_SYNC_PATH})}" \ - https://hub.docker.com/v2/repositories/${DOCKERHUB_IMAGE} || : + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH} --rebase + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH} || \ + (MAXWAIT="10" && echo "Push to unraid templates failed, trying again in ${MAXWAIT} seconds" && \ + sleep $((RANDOM % MAXWAIT)) && \ + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH} --rebase && \ + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH}) + fi + # Stage 4 - Sync Readme to Docker Hub + if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]]; then + if [[ $(cat ${TEMPDIR}/docker-${CONTAINER_NAME}/README.md | wc -m) > 25000 ]]; then + echo "Readme is longer than 25,000 characters. Syncing the lite version to Docker Hub" + DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/README.lite" else - echo "Not the default Github branch. Skipping readme sync to Docker Hub." + echo "Syncing readme to Docker Hub" + DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/README.md" fi - rm -Rf ${TEMPDIR}''' - script{ - env.FILES_UPDATED = sh( - script: '''cat /tmp/${COMMIT_SHA}-${BUILD_NUMBER}''', - returnStdout: true).trim() - } + DH_TOKEN=$(curl -d '{"username":"linuxserverci", "password":"'${DOCKERHUB_TOKEN}'"}' -H "Content-Type: application/json" -X POST https://hub.docker.com/v2/users/login | jq -r '.token') + curl -s \ + -H "Authorization: JWT ${DH_TOKEN}" \ + -H "Content-Type: application/json" \ + -X PATCH \ + -d "{\\"full_description\\":$(jq -Rsa . ${DH_README_SYNC_PATH})}" \ + https://hub.docker.com/v2/repositories/${DOCKERHUB_IMAGE} || : + else + echo "Not the default Github branch. Skipping readme sync to Docker Hub." + fi + rm -Rf ${TEMPDIR}''' + script{ + env.FILES_UPDATED = sh( + script: '''cat /tmp/${COMMIT_SHA}-${BUILD_NUMBER}''', + returnStdout: true).trim() } } } @@ -703,12 +704,6 @@ pipeline { } steps { withCredentials([ - [ - $class: 'UsernamePasswordMultiBinding', - credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', - usernameVariable: 'DOCKERUSER', - passwordVariable: 'DOCKERPASS' - ], [ $class: 'UsernamePasswordMultiBinding', credentialsId: 'Quay.io-Robot', @@ -719,7 +714,7 @@ pipeline { retry(5) { sh '''#! /bin/bash set -e - echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin + echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin @@ -750,12 +745,6 @@ pipeline { } steps { withCredentials([ - [ - $class: 'UsernamePasswordMultiBinding', - credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', - usernameVariable: 'DOCKERUSER', - passwordVariable: 'DOCKERPASS' - ], [ $class: 'UsernamePasswordMultiBinding', credentialsId: 'Quay.io-Robot', @@ -766,7 +755,7 @@ pipeline { retry(5) { sh '''#! /bin/bash set -e - echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin + echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin From 5dcbb2fba5010d4ecd304c9bfa62a708a2fcbae0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 27 Feb 2024 17:24:07 +0000 Subject: [PATCH 206/337] Bot Updating Templated Files --- .github/ISSUE_TEMPLATE/issue.bug.yml | 4 ++-- .github/workflows/external_trigger.yml | 2 +- .github/workflows/external_trigger_scheduler.yml | 2 +- .github/workflows/package_trigger.yml | 2 +- .github/workflows/package_trigger_scheduler.yml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/issue.bug.yml b/.github/ISSUE_TEMPLATE/issue.bug.yml index ce3d19a..48781be 100755 --- a/.github/ISSUE_TEMPLATE/issue.bug.yml +++ b/.github/ISSUE_TEMPLATE/issue.bug.yml @@ -67,10 +67,10 @@ body: - type: textarea attributes: description: | - Provide a full docker log, output of "docker logs linuxserver.io" + Provide a full docker log, output of "docker logs kasm" label: Container logs placeholder: | - Output of `docker logs linuxserver.io` + Output of `docker logs kasm` render: bash validations: required: true diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 1b81e34..810e939 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -7,7 +7,7 @@ jobs: external-trigger-develop: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v4.1.1 - name: External Trigger if: github.ref == 'refs/heads/develop' diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml index 079901f..d78cb5e 100644 --- a/.github/workflows/external_trigger_scheduler.yml +++ b/.github/workflows/external_trigger_scheduler.yml @@ -9,7 +9,7 @@ jobs: external-trigger-scheduler: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v4.1.1 with: fetch-depth: '0' diff --git a/.github/workflows/package_trigger.yml b/.github/workflows/package_trigger.yml index 04b91ae..7b8f325 100644 --- a/.github/workflows/package_trigger.yml +++ b/.github/workflows/package_trigger.yml @@ -7,7 +7,7 @@ jobs: package-trigger-develop: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v4.1.1 - name: Package Trigger if: github.ref == 'refs/heads/develop' diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index 0bf396e..3b2278a 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -9,7 +9,7 @@ jobs: package-trigger-scheduler: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v4.1.1 with: fetch-depth: '0' From f682b6fb009350248a7734c48a3dd69691a79a65 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 27 Feb 2024 17:29:04 +0000 Subject: [PATCH 207/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 15c8970..0f79a4a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -29,7 +29,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.11.19 npm +@types/node 20.11.20 npm abbrev 2.0.0 npm abort-controller 3.0.0 npm accepts 1.3.8 npm @@ -782,7 +782,7 @@ object-assign 4. object-inspect 1.13.1 npm on-finished 2.4.1 npm once 1.4.0 npm -openssl 3.0.2-0ubuntu1.14 deb +openssl 3.0.2-0ubuntu1.15 deb p-map 4.0.0 npm pacote 17.0.4 npm parse-conflict-json 3.0.1 npm @@ -844,7 +844,7 @@ sigs.k8s.io/yaml v1 sigstore 2.1.0 npm smart-buffer 4.2.0 npm socket.io 4.7.4 npm -socket.io-adapter 2.5.2 npm +socket.io-adapter 2.5.4 npm socket.io-parser 4.2.4 npm socks 2.7.1 npm socks-proxy-agent 8.0.2 npm From 9df6fe7944921ce927108f2e30c6732ed37ae069 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 5 Mar 2024 21:42:15 +0000 Subject: [PATCH 208/337] Bot Updating Package Versions --- package_versions.txt | 1825 +++++++++++++++++++++--------------------- 1 file changed, 913 insertions(+), 912 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 0f79a4a..f3f1693 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,912 +1,913 @@ -NAME VERSION TYPE -1to2 1.0.0 npm -@balena/dockerignore 1.0.2 npm -@colors/colors 1.5.0 npm -@isaacs/cliui 8.0.2 npm -@isaacs/string-locale-compare 1.1.0 npm -@npmcli/agent 2.2.0 npm -@npmcli/arborist 7.2.1 npm -@npmcli/config 8.0.2 npm -@npmcli/disparity-colors 3.0.0 npm -@npmcli/fs 3.1.0 npm -@npmcli/git 5.0.3 npm -@npmcli/installed-package-contents 2.0.2 npm -@npmcli/map-workspaces 3.0.4 npm -@npmcli/metavuln-calculator 7.0.0 npm -@npmcli/name-from-folder 2.0.0 npm -@npmcli/node-gyp 3.0.0 npm -@npmcli/package-json 5.0.0 npm -@npmcli/promise-spawn 7.0.0 npm -@npmcli/query 3.0.1 npm -@npmcli/run-script 7.0.2 npm -@pkgjs/parseargs 0.11.0 npm -@sigstore/bundle 2.1.0 npm -@sigstore/protobuf-specs 0.2.1 npm -@sigstore/sign 2.2.0 npm -@sigstore/tuf 2.2.0 npm -@socket.io/component-emitter 3.1.0 npm -@tufjs/canonical-json 2.0.0 npm -@tufjs/models 2.0.0 npm -@types/cookie 0.4.1 npm -@types/cors 2.8.17 npm -@types/node 20.11.20 npm -abbrev 2.0.0 npm -abort-controller 3.0.0 npm -accepts 1.3.8 npm -adduser 3.118ubuntu5 deb -agent-base 7.1.0 npm -aggregate-error 3.1.0 npm -ansi-regex 5.0.1 npm -ansi-regex 6.0.1 npm -ansi-styles 4.3.0 npm -ansi-styles 6.2.1 npm -aproba 2.0.0 npm -apt 2.4.11 deb -apt-transport-https 2.4.11 deb -apt-utils 2.4.11 deb -archy 1.0.0 npm -are-we-there-yet 4.0.1 npm -argparse 2.0.1 npm -array-flatten 1.1.1 npm -asn1 0.2.6 npm -balanced-match 1.0.2 npm -base-files 12ubuntu4.3 deb -base-passwd 3.5.52build1 deb -base64-js 1.5.1 npm -base64id 2.0.0 npm -bash 5.1-6ubuntu1 deb -bash 5.1.16 binary -bcrypt-pbkdf 1.0.2 npm -bin-links 4.0.3 npm -binary-extensions 2.2.0 npm -bl 4.1.0 npm -body-parser 1.20.1 npm -brace-expansion 2.0.1 npm -bsdutils 1:2.37.2-4ubuntu3 deb -btrfs-progs 5.16.2-1 deb -buffer 5.7.1 npm -buffer 6.0.3 npm -buildcheck 0.0.6 npm -builtins 5.0.1 npm -bytes 3.1.2 npm -ca-certificates 20230311ubuntu0.22.04.1 deb -cacache 18.0.0 npm -call-bind 1.0.7 npm -chalk 5.3.0 npm -chownr 1.1.4 npm -chownr 2.0.0 npm -ci-info 4.0.0 npm -cidr-regex 4.0.3 npm -clean-stack 2.2.0 npm -cli-columns 4.0.0 npm -cli-table3 0.6.3 npm -clone 1.0.4 npm -cloud.google.com/go/compute/metadata v0.2.3 go-module -cloud.google.com/go/logging v1.7.0 go-module -cloud.google.com/go/longrunning v0.5.1 go-module -cmd-shim 6.0.2 npm -code.cloudfoundry.org/clock v1.1.0 go-module -color-convert 2.0.1 npm -color-name 1.1.4 npm -color-support 1.1.3 npm -columnify 1.6.0 npm -common-ancestor-path 1.0.1 npm -console-control-strings 1.1.0 npm -containerd.io 1.6.28-1 deb -content-disposition 0.5.4 npm -content-type 1.0.5 npm -cookie 0.4.2 npm -cookie 0.5.0 npm -cookie-signature 1.0.6 npm -corepack 0.22.0 npm -coreutils 8.32-4.1ubuntu1 deb -cors 2.8.5 npm -cpu-features 0.0.9 npm -cron 3.0pl1-137ubuntu3 deb -cross-spawn 7.0.3 npm -cssesc 3.0.0 npm -curl 7.81.0-1ubuntu1.15 deb -dario.cat/mergo v1.0.0 go-module -dash 0.5.11+git20210903+057cd650a4ed-3build1 deb -debconf 1.5.79ubuntu1 deb -debianutils 5.5-1ubuntu2 deb -debug 2.6.9 npm -debug 4.3.4 npm -defaults 1.0.4 npm -define-data-property 1.1.4 npm -delegates 1.0.0 npm -depd 2.0.0 npm -destroy 1.2.0 npm -diff 5.1.0 npm -diffutils 1:3.8-0ubuntu2 deb -dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:25.0.3-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:25.0.3-1~ubuntu.22.04~jammy deb -docker-modem 3.0.8 npm -dockerode 3.3.5 npm -dpkg 1.21.1ubuntu2.2 deb -drm-info 2.2.0-2 deb -e2fsprogs 1.46.5-2ubuntu1.1 deb -eastasianwidth 0.2.0 npm -ee-first 1.1.1 npm -emoji-regex 8.0.0 npm -emoji-regex 9.2.2 npm -encodeurl 1.0.2 npm -encoding 0.1.13 npm -end-of-stream 1.4.4 npm -engine.io 6.5.4 npm -engine.io-parser 5.2.2 npm -env-paths 2.2.1 npm -err-code 2.0.3 npm -es-define-property 1.0.0 npm -es-errors 1.3.0 npm -escape-html 1.0.3 npm -etag 1.8.1 npm -event-target-shim 5.0.1 npm -events 3.3.0 npm -exponential-backoff 3.1.1 npm -express 4.18.2 npm -fastest-levenshtein 1.0.16 npm -finalhandler 1.2.0 npm -findutils 4.8.0-1ubuntu3 deb -foreground-child 3.1.1 npm -forwarded 0.2.0 npm -fresh 0.5.2 npm -fs-constants 1.0.0 npm -fs-minipass 2.1.0 npm -fs-minipass 3.0.3 npm -function-bind 1.1.2 npm -fuse-overlayfs 1.7.1-1 deb -fuse3 3.10.5-1build1 deb -gauge 5.0.1 npm -gcc-12-base 12.3.0-1ubuntu1~22.04 deb -get-intrinsic 1.2.4 npm -github.com/AlecAivazis/survey/v2 v2.3.2 go-module -github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module -github.com/Masterminds/semver v1.5.0 go-module -github.com/Microsoft/hcsshim v0.11.4 go-module -github.com/Microsoft/hcsshim v0.9.10 go-module -github.com/NVIDIA/go-nvml v0.12.0-1 go-module -github.com/NVIDIA/nvidia-container-toolkit v1.14.5 go-module -github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module -github.com/a8m/envsubst v1.3.0 go-module -github.com/agext/levenshtein v1.2.3 go-module -github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412 go-module -github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092 go-module -github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 go-module -github.com/armon/go-metrics v0.4.1 go-module -github.com/aws/aws-sdk-go-v2 v1.17.6 go-module -github.com/aws/aws-sdk-go-v2/config v1.18.16 go-module -github.com/aws/aws-sdk-go-v2/credentials v1.13.16 go-module -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.24 go-module -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.30 go-module -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.24 go-module -github.com/aws/aws-sdk-go-v2/internal/ini v1.3.31 go-module -github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.15.17 go-module -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.24 go-module -github.com/aws/aws-sdk-go-v2/service/sso v1.12.5 go-module -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.5 go-module -github.com/aws/aws-sdk-go-v2/service/sts v1.18.6 go-module -github.com/aws/smithy-go v1.13.5 go-module -github.com/beorn7/perks v1.0.1 go-module -github.com/blang/semver v3.5.1+incompatible go-module -github.com/buger/goterm v1.0.4 go-module -github.com/cenkalti/backoff/v4 v4.1.2 go-module -github.com/cenkalti/backoff/v4 v4.2.1 go-module -github.com/cespare/xxhash/v2 v2.1.2 go-module -github.com/cespare/xxhash/v2 v2.2.0 go-module -github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module -github.com/cilium/ebpf v0.11.0 go-module -github.com/cilium/ebpf v0.7.0 go-module -github.com/cloudflare/cfssl v1.6.4 go-module -github.com/cnabio/cnab-go v0.10.0-beta1 go-module -github.com/cnabio/cnab-to-oci v0.3.1-beta1 go-module -github.com/compose-spec/compose-go v1.2.4 go-module -github.com/container-storage-interface/spec v1.5.0 go-module -github.com/containerd/aufs v1.0.0 go-module -github.com/containerd/btrfs v1.0.0 go-module -github.com/containerd/cgroups v1.0.4 go-module -github.com/containerd/cgroups/v3 v3.0.3 go-module -github.com/containerd/console v1.0.3 go-module -github.com/containerd/containerd v1.6.2 go-module -github.com/containerd/containerd v1.6.28 go-module -github.com/containerd/containerd v1.7.12 go-module -github.com/containerd/continuity v0.2.2 go-module -github.com/containerd/continuity v0.3.0 go-module -github.com/containerd/continuity v0.4.2 go-module -github.com/containerd/fifo v1.0.0 go-module -github.com/containerd/fifo v1.1.0 go-module -github.com/containerd/go-cni v1.1.6 go-module -github.com/containerd/go-cni v1.1.9 go-module -github.com/containerd/go-runc v1.0.0 go-module -github.com/containerd/go-runc v1.1.0 go-module -github.com/containerd/imgcrypt v1.1.4 go-module -github.com/containerd/log v0.1.0 go-module -github.com/containerd/nri v0.1.1 go-module -github.com/containerd/nydus-snapshotter v0.8.2 go-module -github.com/containerd/stargz-snapshotter/estargz v0.14.3 go-module -github.com/containerd/ttrpc v1.1.0 go-module -github.com/containerd/ttrpc v1.1.2 go-module -github.com/containerd/ttrpc v1.2.2 go-module -github.com/containerd/typeurl v1.0.2 go-module -github.com/containerd/typeurl/v2 v2.1.1 go-module -github.com/containerd/zfs v1.1.0 go-module -github.com/containernetworking/cni v1.1.1 go-module -github.com/containernetworking/cni v1.1.2 go-module -github.com/containernetworking/plugins v1.1.1 go-module -github.com/containers/ocicrypt v1.1.3 go-module -github.com/coreos/go-systemd/v22 v22.3.2 go-module -github.com/coreos/go-systemd/v22 v22.5.0 go-module -github.com/cpuguy83/go-md2man/v2 v2.0.0 go-module -github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module -github.com/cpuguy83/go-md2man/v2 v2.0.2 go-module -github.com/cyphar/filepath-securejoin v0.2.4 go-module -github.com/davecgh/go-spew v1.1.1 go-module -github.com/deckarep/golang-set/v2 v2.3.0 go-module -github.com/dimchansky/utfbom v1.1.1 go-module -github.com/distribution/distribution/v3 v3.0.0-20210316161203-a01c71e2477e go-module -github.com/distribution/reference v0.5.0 go-module -github.com/docker/buildx v0.8.1 go-module -github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v25.0.3 go-module -github.com/docker/compose/v2 v2.5.0 go-module -github.com/docker/distribution v2.8.0+incompatible go-module -github.com/docker/distribution v2.8.3+incompatible go-module -github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v25.0.3 go-module -github.com/docker/docker-credential-helpers v0.6.4 go-module -github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module -github.com/docker/go-connections v0.4.0 go-module -github.com/docker/go-connections v0.5.0 go-module -github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module -github.com/docker/go-metrics v0.0.1 go-module -github.com/docker/go-units v0.4.0 go-module -github.com/docker/go-units v0.5.0 go-module -github.com/docker/libtrust v0.0.0-20150526203908-9cbd2a1374f4 go-module -github.com/dustin/go-humanize v1.0.0 go-module -github.com/elliotchance/orderedmap v1.4.0 go-module -github.com/emicklei/go-restful v2.16.0+incompatible go-module -github.com/emicklei/go-restful/v3 v3.10.1 go-module -github.com/fatih/color v1.13.0 go-module -github.com/felixge/httpsnoop v1.0.2 go-module -github.com/felixge/httpsnoop v1.0.4 go-module -github.com/fernet/fernet-go v0.0.0-20211208181803-9f70042a33ee go-module -github.com/fluent/fluent-logger-golang v1.9.0 go-module -github.com/fsnotify/fsnotify v1.4.9 go-module -github.com/fsnotify/fsnotify v1.5.4 go-module -github.com/fsnotify/fsnotify v1.6.0 go-module -github.com/fvbommel/sortorder v1.0.1 go-module -github.com/go-logr/logr v1.2.2 go-module -github.com/go-logr/logr v1.2.4 go-module -github.com/go-logr/logr v1.3.0 go-module -github.com/go-logr/stdr v1.2.2 go-module -github.com/goccy/go-yaml v1.9.5 go-module -github.com/godbus/dbus/v5 v5.0.6 go-module -github.com/godbus/dbus/v5 v5.1.0 go-module -github.com/gofrs/flock v0.8.0 go-module -github.com/gofrs/flock v0.8.1 go-module -github.com/gogo/googleapis v1.3.2 go-module -github.com/gogo/googleapis v1.4.1 go-module -github.com/gogo/protobuf v1.3.2 go-module -github.com/golang-jwt/jwt/v4 v4.4.2 go-module -github.com/golang/gddo v0.0.0-20190904175337-72a348e765d2 go-module -github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da go-module -github.com/golang/mock v1.6.0 go-module -github.com/golang/protobuf v1.5.2 go-module -github.com/golang/protobuf v1.5.3 go-module -github.com/google/btree v1.1.2 go-module -github.com/google/certificate-transparency-go v1.1.4 go-module -github.com/google/go-cmp v0.5.7 go-module -github.com/google/go-cmp v0.6.0 go-module -github.com/google/gofuzz v1.2.0 go-module -github.com/google/s2a-go v0.1.4 go-module -github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module -github.com/google/uuid v1.3.1 go-module -github.com/google/uuid v1.5.0 go-module -github.com/googleapis/enterprise-certificate-proxy v0.2.3 go-module -github.com/googleapis/gax-go/v2 v2.11.0 go-module -github.com/gorilla/mux v1.8.0 go-module -github.com/gorilla/mux v1.8.1 go-module -github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module -github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module -github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module -github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 go-module -github.com/hashicorp/errwrap v1.1.0 go-module -github.com/hashicorp/go-immutable-radix v1.3.1 go-module -github.com/hashicorp/go-memdb v1.3.2 go-module -github.com/hashicorp/go-msgpack v0.5.5 go-module -github.com/hashicorp/go-multierror v1.1.1 go-module -github.com/hashicorp/go-sockaddr v1.0.2 go-module -github.com/hashicorp/go-version v1.3.0 go-module -github.com/hashicorp/golang-lru v0.5.4 go-module -github.com/hashicorp/memberlist v0.4.0 go-module -github.com/hashicorp/serf v0.8.5 go-module -github.com/imdario/mergo v0.3.12 go-module -github.com/in-toto/in-toto-golang v0.5.0 go-module -github.com/intel/goresctrl v0.2.0 go-module -github.com/ishidawataru/sctp v0.0.0-20230406120618-7ff4192f6ff2 go-module -github.com/jinzhu/copier v0.3.5 go-module -github.com/jmoiron/sqlx v1.3.3 go-module -github.com/json-iterator/go v1.1.12 go-module -github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module -github.com/klauspost/compress v1.15.0 go-module -github.com/klauspost/compress v1.15.9 go-module -github.com/klauspost/compress v1.17.4 go-module -github.com/magiconair/properties v1.8.6 go-module -github.com/mattn/go-colorable v0.1.12 go-module -github.com/mattn/go-isatty v0.0.14 go-module -github.com/mattn/go-shellwords v1.0.12 go-module -github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 go-module -github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module -github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module -github.com/miekg/dns v1.1.43 go-module -github.com/miekg/pkcs11 v1.1.1 go-module -github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module -github.com/mistifyio/go-zfs/v3 v3.0.1 go-module -github.com/mitchellh/copystructure v1.2.0 go-module -github.com/mitchellh/hashstructure/v2 v2.0.2 go-module -github.com/mitchellh/mapstructure v1.4.3 go-module -github.com/mitchellh/reflectwalk v1.0.2 go-module -github.com/moby/buildkit v0.10.0-rc2.0.20220308185020-fdecd0ae108b go-module -github.com/moby/buildkit v0.12.5 go-module -github.com/moby/ipvs v1.1.0 go-module -github.com/moby/locker v1.0.1 go-module -github.com/moby/patternmatcher v0.6.0 go-module -github.com/moby/pubsub v1.0.0 go-module -github.com/moby/spdystream v0.2.0 go-module -github.com/moby/swarmkit/v2 v2.0.0-20240125134710-dcda100a8261 go-module -github.com/moby/sys/mount v0.3.3 go-module -github.com/moby/sys/mountinfo v0.5.0 go-module -github.com/moby/sys/mountinfo v0.6.2 go-module -github.com/moby/sys/mountinfo v0.7.1 go-module -github.com/moby/sys/sequential v0.5.0 go-module -github.com/moby/sys/signal v0.6.0 go-module -github.com/moby/sys/signal v0.7.0 go-module -github.com/moby/sys/symlink v0.2.0 go-module -github.com/moby/sys/user v0.1.0 go-module -github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 go-module -github.com/moby/term v0.5.0 go-module -github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module -github.com/modern-go/reflect2 v1.0.2 go-module -github.com/morikuni/aec v1.0.0 go-module -github.com/mrunalp/fileutils v0.5.1 go-module -github.com/opencontainers/go-digest v1.0.0 go-module -github.com/opencontainers/image-spec v1.0.2 go-module -github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module -github.com/opencontainers/image-spec v1.1.0-rc5 go-module -github.com/opencontainers/runc 1.1.12 go-module -github.com/opencontainers/runc v1.1.0 go-module -github.com/opencontainers/runc v1.1.12 go-module -github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module -github.com/opencontainers/runtime-spec v1.1.0 go-module -github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module -github.com/opencontainers/selinux v1.10.0 go-module -github.com/opencontainers/selinux v1.10.1 go-module -github.com/opencontainers/selinux v1.11.0 go-module -github.com/package-url/packageurl-go v0.1.1-0.20220428063043-89078438f170 go-module -github.com/pelletier/go-toml v1.9.4 go-module -github.com/pelletier/go-toml v1.9.5 go-module -github.com/philhofer/fwd v1.1.2 go-module -github.com/pkg/errors v0.9.1 go-module -github.com/prometheus/client_golang v1.11.1 go-module -github.com/prometheus/client_golang v1.12.1 go-module -github.com/prometheus/client_golang v1.14.0 go-module -github.com/prometheus/client_model v0.2.0 go-module -github.com/prometheus/client_model v0.3.0 go-module -github.com/prometheus/common v0.30.0 go-module -github.com/prometheus/common v0.32.1 go-module -github.com/prometheus/common v0.42.0 go-module -github.com/prometheus/procfs v0.7.3 go-module -github.com/prometheus/procfs v0.9.0 go-module -github.com/qri-io/jsonpointer v0.1.0 go-module -github.com/qri-io/jsonschema v0.1.1 go-module -github.com/rootless-containers/rootlesskit/v2 v2.0.0 go-module -github.com/russross/blackfriday/v2 v2.0.1 go-module -github.com/russross/blackfriday/v2 v2.1.0 go-module -github.com/sanathkr/go-yaml v0.0.0-20170819195128-ed9d249f429b go-module -github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 go-module -github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 go-module -github.com/secure-systems-lab/go-securesystemslib v0.4.0 go-module -github.com/shibumi/go-pathspec v1.3.0 go-module -github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module -github.com/sirupsen/logrus v1.8.1 go-module -github.com/sirupsen/logrus v1.9.0 go-module -github.com/sirupsen/logrus v1.9.3 go-module -github.com/spdx/tools-golang v0.5.1 go-module -github.com/spf13/cobra v1.4.0 go-module -github.com/spf13/cobra v1.8.0 go-module -github.com/spf13/pflag v1.0.5 go-module -github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 go-module -github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module -github.com/tchap/go-patricia v2.2.6+incompatible go-module -github.com/theupdateframework/notary v0.6.1 go-module -github.com/timtadh/data-structures v0.5.3 go-module -github.com/timtadh/lexmachine v0.2.2 go-module -github.com/tinylib/msgp v1.1.8 go-module -github.com/tonistiigi/fsutil v0.0.0-20220315205639-9ed612626da3 go-module -github.com/tonistiigi/fsutil v0.0.0-20230629203738-36ef4d8c0dbb go-module -github.com/tonistiigi/go-actions-cache v0.0.0-20220404170428-0bdeb6e1eac7 go-module -github.com/tonistiigi/go-archvariant v1.0.0 go-module -github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module -github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f go-module -github.com/urfave/cli v1.22.1 go-module -github.com/urfave/cli/v2 v2.3.0 go-module -github.com/vbatts/tar-split v0.11.5 go-module -github.com/vishvananda/netlink v1.1.0 go-module -github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5 go-module -github.com/vishvananda/netlink v1.2.1-beta.2 go-module -github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df go-module -github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f go-module -github.com/vishvananda/netns v0.0.4 go-module -github.com/weppos/publicsuffix-go v0.15.1-0.20210511084619-b1f36a2d6c0b go-module -github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb go-module -github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module -github.com/xeipuuv/gojsonschema v1.2.0 go-module -github.com/zmap/zcrypto v0.0.0-20210511125630-18f1e0152cfc go-module -github.com/zmap/zlint/v3 v3.1.0 go-module -gitlab.com/nvidia/cloud-native/go-nvlib v0.0.0-20230818092907-09424fdc8884 go-module -glob 10.3.10 npm -gnupg 2.2.27-3ubuntu2.1 deb -gnupg-l10n 2.2.27-3ubuntu2.1 deb -gnupg-utils 2.2.27-3ubuntu2.1 deb -go.etcd.io/bbolt v1.3.7 go-module -go.etcd.io/etcd/client/pkg/v3 v3.5.6 go-module -go.etcd.io/etcd/pkg/v3 v3.5.6 go-module -go.etcd.io/etcd/raft/v3 v3.5.6 go-module -go.etcd.io/etcd/server/v3 v3.5.6 go-module -go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module -go.opencensus.io v0.24.0 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.29.0 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.45.0 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.29.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.45.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.29.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 go-module -go.opentelemetry.io/otel v1.19.0 go-module -go.opentelemetry.io/otel v1.21.0 go-module -go.opentelemetry.io/otel v1.4.1 go-module -go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.4.1 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.19.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.19.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.3.0 go-module -go.opentelemetry.io/otel/internal/metric v0.27.0 go-module -go.opentelemetry.io/otel/metric v0.27.0 go-module -go.opentelemetry.io/otel/metric v1.19.0 go-module -go.opentelemetry.io/otel/metric v1.21.0 go-module -go.opentelemetry.io/otel/sdk v1.19.0 go-module -go.opentelemetry.io/otel/sdk v1.21.0 go-module -go.opentelemetry.io/otel/sdk v1.4.1 go-module -go.opentelemetry.io/otel/trace v1.19.0 go-module -go.opentelemetry.io/otel/trace v1.21.0 go-module -go.opentelemetry.io/otel/trace v1.4.1 go-module -go.opentelemetry.io/proto/otlp v0.11.0 go-module -go.opentelemetry.io/proto/otlp v0.12.0 go-module -go.opentelemetry.io/proto/otlp v1.0.0 go-module -go.uber.org/atomic v1.9.0 go-module -go.uber.org/multierr v1.8.0 go-module -go.uber.org/zap v1.21.0 go-module -golang.org/x/crypto v0.0.0-20211202192323-5770296d904e go-module -golang.org/x/crypto v0.17.0 go-module -golang.org/x/crypto v0.18.0 go-module -golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 go-module -golang.org/x/mod v0.11.0 go-module -golang.org/x/mod v0.5.0 go-module -golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module -golang.org/x/net v0.0.0-20211216030914-fe4d6282115f go-module -golang.org/x/net v0.17.0 go-module -golang.org/x/net v0.18.0 go-module -golang.org/x/net v0.8.0 go-module -golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 go-module -golang.org/x/oauth2 v0.10.0 go-module -golang.org/x/oauth2 v0.11.0 go-module -golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module -golang.org/x/sync v0.3.0 go-module -golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module -golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module -golang.org/x/sys v0.16.0 go-module -golang.org/x/sys v0.6.0 go-module -golang.org/x/sys v0.7.0 go-module -golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module -golang.org/x/term v0.16.0 go-module -golang.org/x/text v0.14.0 go-module -golang.org/x/text v0.3.7 go-module -golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module -golang.org/x/time v0.3.0 go-module -golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module -google.golang.org/api v0.126.0 go-module -google.golang.org/appengine v1.6.7 go-module -google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63 go-module -google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa go-module -google.golang.org/genproto v0.0.0-20230711160842-782d3b101e98 go-module -google.golang.org/genproto/googleapis/api v0.0.0-20230711160842-782d3b101e98 go-module -google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 go-module -google.golang.org/grpc v1.44.0 go-module -google.golang.org/grpc v1.58.3 go-module -google.golang.org/grpc v1.59.0 go-module -google.golang.org/protobuf v1.27.1 go-module -google.golang.org/protobuf v1.31.0 go-module -gopd 1.0.1 npm -gopkg.in/inf.v0 v0.9.1 go-module -gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module -gopkg.in/square/go-jose.v2 v2.5.1 go-module -gopkg.in/yaml.v2 v2.4.0 go-module -gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b go-module -gpg 2.2.27-3ubuntu2.1 deb -gpg-agent 2.2.27-3ubuntu2.1 deb -gpg-wks-client 2.2.27-3ubuntu2.1 deb -gpg-wks-server 2.2.27-3ubuntu2.1 deb -gpgconf 2.2.27-3ubuntu2.1 deb -gpgsm 2.2.27-3ubuntu2.1 deb -gpgv 2.2.27-3ubuntu2.1 deb -graceful-fs 4.2.11 npm -grep 3.7-1build1 deb -gzip 1.10-4ubuntu4.1 deb -has-property-descriptors 1.0.2 npm -has-proto 1.0.3 npm -has-symbols 1.0.3 npm -has-unicode 2.0.1 npm -hasown 2.0.0 npm -hasown 2.0.1 npm -hosted-git-info 7.0.1 npm -hostname 3.23ubuntu2 deb -http-cache-semantics 4.1.1 npm -http-errors 2.0.0 npm -http-proxy-agent 7.0.0 npm -https-proxy-agent 7.0.2 npm -iconv-lite 0.4.24 npm -iconv-lite 0.6.3 npm -ieee754 1.2.1 npm -ignore-walk 6.0.3 npm -imurmurhash 0.1.4 npm -indent-string 4.0.0 npm -inherits 2.0.4 npm -ini 4.1.1 npm -init-package-json 6.0.0 npm -init-system-helpers 1.62 deb -ip 2.0.0 npm -ip-regex 5.0.0 npm -ipaddr.js 1.9.1 npm -iptables 1.8.7-1ubuntu5.2 deb -is-cidr 5.0.3 npm -is-core-module 2.13.1 npm -is-fullwidth-code-point 3.0.0 npm -is-lambda 1.0.1 npm -isexe 2.0.0 npm -isexe 3.1.1 npm -jackspeak 2.3.6 npm -jq 1.6-2.1ubuntu3 deb -js-yaml 4.1.0 npm -json-parse-even-better-errors 3.0.0 npm -json-stringify-nice 1.1.4 npm -jsonparse 1.3.1 npm -just-diff 6.0.2 npm -just-diff-apply 5.5.0 npm -k8s.io/api v0.22.5 go-module -k8s.io/apimachinery v0.22.4 go-module -k8s.io/apimachinery v0.22.5 go-module -k8s.io/apiserver v0.22.5 go-module -k8s.io/client-go v0.22.4 go-module -k8s.io/client-go v0.22.5 go-module -k8s.io/component-base v0.22.5 go-module -k8s.io/cri-api v0.25.0 go-module -k8s.io/klog/v2 v2.30.0 go-module -k8s.io/klog/v2 v2.90.1 go-module -k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b go-module -k8s.io/utils v0.0.0-20211116205334-6203023598ed go-module -kasm-wizard 0.0.1 npm -libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.11 deb -libassuan0 2.5.5-1build1 deb -libattr1 1:2.5.1-1build1 deb -libaudit-common 1:3.0.7-1build1 deb -libaudit1 1:3.0.7-1build1 deb -libblkid1 2.37.2-4ubuntu3 deb -libbrotli1 1.0.9-2build6 deb -libbsd0 0.11.5-1 deb -libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.1 deb -libc6 2.35-0ubuntu3.6 deb -libcap-ng0 0.7.9-2.2build3 deb -libcap2 1:2.44-1ubuntu0.22.04.1 deb -libcom-err2 1.46.5-2ubuntu1.1 deb -libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.15 deb -libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb -libdebconfclient0 0.261ubuntu1 deb -libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb -libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb -libdrm2 2.4.113-2~ubuntu0.22.04.1 deb -libedit2 3.1-20210910-1build1 deb -libexpat1 2.4.7-1ubuntu0.2 deb -libext2fs2 1.46.5-2ubuntu1.1 deb -libffi8 3.4.2-4 deb -libfuse3-3 3.10.5-1build1 deb -libgcc-s1 12.3.0-1ubuntu1~22.04 deb -libgcrypt20 1.9.4-3ubuntu3 deb -libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.2 deb -libgpg-error0 1.43-3 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb -libhogweed6 3.7.3-1build2 deb -libicu70 70.1-2 deb -libidn2-0 2.3.2-2build1 deb -libinih1 53-1ubuntu3 deb -libip4tc2 1.8.7-1ubuntu5.2 deb -libip6tc2 1.8.7-1ubuntu5.2 deb -libjq1 1.6-2.1ubuntu3 deb -libjson-c5 0.15-3~ubuntu1.22.04.2 deb -libk5crypto3 1.19.2-2ubuntu0.2 deb -libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.2 deb -libkrb5support0 1.19.2-2ubuntu0.2 deb -libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.2 deb -libldap-common 2.5.16+dfsg-0ubuntu0.22.04.2 deb -liblz4-1 1.9.3-2build2 deb -liblzma5 5.2.5-2ubuntu1 deb -liblzo2-2 2.10-2build3 deb -libmd0 1.0.4-1build1 deb -libmnl0 1.0.4-3build2 deb -libmount1 2.37.2-4ubuntu3 deb -libmpdec3 2.5.1-2build2 deb -libncurses6 6.3-2ubuntu0.1 deb -libncursesw6 6.3-2ubuntu0.1 deb -libnetfilter-conntrack3 1.0.9-1 deb -libnettle8 3.7.3-1build2 deb -libnfnetlink0 1.0.1-3build3 deb -libnftnl11 1.2.1-1build1 deb -libnghttp2-14 1.43.0-1ubuntu0.1 deb -libnpmaccess 8.0.1 npm -libnpmdiff 6.0.3 npm -libnpmexec 7.0.4 npm -libnpmfund 5.0.1 npm -libnpmhook 10.0.0 npm -libnpmorg 6.0.1 npm -libnpmpack 6.0.3 npm -libnpmpublish 9.0.2 npm -libnpmsearch 7.0.0 npm -libnpmteam 6.0.0 npm -libnpmversion 5.0.1 npm -libnpth0 1.6-3build2 deb -libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.14.5-1 deb -libnvidia-container1 1.14.5-1 deb -libonig5 6.9.7.1-2build1 deb -libp11-kit0 0.24.0-6build1 deb -libpam-modules 1.4.0-11ubuntu2.3 deb -libpam-modules-bin 1.4.0-11ubuntu2.3 deb -libpam-runtime 1.4.0-11ubuntu2.3 deb -libpam0g 1.4.0-11ubuntu2.3 deb -libpcre2-8-0 10.39-3ubuntu0.1 deb -libpcre3 2:8.39-13ubuntu0.22.04.1 deb -libprocps8 2:3.3.17-6ubuntu2 deb -libpsl5 0.21.0-1.2build2 deb -libpython3-stdlib 3.10.6-1~22.04 deb -libpython3.10-minimal 3.10.12-1~22.04.3 deb -libpython3.10-stdlib 3.10.12-1~22.04.3 deb -libreadline8 8.1.2-1 deb -librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb -libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libseccomp2 2.5.3-2ubuntu2 deb -libselinux1 3.3-1build2 deb -libsemanage-common 3.3-1build2 deb -libsemanage2 3.3-1build2 deb -libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3 deb -libsqlite3-0 3.37.2-2ubuntu0.3 deb -libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2ubuntu0.22.04.3 deb -libssl3 3.0.2-0ubuntu1.10 deb -libstdc++6 12.3.0-1ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.9 deb -libtasn1-6 4.18.0-4build1 deb -libtinfo6 6.3-2ubuntu0.1 deb -libtirpc-common 1.3.2-2ubuntu0.1 deb -libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.9 deb -libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3 deb -libxtables12 1.8.7-1ubuntu5.2 deb -libxxhash0 0.8.1-1 deb -libzstd1 1.4.8+dfsg-3build1 deb -locales 2.35-0ubuntu3.6 deb -lodash 4.17.21 npm -login 1:4.8.1-2ubuntu2.1 deb -logsave 1.46.5-2ubuntu1.1 deb -lru-cache 10.0.2 npm -lru-cache 6.0.0 npm -lsb-base 11.1.0ubuntu4 deb -lsof 4.93.2+dfsg-1.1build2 deb -make-fetch-happen 13.0.0 npm -mawk 1.3.4.20200120-3 deb -media-typer 0.3.0 npm -media-types 7.0.0 deb -merge-descriptors 1.0.1 npm -methods 1.1.2 npm -mime 1.6.0 npm -mime-db 1.52.0 npm -mime-types 2.1.35 npm -minimatch 9.0.3 npm -minipass 3.3.6 npm -minipass 5.0.0 npm -minipass 7.0.4 npm -minipass-collect 1.0.2 npm -minipass-fetch 3.0.4 npm -minipass-flush 1.0.5 npm -minipass-json-stream 1.0.1 npm -minipass-pipeline 1.2.4 npm -minipass-sized 1.0.3 npm -minizlib 2.1.2 npm -mkdirp 1.0.4 npm -mkdirp-classic 0.5.3 npm -mount 2.37.2-4ubuntu3 deb -ms 2.0.0 npm -ms 2.1.2 npm -ms 2.1.3 npm -mute-stream 1.0.0 npm -nan 2.18.0 npm -ncurses-base 6.3-2ubuntu0.1 deb -ncurses-bin 6.3-2ubuntu0.1 deb -negotiator 0.6.3 npm -netbase 6.3 deb -netcat 1.218-4ubuntu1 deb -netcat-openbsd 1.218-4ubuntu1 deb -node-gyp 10.0.1 npm -node-pty 0.10.1 npm -nodejs 18.19.1-1nodesource1 deb -nopt 7.2.0 npm -normalize-package-data 6.0.0 npm -npm 10.2.4 npm -npm-audit-report 5.0.0 npm -npm-bundled 3.0.0 npm -npm-install-checks 6.3.0 npm -npm-normalize-package-bin 3.0.1 npm -npm-package-arg 11.0.1 npm -npm-packlist 8.0.0 npm -npm-pick-manifest 9.0.0 npm -npm-profile 9.0.0 npm -npm-registry-fetch 16.1.0 npm -npm-user-validate 2.0.0 npm -npmlog 7.0.1 npm -nvidia-container-toolkit 1.14.5-1 deb -nvidia-container-toolkit-base 1.14.5-1 deb -nvidia-docker2 2.14.0-1 deb -object-assign 4.1.1 npm -object-inspect 1.13.1 npm -on-finished 2.4.1 npm -once 1.4.0 npm -openssl 3.0.2-0ubuntu1.15 deb -p-map 4.0.0 npm -pacote 17.0.4 npm -parse-conflict-json 3.0.1 npm -parseurl 1.3.3 npm -passwd 1:4.8.1-2ubuntu2.1 deb -path-key 3.1.1 npm -path-scurry 1.10.1 npm -path-to-regexp 0.1.7 npm -perl-base 5.34.0-3ubuntu1.2 deb -pigz 2.6-1 deb -pinentry-curses 1.1.1-1build2 deb -postcss-selector-parser 6.0.13 npm -proc-log 3.0.0 npm -process 0.11.10 npm -procps 2:3.3.17-6ubuntu2 deb -promise-all-reject-late 1.0.1 npm -promise-call-limit 1.0.2 npm -promise-inflight 1.0.1 npm -promise-retry 2.0.1 npm -promzard 1.0.0 npm -proxy-addr 2.0.7 npm -publicsuffix 20211207.1025-1 deb -pump 3.0.0 npm -python3 3.10.6-1~22.04 deb -python3-minimal 3.10.6-1~22.04 deb -python3.10 3.10.12-1~22.04.3 deb -python3.10-minimal 3.10.12-1~22.04.3 deb -qrcode-terminal 0.12.0 npm -qs 6.11.0 npm -range-parser 1.2.1 npm -raw-body 2.5.1 npm -read 2.1.0 npm -read-cmd-shim 4.0.0 npm -read-package-json 7.0.0 npm -read-package-json-fast 3.0.2 npm -readable-stream 3.6.2 npm -readable-stream 4.4.2 npm -readline-common 8.1.2-1 deb -resenje.org/singleflight v0.4.1 go-module -retry 0.12.0 npm -safe-buffer 5.2.1 npm -safer-buffer 2.1.2 npm -sed 4.8-1ubuntu2 deb -semver 7.5.4 npm -send 0.18.0 npm -sensible-utils 0.0.17 deb -serve-static 1.15.0 npm -set-blocking 2.0.0 npm -set-function-length 1.2.1 npm -setprototypeof 1.2.0 npm -shebang-command 2.0.0 npm -shebang-regex 3.0.0 npm -side-channel 1.0.5 npm -signal-exit 4.1.0 npm -sigs.k8s.io/structured-merge-diff/v4 v4.1.2 go-module -sigs.k8s.io/structured-merge-diff/v4 v4.2.1 go-module -sigs.k8s.io/yaml v1.2.0 go-module -sigs.k8s.io/yaml v1.3.0 go-module -sigstore 2.1.0 npm -smart-buffer 4.2.0 npm -socket.io 4.7.4 npm -socket.io-adapter 2.5.4 npm -socket.io-parser 4.2.4 npm -socks 2.7.1 npm -socks-proxy-agent 8.0.2 npm -spdx-correct 3.2.0 npm -spdx-exceptions 2.3.0 npm -spdx-expression-parse 3.0.1 npm -spdx-license-ids 3.0.16 npm -split-ca 1.0.1 npm -ssh2 1.15.0 npm -ssri 10.0.5 npm -statuses 2.0.1 npm -stdlib go1.17.9 go-module -stdlib go1.18.1 go-module -stdlib go1.20.13 go-module -stdlib go1.20.5 go-module -stdlib go1.21.6 go-module -string-width 4.2.3 npm -string-width 5.1.2 npm -string_decoder 1.3.0 npm -strip-ansi 6.0.1 npm -strip-ansi 7.1.0 npm -sudo 1.9.9-1ubuntu2.4 deb -supports-color 9.4.0 npm -systeminformation 5.22.0 npm -sysvinit-utils 3.01-1ubuntu1 deb -tags.cncf.io/container-device-interface v0.6.2 go-module -tags.cncf.io/container-device-interface/specs-go v0.6.0 go-module -tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tar 6.2.0 npm -tar-fs 2.0.1 npm -tar-stream 2.2.0 npm -text-table 0.2.0 npm -tiny-relative-date 1.3.0 npm -toidentifier 1.0.1 npm -treeverse 3.0.0 npm -tuf-js 2.1.0 npm -tweetnacl 0.14.5 npm -type-is 1.6.18 npm -tzdata 2023d-0ubuntu0.22.04 deb -ubuntu-keyring 2021.03.26 deb -uidmap 1:4.8.1-2ubuntu2.2 deb -undici-types 5.26.5 npm -unique-filename 3.0.0 npm -unique-slug 4.0.0 npm -unpipe 1.0.0 npm -usrmerge 25ubuntu2 deb -util-deprecate 1.0.2 npm -util-linux 2.37.2-4ubuntu3 deb -utils-merge 1.0.1 npm -validate-npm-package-license 3.0.4 npm -validate-npm-package-name 5.0.0 npm -vary 1.1.2 npm -walk-up-path 3.0.1 npm -wcwidth 1.0.1 npm -which 2.0.2 npm -which 4.0.0 npm -wide-align 1.1.5 npm -wrap-ansi 7.0.0 npm -wrap-ansi 8.1.0 npm -wrappy 1.0.2 npm -write-file-atomic 5.0.1 npm -ws 8.11.0 npm -xfsprogs 5.13.0-1ubuntu2 deb -yallist 4.0.0 npm -zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb +NAME VERSION TYPE +1to2 1.0.0 npm +@balena/dockerignore 1.0.2 npm +@colors/colors 1.5.0 npm +@isaacs/cliui 8.0.2 npm +@isaacs/string-locale-compare 1.1.0 npm +@npmcli/agent 2.2.0 npm +@npmcli/arborist 7.2.1 npm +@npmcli/config 8.0.2 npm +@npmcli/disparity-colors 3.0.0 npm +@npmcli/fs 3.1.0 npm +@npmcli/git 5.0.3 npm +@npmcli/installed-package-contents 2.0.2 npm +@npmcli/map-workspaces 3.0.4 npm +@npmcli/metavuln-calculator 7.0.0 npm +@npmcli/name-from-folder 2.0.0 npm +@npmcli/node-gyp 3.0.0 npm +@npmcli/package-json 5.0.0 npm +@npmcli/promise-spawn 7.0.0 npm +@npmcli/query 3.0.1 npm +@npmcli/run-script 7.0.2 npm +@pkgjs/parseargs 0.11.0 npm +@sigstore/bundle 2.1.0 npm +@sigstore/protobuf-specs 0.2.1 npm +@sigstore/sign 2.2.0 npm +@sigstore/tuf 2.2.0 npm +@socket.io/component-emitter 3.1.0 npm +@tufjs/canonical-json 2.0.0 npm +@tufjs/models 2.0.0 npm +@types/cookie 0.4.1 npm +@types/cors 2.8.17 npm +@types/node 20.11.24 npm +abbrev 2.0.0 npm +abort-controller 3.0.0 npm +accepts 1.3.8 npm +adduser 3.118ubuntu5 deb +agent-base 7.1.0 npm +aggregate-error 3.1.0 npm +ansi-regex 5.0.1 npm (+6 duplicates) +ansi-regex 6.0.1 npm +ansi-styles 4.3.0 npm (+1 duplicate) +ansi-styles 6.2.1 npm +aproba 2.0.0 npm +apt 2.4.11 deb +apt-transport-https 2.4.11 deb +apt-utils 2.4.11 deb +archy 1.0.0 npm +are-we-there-yet 4.0.1 npm +argparse 2.0.1 npm +array-flatten 1.1.1 npm +asn1 0.2.6 npm +balanced-match 1.0.2 npm +base-files 12ubuntu4.3 deb +base-passwd 3.5.52build1 deb +base64-js 1.5.1 npm (+1 duplicate) +base64id 2.0.0 npm +bash 5.1-6ubuntu1 deb +bash 5.1.16 binary +bcrypt-pbkdf 1.0.2 npm +bin-links 4.0.3 npm +binary-extensions 2.2.0 npm +bl 4.1.0 npm +body-parser 1.20.2 npm +brace-expansion 2.0.1 npm +bsdutils 1:2.37.2-4ubuntu3 deb +btrfs-progs 5.16.2-1 deb +buffer 5.7.1 npm +buffer 6.0.3 npm +buildcheck 0.0.6 npm +builtins 5.0.1 npm +bytes 3.1.2 npm +ca-certificates 20230311ubuntu0.22.04.1 deb +cacache 18.0.0 npm +call-bind 1.0.7 npm +chalk 5.3.0 npm +chownr 1.1.4 npm +chownr 2.0.0 npm +ci-info 4.0.0 npm +cidr-regex 4.0.3 npm +clean-stack 2.2.0 npm +cli-columns 4.0.0 npm +cli-table3 0.6.3 npm +clone 1.0.4 npm +cloud.google.com/go/compute/metadata v0.2.3 go-module +cloud.google.com/go/logging v1.7.0 go-module +cloud.google.com/go/longrunning v0.5.1 go-module +cmd-shim 6.0.2 npm +code.cloudfoundry.org/clock v1.1.0 go-module +color-convert 2.0.1 npm +color-name 1.1.4 npm +color-support 1.1.3 npm +columnify 1.6.0 npm +common-ancestor-path 1.0.1 npm +console-control-strings 1.1.0 npm +containerd.io 1.6.28-1 deb +content-disposition 0.5.4 npm +content-type 1.0.5 npm +cookie 0.4.2 npm +cookie 0.5.0 npm +cookie-signature 1.0.6 npm +corepack 0.22.0 npm +coreutils 8.32-4.1ubuntu1 deb +cors 2.8.5 npm +cpu-features 0.0.9 npm +cron 3.0pl1-137ubuntu3 deb +cross-spawn 7.0.3 npm +cssesc 3.0.0 npm +curl 7.81.0-1ubuntu1.15 deb +dario.cat/mergo v1.0.0 go-module (+1 duplicate) +dash 0.5.11+git20210903+057cd650a4ed-3build1 deb +debconf 1.5.79ubuntu1 deb +debianutils 5.5-1ubuntu2 deb +debug 2.6.9 npm (+3 duplicates) +debug 4.3.4 npm (+1 duplicate) +defaults 1.0.4 npm +define-data-property 1.1.4 npm +delegates 1.0.0 npm +depd 2.0.0 npm +destroy 1.2.0 npm +diff 5.1.0 npm +diffutils 1:3.8-0ubuntu2 deb +dirmngr 2.2.27-3ubuntu2.1 deb +docker-ce 5:25.0.3-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:25.0.3-1~ubuntu.22.04~jammy deb +docker-modem 3.0.8 npm +dockerode 3.3.5 npm +dpkg 1.21.1ubuntu2.2 deb +drm-info 2.2.0-2 deb +e2fsprogs 1.46.5-2ubuntu1.1 deb +eastasianwidth 0.2.0 npm +ee-first 1.1.1 npm +emoji-regex 8.0.0 npm +emoji-regex 9.2.2 npm (+1 duplicate) +encodeurl 1.0.2 npm +encoding 0.1.13 npm +end-of-stream 1.4.4 npm +engine.io 6.5.4 npm +engine.io-parser 5.2.2 npm +env-paths 2.2.1 npm +err-code 2.0.3 npm +es-define-property 1.0.0 npm +es-errors 1.3.0 npm +escape-html 1.0.3 npm +etag 1.8.1 npm +event-target-shim 5.0.1 npm +events 3.3.0 npm +exponential-backoff 3.1.1 npm +express 4.18.3 npm +fastest-levenshtein 1.0.16 npm +finalhandler 1.2.0 npm +findutils 4.8.0-1ubuntu3 deb +foreground-child 3.1.1 npm +forwarded 0.2.0 npm +fresh 0.5.2 npm +fs-constants 1.0.0 npm +fs-minipass 2.1.0 npm +fs-minipass 3.0.3 npm +function-bind 1.1.2 npm (+1 duplicate) +fuse-overlayfs 1.7.1-1 deb +fuse3 3.10.5-1build1 deb +gauge 5.0.1 npm +gcc-12-base 12.3.0-1ubuntu1~22.04 deb +get-intrinsic 1.2.4 npm +github.com/AlecAivazis/survey/v2 v2.3.2 go-module +github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module +github.com/Masterminds/semver v1.5.0 go-module +github.com/Microsoft/hcsshim v0.11.4 go-module +github.com/Microsoft/hcsshim v0.9.10 go-module (+1 duplicate) +github.com/NVIDIA/go-nvml v0.12.0-2 go-module (+2 duplicates) +github.com/NVIDIA/nvidia-container-toolkit v1.14.6 go-module (+2 duplicates) +github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module +github.com/a8m/envsubst v1.3.0 go-module (+1 duplicate) +github.com/agext/levenshtein v1.2.3 go-module +github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412 go-module +github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092 go-module +github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 go-module +github.com/armon/go-metrics v0.4.1 go-module +github.com/aws/aws-sdk-go-v2 v1.17.6 go-module +github.com/aws/aws-sdk-go-v2/config v1.18.16 go-module +github.com/aws/aws-sdk-go-v2/credentials v1.13.16 go-module +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.24 go-module +github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.30 go-module +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.24 go-module +github.com/aws/aws-sdk-go-v2/internal/ini v1.3.31 go-module +github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.15.17 go-module +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.24 go-module +github.com/aws/aws-sdk-go-v2/service/sso v1.12.5 go-module +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.5 go-module +github.com/aws/aws-sdk-go-v2/service/sts v1.18.6 go-module +github.com/aws/smithy-go v1.13.5 go-module +github.com/beorn7/perks v1.0.1 go-module (+2 duplicates) +github.com/blang/semver v3.5.1+incompatible go-module +github.com/buger/goterm v1.0.4 go-module +github.com/cenkalti/backoff/v4 v4.1.2 go-module +github.com/cenkalti/backoff/v4 v4.2.1 go-module +github.com/cespare/xxhash/v2 v2.1.2 go-module +github.com/cespare/xxhash/v2 v2.2.0 go-module (+1 duplicate) +github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module +github.com/cilium/ebpf v0.11.0 go-module +github.com/cilium/ebpf v0.7.0 go-module (+4 duplicates) +github.com/cloudflare/cfssl v1.6.4 go-module +github.com/cnabio/cnab-go v0.10.0-beta1 go-module +github.com/cnabio/cnab-to-oci v0.3.1-beta1 go-module +github.com/compose-spec/compose-go v1.2.4 go-module +github.com/container-storage-interface/spec v1.5.0 go-module +github.com/containerd/aufs v1.0.0 go-module +github.com/containerd/btrfs v1.0.0 go-module +github.com/containerd/cgroups v1.0.4 go-module (+3 duplicates) +github.com/containerd/cgroups/v3 v3.0.3 go-module +github.com/containerd/console v1.0.3 go-module (+7 duplicates) +github.com/containerd/containerd v1.6.2 go-module +github.com/containerd/containerd v1.6.28 go-module (+4 duplicates) +github.com/containerd/containerd v1.7.12 go-module +github.com/containerd/continuity v0.2.2 go-module +github.com/containerd/continuity v0.3.0 go-module (+3 duplicates) +github.com/containerd/continuity v0.4.2 go-module +github.com/containerd/fifo v1.0.0 go-module (+4 duplicates) +github.com/containerd/fifo v1.1.0 go-module +github.com/containerd/go-cni v1.1.6 go-module (+1 duplicate) +github.com/containerd/go-cni v1.1.9 go-module +github.com/containerd/go-runc v1.0.0 go-module (+4 duplicates) +github.com/containerd/go-runc v1.1.0 go-module +github.com/containerd/imgcrypt v1.1.4 go-module +github.com/containerd/log v0.1.0 go-module (+6 duplicates) +github.com/containerd/nri v0.1.1 go-module +github.com/containerd/nydus-snapshotter v0.8.2 go-module +github.com/containerd/stargz-snapshotter/estargz v0.14.3 go-module +github.com/containerd/ttrpc v1.1.0 go-module +github.com/containerd/ttrpc v1.1.2 go-module (+4 duplicates) +github.com/containerd/ttrpc v1.2.2 go-module +github.com/containerd/typeurl v1.0.2 go-module (+5 duplicates) +github.com/containerd/typeurl/v2 v2.1.1 go-module +github.com/containerd/zfs v1.1.0 go-module +github.com/containernetworking/cni v1.1.1 go-module (+1 duplicate) +github.com/containernetworking/cni v1.1.2 go-module +github.com/containernetworking/plugins v1.1.1 go-module +github.com/containers/ocicrypt v1.1.3 go-module +github.com/coreos/go-systemd/v22 v22.3.2 go-module (+4 duplicates) +github.com/coreos/go-systemd/v22 v22.5.0 go-module +github.com/cpuguy83/go-md2man/v2 v2.0.0 go-module (+1 duplicate) +github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module +github.com/cpuguy83/go-md2man/v2 v2.0.2 go-module +github.com/cyphar/filepath-securejoin v0.2.4 go-module (+1 duplicate) +github.com/davecgh/go-spew v1.1.1 go-module (+1 duplicate) +github.com/deckarep/golang-set/v2 v2.3.0 go-module +github.com/dimchansky/utfbom v1.1.1 go-module +github.com/distribution/distribution/v3 v3.0.0-20210316161203-a01c71e2477e go-module +github.com/distribution/reference v0.5.0 go-module +github.com/docker/buildx v0.8.1 go-module +github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module +github.com/docker/cli/cmd/docker v25.0.3 go-module +github.com/docker/compose/v2 v2.5.0 go-module +github.com/docker/distribution v2.8.0+incompatible go-module +github.com/docker/distribution v2.8.3+incompatible go-module +github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module +github.com/docker/docker v25.0.3 go-module (+1 duplicate) +github.com/docker/docker-credential-helpers v0.6.4 go-module +github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module +github.com/docker/go-connections v0.4.0 go-module +github.com/docker/go-connections v0.5.0 go-module +github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module (+4 duplicates) +github.com/docker/go-metrics v0.0.1 go-module (+2 duplicates) +github.com/docker/go-units v0.4.0 go-module (+5 duplicates) +github.com/docker/go-units v0.5.0 go-module +github.com/docker/libtrust v0.0.0-20150526203908-9cbd2a1374f4 go-module +github.com/dustin/go-humanize v1.0.0 go-module +github.com/elliotchance/orderedmap v1.4.0 go-module (+1 duplicate) +github.com/emicklei/go-restful v2.16.0+incompatible go-module +github.com/emicklei/go-restful/v3 v3.10.1 go-module +github.com/fatih/color v1.13.0 go-module (+1 duplicate) +github.com/felixge/httpsnoop v1.0.2 go-module +github.com/felixge/httpsnoop v1.0.4 go-module +github.com/fernet/fernet-go v0.0.0-20211208181803-9f70042a33ee go-module +github.com/fluent/fluent-logger-golang v1.9.0 go-module +github.com/fsnotify/fsnotify v1.4.9 go-module +github.com/fsnotify/fsnotify v1.6.0 go-module +github.com/fsnotify/fsnotify v1.7.0 go-module (+2 duplicates) +github.com/fvbommel/sortorder v1.0.1 go-module +github.com/go-logr/logr v1.2.2 go-module +github.com/go-logr/logr v1.2.4 go-module +github.com/go-logr/logr v1.3.0 go-module +github.com/go-logr/stdr v1.2.2 go-module (+2 duplicates) +github.com/goccy/go-yaml v1.9.5 go-module (+1 duplicate) +github.com/godbus/dbus/v5 v5.0.6 go-module (+4 duplicates) +github.com/godbus/dbus/v5 v5.1.0 go-module +github.com/gofrs/flock v0.8.0 go-module +github.com/gofrs/flock v0.8.1 go-module +github.com/gogo/googleapis v1.3.2 go-module (+1 duplicate) +github.com/gogo/googleapis v1.4.1 go-module (+1 duplicate) +github.com/gogo/protobuf v1.3.2 go-module (+6 duplicates) +github.com/golang-jwt/jwt/v4 v4.4.2 go-module +github.com/golang/gddo v0.0.0-20190904175337-72a348e765d2 go-module +github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da go-module +github.com/golang/mock v1.6.0 go-module +github.com/golang/protobuf v1.5.2 go-module +github.com/golang/protobuf v1.5.3 go-module (+5 duplicates) +github.com/google/btree v1.1.2 go-module +github.com/google/certificate-transparency-go v1.1.4 go-module +github.com/google/go-cmp v0.5.7 go-module +github.com/google/go-cmp v0.6.0 go-module (+1 duplicate) +github.com/google/gofuzz v1.2.0 go-module (+1 duplicate) +github.com/google/s2a-go v0.1.4 go-module +github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module (+1 duplicate) +github.com/google/uuid v1.3.1 go-module (+1 duplicate) +github.com/google/uuid v1.5.0 go-module +github.com/googleapis/enterprise-certificate-proxy v0.2.3 go-module +github.com/googleapis/gax-go/v2 v2.11.0 go-module +github.com/gorilla/mux v1.8.0 go-module +github.com/gorilla/mux v1.8.1 go-module +github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module (+2 duplicates) +github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module (+1 duplicate) +github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module (+1 duplicate) +github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 go-module +github.com/hashicorp/errwrap v1.1.0 go-module (+5 duplicates) +github.com/hashicorp/go-immutable-radix v1.3.1 go-module +github.com/hashicorp/go-memdb v1.3.2 go-module +github.com/hashicorp/go-msgpack v0.5.5 go-module +github.com/hashicorp/go-multierror v1.1.1 go-module (+5 duplicates) +github.com/hashicorp/go-sockaddr v1.0.2 go-module +github.com/hashicorp/go-version v1.3.0 go-module +github.com/hashicorp/golang-lru v0.5.4 go-module +github.com/hashicorp/memberlist v0.4.0 go-module +github.com/hashicorp/serf v0.8.5 go-module +github.com/imdario/mergo v0.3.12 go-module +github.com/in-toto/in-toto-golang v0.5.0 go-module +github.com/intel/goresctrl v0.2.0 go-module +github.com/ishidawataru/sctp v0.0.0-20230406120618-7ff4192f6ff2 go-module (+1 duplicate) +github.com/jinzhu/copier v0.3.5 go-module (+1 duplicate) +github.com/jmoiron/sqlx v1.3.3 go-module +github.com/json-iterator/go v1.1.12 go-module (+1 duplicate) +github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module +github.com/klauspost/compress v1.15.0 go-module +github.com/klauspost/compress v1.15.9 go-module (+3 duplicates) +github.com/klauspost/compress v1.17.4 go-module +github.com/magiconair/properties v1.8.6 go-module (+1 duplicate) +github.com/mattn/go-colorable v0.1.12 go-module (+2 duplicates) +github.com/mattn/go-isatty v0.0.14 go-module (+2 duplicates) +github.com/mattn/go-shellwords v1.0.12 go-module +github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 go-module +github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module (+1 duplicate) +github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module +github.com/miekg/dns v1.1.43 go-module +github.com/miekg/pkcs11 v1.1.1 go-module +github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module (+1 duplicate) +github.com/mistifyio/go-zfs/v3 v3.0.1 go-module (+1 duplicate) +github.com/mitchellh/copystructure v1.2.0 go-module +github.com/mitchellh/hashstructure/v2 v2.0.2 go-module +github.com/mitchellh/mapstructure v1.4.3 go-module +github.com/mitchellh/reflectwalk v1.0.2 go-module +github.com/moby/buildkit v0.10.0-rc2.0.20220308185020-fdecd0ae108b go-module +github.com/moby/buildkit v0.12.5 go-module +github.com/moby/ipvs v1.1.0 go-module +github.com/moby/locker v1.0.1 go-module (+3 duplicates) +github.com/moby/patternmatcher v0.6.0 go-module +github.com/moby/pubsub v1.0.0 go-module +github.com/moby/spdystream v0.2.0 go-module +github.com/moby/swarmkit/v2 v2.0.0-20240125134710-dcda100a8261 go-module +github.com/moby/sys/mount v0.3.3 go-module +github.com/moby/sys/mountinfo v0.5.0 go-module +github.com/moby/sys/mountinfo v0.6.2 go-module (+4 duplicates) +github.com/moby/sys/mountinfo v0.7.1 go-module +github.com/moby/sys/sequential v0.5.0 go-module +github.com/moby/sys/signal v0.6.0 go-module (+2 duplicates) +github.com/moby/sys/signal v0.7.0 go-module +github.com/moby/sys/symlink v0.2.0 go-module (+2 duplicates) +github.com/moby/sys/user v0.1.0 go-module (+4 duplicates) +github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 go-module +github.com/moby/term v0.5.0 go-module +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module (+1 duplicate) +github.com/modern-go/reflect2 v1.0.2 go-module (+1 duplicate) +github.com/morikuni/aec v1.0.0 go-module (+1 duplicate) +github.com/mrunalp/fileutils v0.5.1 go-module +github.com/opencontainers/go-digest v1.0.0 go-module (+6 duplicates) +github.com/opencontainers/image-spec v1.0.2 go-module +github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module (+3 duplicates) +github.com/opencontainers/image-spec v1.1.0-rc5 go-module +github.com/opencontainers/runc 1.1.12 go-module +github.com/opencontainers/runc v1.1.0 go-module +github.com/opencontainers/runc v1.1.12 go-module +github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module (+5 duplicates) +github.com/opencontainers/runtime-spec v1.1.0 go-module +github.com/opencontainers/runtime-spec v1.2.0 go-module (+2 duplicates) +github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module (+3 duplicates) +github.com/opencontainers/selinux v1.10.0 go-module +github.com/opencontainers/selinux v1.10.1 go-module (+1 duplicate) +github.com/opencontainers/selinux v1.11.0 go-module +github.com/package-url/packageurl-go v0.1.1-0.20220428063043-89078438f170 go-module +github.com/pelletier/go-toml v1.9.4 go-module +github.com/pelletier/go-toml v1.9.5 go-module (+5 duplicates) +github.com/philhofer/fwd v1.1.2 go-module +github.com/pkg/errors v0.9.1 go-module (+6 duplicates) +github.com/prometheus/client_golang v1.11.1 go-module +github.com/prometheus/client_golang v1.12.1 go-module +github.com/prometheus/client_golang v1.14.0 go-module +github.com/prometheus/client_model v0.2.0 go-module (+1 duplicate) +github.com/prometheus/client_model v0.3.0 go-module +github.com/prometheus/common v0.30.0 go-module +github.com/prometheus/common v0.32.1 go-module +github.com/prometheus/common v0.42.0 go-module +github.com/prometheus/procfs v0.7.3 go-module (+1 duplicate) +github.com/prometheus/procfs v0.9.0 go-module +github.com/qri-io/jsonpointer v0.1.0 go-module +github.com/qri-io/jsonschema v0.1.1 go-module +github.com/rootless-containers/rootlesskit/v2 v2.0.0 go-module +github.com/russross/blackfriday/v2 v2.0.1 go-module (+2 duplicates) +github.com/russross/blackfriday/v2 v2.1.0 go-module +github.com/sanathkr/go-yaml v0.0.0-20170819195128-ed9d249f429b go-module +github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 go-module +github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 go-module +github.com/secure-systems-lab/go-securesystemslib v0.4.0 go-module +github.com/shibumi/go-pathspec v1.3.0 go-module +github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module (+2 duplicates) +github.com/sirupsen/logrus v1.8.1 go-module (+1 duplicate) +github.com/sirupsen/logrus v1.9.3 go-module (+9 duplicates) +github.com/spdx/tools-golang v0.5.1 go-module +github.com/spf13/cobra v1.4.0 go-module (+2 duplicates) +github.com/spf13/cobra v1.8.0 go-module +github.com/spf13/pflag v1.0.5 go-module (+4 duplicates) +github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 go-module +github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module (+4 duplicates) +github.com/tchap/go-patricia v2.2.6+incompatible go-module +github.com/theupdateframework/notary v0.6.1 go-module +github.com/timtadh/data-structures v0.5.3 go-module (+1 duplicate) +github.com/timtadh/lexmachine v0.2.2 go-module (+1 duplicate) +github.com/tinylib/msgp v1.1.8 go-module +github.com/tonistiigi/fsutil v0.0.0-20220315205639-9ed612626da3 go-module +github.com/tonistiigi/fsutil v0.0.0-20230629203738-36ef4d8c0dbb go-module +github.com/tonistiigi/go-actions-cache v0.0.0-20220404170428-0bdeb6e1eac7 go-module +github.com/tonistiigi/go-archvariant v1.0.0 go-module +github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module (+1 duplicate) +github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f go-module +github.com/urfave/cli v1.22.1 go-module (+2 duplicates) +github.com/urfave/cli/v2 v2.27.1 go-module +github.com/vbatts/tar-split v0.11.5 go-module +github.com/vishvananda/netlink v1.1.0 go-module +github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5 go-module +github.com/vishvananda/netlink v1.2.1-beta.2 go-module +github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df go-module +github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f go-module +github.com/vishvananda/netns v0.0.4 go-module +github.com/weppos/publicsuffix-go v0.15.1-0.20210511084619-b1f36a2d6c0b go-module +github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb go-module +github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module +github.com/xeipuuv/gojsonschema v1.2.0 go-module +github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 go-module +github.com/zmap/zcrypto v0.0.0-20210511125630-18f1e0152cfc go-module +github.com/zmap/zlint/v3 v3.1.0 go-module +gitlab.com/nvidia/cloud-native/go-nvlib v0.0.0-20230818092907-09424fdc8884 go-module (+2 duplicates) +glob 10.3.10 npm +gnupg 2.2.27-3ubuntu2.1 deb +gnupg-l10n 2.2.27-3ubuntu2.1 deb +gnupg-utils 2.2.27-3ubuntu2.1 deb +go.etcd.io/bbolt v1.3.7 go-module (+1 duplicate) +go.etcd.io/etcd/client/pkg/v3 v3.5.6 go-module +go.etcd.io/etcd/pkg/v3 v3.5.6 go-module +go.etcd.io/etcd/raft/v3 v3.5.6 go-module +go.etcd.io/etcd/server/v3 v3.5.6 go-module +go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module +go.opencensus.io v0.24.0 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.29.0 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.45.0 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.29.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.45.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.29.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 go-module +go.opentelemetry.io/otel v1.19.0 go-module +go.opentelemetry.io/otel v1.21.0 go-module +go.opentelemetry.io/otel v1.4.1 go-module +go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.4.1 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.19.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.19.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.3.0 go-module +go.opentelemetry.io/otel/internal/metric v0.27.0 go-module +go.opentelemetry.io/otel/metric v0.27.0 go-module +go.opentelemetry.io/otel/metric v1.19.0 go-module +go.opentelemetry.io/otel/metric v1.21.0 go-module +go.opentelemetry.io/otel/sdk v1.19.0 go-module +go.opentelemetry.io/otel/sdk v1.21.0 go-module +go.opentelemetry.io/otel/sdk v1.4.1 go-module +go.opentelemetry.io/otel/trace v1.19.0 go-module +go.opentelemetry.io/otel/trace v1.21.0 go-module +go.opentelemetry.io/otel/trace v1.4.1 go-module +go.opentelemetry.io/proto/otlp v0.11.0 go-module +go.opentelemetry.io/proto/otlp v0.12.0 go-module +go.opentelemetry.io/proto/otlp v1.0.0 go-module +go.uber.org/atomic v1.9.0 go-module +go.uber.org/multierr v1.8.0 go-module +go.uber.org/zap v1.21.0 go-module +golang.org/x/crypto v0.0.0-20211202192323-5770296d904e go-module +golang.org/x/crypto v0.17.0 go-module +golang.org/x/crypto v0.18.0 go-module +golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 go-module +golang.org/x/mod v0.11.0 go-module +golang.org/x/mod v0.15.0 go-module (+2 duplicates) +golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module (+1 duplicate) +golang.org/x/net v0.0.0-20211216030914-fe4d6282115f go-module +golang.org/x/net v0.17.0 go-module +golang.org/x/net v0.18.0 go-module (+1 duplicate) +golang.org/x/net v0.8.0 go-module +golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 go-module +golang.org/x/oauth2 v0.10.0 go-module +golang.org/x/oauth2 v0.11.0 go-module +golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module +golang.org/x/sync v0.3.0 go-module (+4 duplicates) +golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module (+1 duplicate) +golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module +golang.org/x/sys v0.16.0 go-module (+6 duplicates) +golang.org/x/sys v0.17.0 go-module (+2 duplicates) +golang.org/x/sys v0.6.0 go-module +golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module +golang.org/x/term v0.16.0 go-module +golang.org/x/text v0.14.0 go-module (+2 duplicates) +golang.org/x/text v0.3.7 go-module (+2 duplicates) +golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module (+1 duplicate) +golang.org/x/time v0.3.0 go-module +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module (+1 duplicate) +google.golang.org/api v0.126.0 go-module +google.golang.org/appengine v1.6.7 go-module +google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63 go-module (+4 duplicates) +google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa go-module +google.golang.org/genproto v0.0.0-20230711160842-782d3b101e98 go-module +google.golang.org/genproto/googleapis/api v0.0.0-20230711160842-782d3b101e98 go-module +google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 go-module +google.golang.org/grpc v1.44.0 go-module +google.golang.org/grpc v1.58.3 go-module +google.golang.org/grpc v1.59.0 go-module (+4 duplicates) +google.golang.org/protobuf v1.27.1 go-module (+1 duplicate) +google.golang.org/protobuf v1.31.0 go-module (+5 duplicates) +gopd 1.0.1 npm +gopkg.in/inf.v0 v0.9.1 go-module (+1 duplicate) +gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module (+1 duplicate) +gopkg.in/square/go-jose.v2 v2.5.1 go-module +gopkg.in/yaml.v2 v2.4.0 go-module (+5 duplicates) +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b go-module (+1 duplicate) +gpg 2.2.27-3ubuntu2.1 deb +gpg-agent 2.2.27-3ubuntu2.1 deb +gpg-wks-client 2.2.27-3ubuntu2.1 deb +gpg-wks-server 2.2.27-3ubuntu2.1 deb +gpgconf 2.2.27-3ubuntu2.1 deb +gpgsm 2.2.27-3ubuntu2.1 deb +gpgv 2.2.27-3ubuntu2.1 deb +graceful-fs 4.2.11 npm +grep 3.7-1build1 deb +gzip 1.10-4ubuntu4.1 deb +has-property-descriptors 1.0.2 npm +has-proto 1.0.3 npm +has-symbols 1.0.3 npm +has-unicode 2.0.1 npm +hasown 2.0.0 npm +hasown 2.0.1 npm +hosted-git-info 7.0.1 npm +hostname 3.23ubuntu2 deb +http-cache-semantics 4.1.1 npm +http-errors 2.0.0 npm +http-proxy-agent 7.0.0 npm +https-proxy-agent 7.0.2 npm +iconv-lite 0.4.24 npm +iconv-lite 0.6.3 npm +ieee754 1.2.1 npm (+1 duplicate) +ignore-walk 6.0.3 npm +imurmurhash 0.1.4 npm +indent-string 4.0.0 npm +inherits 2.0.4 npm +ini 4.1.1 npm +init-package-json 6.0.0 npm +init-system-helpers 1.62 deb +ip 2.0.0 npm +ip-regex 5.0.0 npm +ipaddr.js 1.9.1 npm +iptables 1.8.7-1ubuntu5.2 deb +is-cidr 5.0.3 npm +is-core-module 2.13.1 npm +is-fullwidth-code-point 3.0.0 npm +is-lambda 1.0.1 npm +isexe 2.0.0 npm +isexe 3.1.1 npm +jackspeak 2.3.6 npm +jq 1.6-2.1ubuntu3 deb +js-yaml 4.1.0 npm +json-parse-even-better-errors 3.0.0 npm +json-stringify-nice 1.1.4 npm +jsonparse 1.3.1 npm +just-diff 6.0.2 npm +just-diff-apply 5.5.0 npm +k8s.io/api v0.22.5 go-module +k8s.io/apimachinery v0.22.4 go-module +k8s.io/apimachinery v0.22.5 go-module +k8s.io/apiserver v0.22.5 go-module +k8s.io/client-go v0.22.4 go-module +k8s.io/client-go v0.22.5 go-module +k8s.io/component-base v0.22.5 go-module +k8s.io/cri-api v0.25.0 go-module +k8s.io/klog/v2 v2.30.0 go-module (+1 duplicate) +k8s.io/klog/v2 v2.90.1 go-module +k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b go-module +k8s.io/utils v0.0.0-20211116205334-6203023598ed go-module +kasm-wizard 0.0.1 npm +libacl1 2.3.1-1 deb +libapt-pkg6.0 2.4.11 deb +libassuan0 2.5.5-1build1 deb +libattr1 1:2.5.1-1build1 deb +libaudit-common 1:3.0.7-1build1 deb +libaudit1 1:3.0.7-1build1 deb +libblkid1 2.37.2-4ubuntu3 deb +libbrotli1 1.0.9-2build6 deb +libbsd0 0.11.5-1 deb +libbz2-1.0 1.0.8-5build1 deb +libc-bin 2.35-0ubuntu3.1 deb +libc6 2.35-0ubuntu3.6 deb +libcap-ng0 0.7.9-2.2build3 deb +libcap2 1:2.44-1ubuntu0.22.04.1 deb +libcom-err2 1.46.5-2ubuntu1.1 deb +libcrypt1 1:4.4.27-1 deb +libcurl4 7.81.0-1ubuntu1.15 deb +libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb +libdebconfclient0 0.261ubuntu1 deb +libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb +libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb +libdrm2 2.4.113-2~ubuntu0.22.04.1 deb +libedit2 3.1-20210910-1build1 deb +libexpat1 2.4.7-1ubuntu0.2 deb +libext2fs2 1.46.5-2ubuntu1.1 deb +libffi8 3.4.2-4 deb +libfuse3-3 3.10.5-1build1 deb +libgcc-s1 12.3.0-1ubuntu1~22.04 deb +libgcrypt20 1.9.4-3ubuntu3 deb +libgmp10 2:6.2.1+dfsg-3ubuntu1 deb +libgnutls30 3.7.3-4ubuntu1.2 deb +libgpg-error0 1.43-3 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb +libhogweed6 3.7.3-1build2 deb +libicu70 70.1-2 deb +libidn2-0 2.3.2-2build1 deb +libinih1 53-1ubuntu3 deb +libip4tc2 1.8.7-1ubuntu5.2 deb +libip6tc2 1.8.7-1ubuntu5.2 deb +libjq1 1.6-2.1ubuntu3 deb +libjson-c5 0.15-3~ubuntu1.22.04.2 deb +libk5crypto3 1.19.2-2ubuntu0.2 deb +libkeyutils1 1.6.1-2ubuntu3 deb +libkrb5-3 1.19.2-2ubuntu0.2 deb +libkrb5support0 1.19.2-2ubuntu0.2 deb +libksba8 1.6.0-2ubuntu0.2 deb +libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.2 deb +libldap-common 2.5.16+dfsg-0ubuntu0.22.04.2 deb +liblz4-1 1.9.3-2build2 deb +liblzma5 5.2.5-2ubuntu1 deb +liblzo2-2 2.10-2build3 deb +libmd0 1.0.4-1build1 deb +libmnl0 1.0.4-3build2 deb +libmount1 2.37.2-4ubuntu3 deb +libmpdec3 2.5.1-2build2 deb +libncurses6 6.3-2ubuntu0.1 deb +libncursesw6 6.3-2ubuntu0.1 deb +libnetfilter-conntrack3 1.0.9-1 deb +libnettle8 3.7.3-1build2 deb +libnfnetlink0 1.0.1-3build3 deb +libnftnl11 1.2.1-1build1 deb +libnghttp2-14 1.43.0-1ubuntu0.1 deb +libnpmaccess 8.0.1 npm +libnpmdiff 6.0.3 npm +libnpmexec 7.0.4 npm +libnpmfund 5.0.1 npm +libnpmhook 10.0.0 npm +libnpmorg 6.0.1 npm +libnpmpack 6.0.3 npm +libnpmpublish 9.0.2 npm +libnpmsearch 7.0.0 npm +libnpmteam 6.0.0 npm +libnpmversion 5.0.1 npm +libnpth0 1.6-3build2 deb +libnsl2 1.3.0-2build2 deb +libnvidia-container-tools 1.14.6-1 deb +libnvidia-container1 1.14.6-1 deb +libonig5 6.9.7.1-2build1 deb +libp11-kit0 0.24.0-6build1 deb +libpam-modules 1.4.0-11ubuntu2.3 deb +libpam-modules-bin 1.4.0-11ubuntu2.3 deb +libpam-runtime 1.4.0-11ubuntu2.3 deb +libpam0g 1.4.0-11ubuntu2.3 deb +libpcre2-8-0 10.39-3ubuntu0.1 deb +libpcre3 2:8.39-13ubuntu0.22.04.1 deb +libprocps8 2:3.3.17-6ubuntu2 deb +libpsl5 0.21.0-1.2build2 deb +libpython3-stdlib 3.10.6-1~22.04 deb +libpython3.10-minimal 3.10.12-1~22.04.3 deb +libpython3.10-stdlib 3.10.12-1~22.04.3 deb +libreadline8 8.1.2-1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb +libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb +libseccomp2 2.5.3-2ubuntu2 deb +libselinux1 3.3-1build2 deb +libsemanage-common 3.3-1build2 deb +libsemanage2 3.3-1build2 deb +libsepol2 3.3-1build1 deb +libsmartcols1 2.37.2-4ubuntu3 deb +libsqlite3-0 3.37.2-2ubuntu0.3 deb +libss2 1.46.5-2ubuntu1.1 deb +libssh-4 0.9.6-2ubuntu0.22.04.3 deb +libssl3 3.0.2-0ubuntu1.10 deb +libstdc++6 12.3.0-1ubuntu1~22.04 deb +libsystemd0 249.11-0ubuntu3.9 deb +libtasn1-6 4.18.0-4build1 deb +libtinfo6 6.3-2ubuntu0.1 deb +libtirpc-common 1.3.2-2ubuntu0.1 deb +libtirpc3 1.3.2-2ubuntu0.1 deb +libudev1 249.11-0ubuntu3.9 deb +libunistring2 1.0-1 deb +libuuid1 2.37.2-4ubuntu3 deb +libxtables12 1.8.7-1ubuntu5.2 deb +libxxhash0 0.8.1-1 deb +libzstd1 1.4.8+dfsg-3build1 deb +locales 2.35-0ubuntu3.6 deb +lodash 4.17.21 npm +login 1:4.8.1-2ubuntu2.1 deb +logsave 1.46.5-2ubuntu1.1 deb +lru-cache 10.0.2 npm +lru-cache 6.0.0 npm +lsb-base 11.1.0ubuntu4 deb +lsof 4.93.2+dfsg-1.1build2 deb +make-fetch-happen 13.0.0 npm +mawk 1.3.4.20200120-3 deb +media-typer 0.3.0 npm +media-types 7.0.0 deb +merge-descriptors 1.0.1 npm +methods 1.1.2 npm +mime 1.6.0 npm +mime-db 1.52.0 npm +mime-types 2.1.35 npm +minimatch 9.0.3 npm +minipass 3.3.6 npm (+6 duplicates) +minipass 5.0.0 npm +minipass 7.0.4 npm +minipass-collect 1.0.2 npm +minipass-fetch 3.0.4 npm +minipass-flush 1.0.5 npm +minipass-json-stream 1.0.1 npm +minipass-pipeline 1.2.4 npm +minipass-sized 1.0.3 npm +minizlib 2.1.2 npm +mkdirp 1.0.4 npm +mkdirp-classic 0.5.3 npm +mount 2.37.2-4ubuntu3 deb +ms 2.0.0 npm (+3 duplicates) +ms 2.1.2 npm (+1 duplicate) +ms 2.1.3 npm (+1 duplicate) +mute-stream 1.0.0 npm +nan 2.18.0 npm +ncurses-base 6.3-2ubuntu0.1 deb +ncurses-bin 6.3-2ubuntu0.1 deb +negotiator 0.6.3 npm (+1 duplicate) +netbase 6.3 deb +netcat 1.218-4ubuntu1 deb +netcat-openbsd 1.218-4ubuntu1 deb +node-gyp 10.0.1 npm +node-pty 0.10.1 npm +nodejs 18.19.1-1nodesource1 deb +nopt 7.2.0 npm +normalize-package-data 6.0.0 npm +npm 10.2.4 npm +npm-audit-report 5.0.0 npm +npm-bundled 3.0.0 npm +npm-install-checks 6.3.0 npm +npm-normalize-package-bin 3.0.1 npm +npm-package-arg 11.0.1 npm +npm-packlist 8.0.0 npm +npm-pick-manifest 9.0.0 npm +npm-profile 9.0.0 npm +npm-registry-fetch 16.1.0 npm +npm-user-validate 2.0.0 npm +npmlog 7.0.1 npm +nvidia-container-toolkit 1.14.6-1 deb +nvidia-container-toolkit-base 1.14.6-1 deb +nvidia-docker2 2.14.0-1 deb +object-assign 4.1.1 npm +object-inspect 1.13.1 npm +on-finished 2.4.1 npm +once 1.4.0 npm +openssl 3.0.2-0ubuntu1.15 deb +p-map 4.0.0 npm +pacote 17.0.4 npm +parse-conflict-json 3.0.1 npm +parseurl 1.3.3 npm +passwd 1:4.8.1-2ubuntu2.1 deb +path-key 3.1.1 npm +path-scurry 1.10.1 npm +path-to-regexp 0.1.7 npm +perl-base 5.34.0-3ubuntu1.2 deb +pigz 2.6-1 deb +pinentry-curses 1.1.1-1build2 deb +postcss-selector-parser 6.0.13 npm +proc-log 3.0.0 npm +process 0.11.10 npm +procps 2:3.3.17-6ubuntu2 deb +promise-all-reject-late 1.0.1 npm +promise-call-limit 1.0.2 npm +promise-inflight 1.0.1 npm +promise-retry 2.0.1 npm +promzard 1.0.0 npm +proxy-addr 2.0.7 npm +publicsuffix 20211207.1025-1 deb +pump 3.0.0 npm +python3 3.10.6-1~22.04 deb +python3-minimal 3.10.6-1~22.04 deb +python3.10 3.10.12-1~22.04.3 deb +python3.10-minimal 3.10.12-1~22.04.3 deb +qrcode-terminal 0.12.0 npm +qs 6.11.0 npm +range-parser 1.2.1 npm +raw-body 2.5.2 npm +read 2.1.0 npm +read-cmd-shim 4.0.0 npm +read-package-json 7.0.0 npm +read-package-json-fast 3.0.2 npm +readable-stream 3.6.2 npm +readable-stream 4.4.2 npm +readline-common 8.1.2-1 deb +resenje.org/singleflight v0.4.1 go-module +retry 0.12.0 npm +safe-buffer 5.2.1 npm (+1 duplicate) +safer-buffer 2.1.2 npm (+1 duplicate) +sed 4.8-1ubuntu2 deb +semver 7.5.4 npm +send 0.18.0 npm +sensible-utils 0.0.17 deb +serve-static 1.15.0 npm +set-blocking 2.0.0 npm +set-function-length 1.2.1 npm +setprototypeof 1.2.0 npm +shebang-command 2.0.0 npm +shebang-regex 3.0.0 npm +side-channel 1.0.6 npm +signal-exit 4.1.0 npm +sigs.k8s.io/structured-merge-diff/v4 v4.1.2 go-module +sigs.k8s.io/structured-merge-diff/v4 v4.2.1 go-module +sigs.k8s.io/yaml v1.2.0 go-module (+1 duplicate) +sigs.k8s.io/yaml v1.3.0 go-module (+3 duplicates) +sigstore 2.1.0 npm +smart-buffer 4.2.0 npm +socket.io 4.7.4 npm +socket.io-adapter 2.5.4 npm +socket.io-parser 4.2.4 npm +socks 2.7.1 npm +socks-proxy-agent 8.0.2 npm +spdx-correct 3.2.0 npm +spdx-exceptions 2.3.0 npm +spdx-expression-parse 3.0.1 npm +spdx-license-ids 3.0.16 npm +split-ca 1.0.1 npm +ssh2 1.15.0 npm +ssri 10.0.5 npm +statuses 2.0.1 npm +stdlib go1.17.9 go-module +stdlib go1.18.1 go-module (+1 duplicate) +stdlib go1.20.13 go-module (+5 duplicates) +stdlib go1.20.5 go-module (+2 duplicates) +stdlib go1.21.6 go-module (+2 duplicates) +string-width 4.2.3 npm (+1 duplicate) +string-width 5.1.2 npm (+1 duplicate) +string_decoder 1.3.0 npm (+1 duplicate) +strip-ansi 6.0.1 npm (+6 duplicates) +strip-ansi 7.1.0 npm +sudo 1.9.9-1ubuntu2.4 deb +supports-color 9.4.0 npm +systeminformation 5.22.0 npm +sysvinit-utils 3.01-1ubuntu1 deb +tags.cncf.io/container-device-interface v0.6.2 go-module (+3 duplicates) +tags.cncf.io/container-device-interface/specs-go v0.6.0 go-module (+3 duplicates) +tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb +tar 6.2.0 npm +tar-fs 2.0.1 npm +tar-stream 2.2.0 npm +text-table 0.2.0 npm +tiny-relative-date 1.3.0 npm +toidentifier 1.0.1 npm +treeverse 3.0.0 npm +tuf-js 2.1.0 npm +tweetnacl 0.14.5 npm +type-is 1.6.18 npm +tzdata 2023d-0ubuntu0.22.04 deb +ubuntu-keyring 2021.03.26 deb +uidmap 1:4.8.1-2ubuntu2.2 deb +undici-types 5.26.5 npm +unique-filename 3.0.0 npm +unique-slug 4.0.0 npm +unpipe 1.0.0 npm +usrmerge 25ubuntu2 deb +util-deprecate 1.0.2 npm (+1 duplicate) +util-linux 2.37.2-4ubuntu3 deb +utils-merge 1.0.1 npm +validate-npm-package-license 3.0.4 npm +validate-npm-package-name 5.0.0 npm +vary 1.1.2 npm +walk-up-path 3.0.1 npm +wcwidth 1.0.1 npm +which 2.0.2 npm +which 4.0.0 npm +wide-align 1.1.5 npm +wrap-ansi 7.0.0 npm +wrap-ansi 8.1.0 npm +wrappy 1.0.2 npm +write-file-atomic 5.0.1 npm +ws 8.11.0 npm +xfsprogs 5.13.0-1ubuntu2 deb +yallist 4.0.0 npm +zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From e513afa4b5275bd01bf4abceec528256a34ded51 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Mar 2024 19:38:54 +0000 Subject: [PATCH 209/337] Bot Updating Package Versions --- package_versions.txt | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index f3f1693..11840a6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -29,7 +29,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.11.24 npm +@types/node 20.11.26 npm abbrev 2.0.0 npm abort-controller 3.0.0 npm accepts 1.3.8 npm @@ -120,8 +120,8 @@ destroy 1. diff 5.1.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:25.0.3-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:25.0.3-1~ubuntu.22.04~jammy deb +docker-ce 5:25.0.4-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:25.0.4-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.2 deb @@ -248,12 +248,12 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.5.0 go-module github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v25.0.3 go-module +github.com/docker/cli/cmd/docker v25.0.4 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v25.0.3 go-module (+1 duplicate) +github.com/docker/docker v25.0.4 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -552,7 +552,7 @@ has-proto 1. has-symbols 1.0.3 npm has-unicode 2.0.1 npm hasown 2.0.0 npm -hasown 2.0.1 npm +hasown 2.0.2 npm hosted-git-info 7.0.1 npm hostname 3.23ubuntu2 deb http-cache-semantics 4.1.1 npm @@ -752,7 +752,7 @@ ms 2. ms 2.1.2 npm (+1 duplicate) ms 2.1.3 npm (+1 duplicate) mute-stream 1.0.0 npm -nan 2.18.0 npm +nan 2.19.0 npm ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb negotiator 0.6.3 npm (+1 duplicate) @@ -832,7 +832,7 @@ send 0. sensible-utils 0.0.17 deb serve-static 1.15.0 npm set-blocking 2.0.0 npm -set-function-length 1.2.1 npm +set-function-length 1.2.2 npm setprototypeof 1.2.0 npm shebang-command 2.0.0 npm shebang-regex 3.0.0 npm @@ -861,7 +861,7 @@ stdlib go stdlib go1.18.1 go-module (+1 duplicate) stdlib go1.20.13 go-module (+5 duplicates) stdlib go1.20.5 go-module (+2 duplicates) -stdlib go1.21.6 go-module (+2 duplicates) +stdlib go1.21.8 go-module (+2 duplicates) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) string_decoder 1.3.0 npm (+1 duplicate) @@ -869,7 +869,7 @@ strip-ansi 6. strip-ansi 7.1.0 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 9.4.0 npm -systeminformation 5.22.0 npm +systeminformation 5.22.1 npm sysvinit-utils 3.01-1ubuntu1 deb tags.cncf.io/container-device-interface v0.6.2 go-module (+3 duplicates) tags.cncf.io/container-device-interface/specs-go v0.6.0 go-module (+3 duplicates) @@ -884,7 +884,7 @@ treeverse 3. tuf-js 2.1.0 npm tweetnacl 0.14.5 npm type-is 1.6.18 npm -tzdata 2023d-0ubuntu0.22.04 deb +tzdata 2024a-0ubuntu0.22.04 deb ubuntu-keyring 2021.03.26 deb uidmap 1:4.8.1-2ubuntu2.2 deb undici-types 5.26.5 npm From b7f7714a4373e9fdd38baba01b3d76035ab16c42 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Mar 2024 21:40:14 +0000 Subject: [PATCH 210/337] Bot Updating Templated Files --- Jenkinsfile | 61 +++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 45 insertions(+), 16 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c82a2d5..c1b05d2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -268,8 +268,15 @@ pipeline { set -e TEMPDIR=$(mktemp -d) docker pull ghcr.io/linuxserver/jenkins-builder:latest - docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=develop -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest - # Stage 1 - Jenkinsfile update + # Cloned repo paths for templating: + # ${TEMPDIR}/docker-${CONTAINER_NAME}: Cloned branch develop of ${LS_USER}/${LS_REPO} for running the jenkins builder on + # ${TEMPDIR}/repo/${LS_REPO}: Cloned branch develop of ${LS_USER}/${LS_REPO} for commiting various templated file changes and pushing back to Github + # ${TEMPDIR}/docs/docker-documentation: Cloned docs repo for pushing docs updates to Github + # ${TEMPDIR}/unraid/docker-templates: Cloned docker-templates repo to check for logos + # ${TEMPDIR}/unraid/templates: Cloned templates repo for commiting unraid template changes and pushing back to Github + git clone --branch develop --depth 1 https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/docker-${CONTAINER_NAME} + docker run --rm -v ${TEMPDIR}/docker-${CONTAINER_NAME}:/tmp -e LOCAL=true ghcr.io/linuxserver/jenkins-builder:latest + echo "Starting Stage 1 - Jenkinsfile update" if [[ "$(md5sum Jenkinsfile | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile | awk '{ print $1 }')" ]]; then mkdir -p ${TEMPDIR}/repo git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} @@ -281,13 +288,13 @@ pipeline { git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} - echo "Updating Jenkinsfile" + echo "Updating Jenkinsfile and exiting build, new one will trigger based on commit" rm -Rf ${TEMPDIR} exit 0 else echo "Jenkinsfile is up to date." fi - # Stage 2 - Delete old templates + echo "Starting Stage 2 - Delete old templates" OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md .github/ISSUE_TEMPLATE/issue.bug.md .github/ISSUE_TEMPLATE/issue.feature.md .github/workflows/call_invalid_helper.yml .github/workflows/stale.yml Dockerfile.armhf" for i in ${OLD_TEMPLATES}; do if [[ -f "${i}" ]]; then @@ -306,13 +313,13 @@ pipeline { git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} - echo "Deleting old and deprecated templates" + echo "Deleting old/deprecated templates and exiting build, new one will trigger based on commit" rm -Rf ${TEMPDIR} exit 0 else echo "No templates to delete" fi - # Stage 3 - Update templates + echo "Starting Stage 3 - Update templates" CURRENTHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) cd ${TEMPDIR}/docker-${CONTAINER_NAME} NEWHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) @@ -336,9 +343,14 @@ pipeline { git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git develop echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + echo "Updating templates and exiting build, new one will trigger based on commit" + rm -Rf ${TEMPDIR} + exit 0 else echo "false" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + echo "No templates to update" fi + echo "Starting Stage 4 - External repo updates: Docs, Unraid Template and Readme Sync to Docker Hub" mkdir -p ${TEMPDIR}/docs git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/docs/docker-documentation if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then @@ -346,6 +358,7 @@ pipeline { cd ${TEMPDIR}/docs/docker-documentation GH_DOCS_DEFAULT_BRANCH=$(git remote show origin | grep "HEAD branch:" | sed 's|.*HEAD branch: ||') git add docs/images/docker-${CONTAINER_NAME}.md + echo "Updating docs repo" git commit -m 'Bot Updating Documentation' git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} --rebase git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} || \ @@ -353,6 +366,8 @@ pipeline { sleep $((RANDOM % MAXWAIT)) && \ git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} --rebase && \ git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH}) + else + echo "Docs update not needed, skipping" fi mkdir -p ${TEMPDIR}/unraid git clone https://github.com/linuxserver/docker-templates.git ${TEMPDIR}/unraid/docker-templates @@ -363,6 +378,7 @@ pipeline { sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-icon.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml fi if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml) || ("$(md5sum ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml | awk '{ print $1 }')") ]]; then + echo "Updating Unraid template" cd ${TEMPDIR}/unraid/templates/ GH_TEMPLATES_DEFAULT_BRANCH=$(git remote show origin | grep "HEAD branch:" | sed 's|.*HEAD branch: ||') if grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list; then @@ -382,16 +398,27 @@ pipeline { sleep $((RANDOM % MAXWAIT)) && \ git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH} --rebase && \ git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH}) + else + echo "No updates to Unraid template needed, skipping" fi - # Stage 4 - Sync Readme to Docker Hub if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]]; then - if [[ $(cat ${TEMPDIR}/docker-${CONTAINER_NAME}/README.md | wc -m) > 25000 ]]; then + if [[ $(cat ${TEMPDIR}/docker-${CONTAINER_NAME}/README.md | wc -m) -gt 25000 ]]; then echo "Readme is longer than 25,000 characters. Syncing the lite version to Docker Hub" DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/README.lite" else echo "Syncing readme to Docker Hub" DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/README.md" fi + if curl -s https://hub.docker.com/v2/namespaces/${DOCKERHUB_IMAGE%%/*}/repositories/${DOCKERHUB_IMAGE##*/}/tags | jq -r '.message' | grep -q 404; then + echo "Docker Hub endpoint doesn't exist. Creating endpoint first." + DH_TOKEN=$(curl -d '{"username":"linuxserverci", "password":"'${DOCKERHUB_TOKEN}'"}' -H "Content-Type: application/json" -X POST https://hub.docker.com/v2/users/login | jq -r '.token') + curl -s \ + -H "Authorization: JWT ${DH_TOKEN}" \ + -H "Content-Type: application/json" \ + -X POST \ + -d '{"name":"'${DOCKERHUB_IMAGE##*/}'", "namespace":"'${DOCKERHUB_IMAGE%%/*}'"}' \ + https://hub.docker.com/v2/repositories/ || : + fi DH_TOKEN=$(curl -d '{"username":"linuxserverci", "password":"'${DOCKERHUB_TOKEN}'"}' -H "Content-Type: application/json" -X POST https://hub.docker.com/v2/users/login | jq -r '.token') curl -s \ -H "Authorization: JWT ${DH_TOKEN}" \ @@ -456,14 +483,16 @@ pipeline { } steps{ sh '''curl -H "Content-Type: application/json" -H "Private-Token: ${GITLAB_TOKEN}" -X POST https://gitlab.com/api/v4/projects \ - -d '{"namespace_id":'${GITLAB_NAMESPACE}',\ - "name":"'${LS_REPO}'", - "mirror":true,\ - "import_url":"https://github.com/linuxserver/'${LS_REPO}'.git",\ - "issues_access_level":"disabled",\ - "merge_requests_access_level":"disabled",\ - "repository_access_level":"enabled",\ - "visibility":"public"}' ''' + -d '{"namespace_id":'${GITLAB_NAMESPACE}',\ + "name":"'${LS_REPO}'", + "mirror":true,\ + "import_url":"https://github.com/linuxserver/'${LS_REPO}'.git",\ + "issues_access_level":"disabled",\ + "merge_requests_access_level":"disabled",\ + "repository_access_level":"enabled",\ + "visibility":"public"}' ''' + sh '''curl -H "Private-Token: ${GITLAB_TOKEN}" -X PUT "https://gitlab.com/api/v4/projects/Linuxserver.io%2F${LS_REPO}" \ + -d "mirror=true&import_url=https://github.com/linuxserver/${LS_REPO}.git" ''' } } /* ############### From 1a21b350a3cbd71cabe55e04803f79641f1f4ed7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 14 Mar 2024 18:40:10 +0000 Subject: [PATCH 211/337] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 11840a6..d6fb1ee 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -29,7 +29,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.11.26 npm +@types/node 20.11.27 npm abbrev 2.0.0 npm abort-controller 3.0.0 npm accepts 1.3.8 npm @@ -623,7 +623,7 @@ libdevmapper1.02.1 2: libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb libdrm2 2.4.113-2~ubuntu0.22.04.1 deb libedit2 3.1-20210910-1build1 deb -libexpat1 2.4.7-1ubuntu0.2 deb +libexpat1 2.4.7-1ubuntu0.3 deb libext2fs2 1.46.5-2ubuntu1.1 deb libffi8 3.4.2-4 deb libfuse3-3 3.10.5-1build1 deb @@ -844,7 +844,7 @@ sigs.k8s.io/yaml v1 sigs.k8s.io/yaml v1.3.0 go-module (+3 duplicates) sigstore 2.1.0 npm smart-buffer 4.2.0 npm -socket.io 4.7.4 npm +socket.io 4.7.5 npm socket.io-adapter 2.5.4 npm socket.io-parser 4.2.4 npm socks 2.7.1 npm @@ -869,7 +869,7 @@ strip-ansi 6. strip-ansi 7.1.0 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 9.4.0 npm -systeminformation 5.22.1 npm +systeminformation 5.22.2 npm sysvinit-utils 3.01-1ubuntu1 deb tags.cncf.io/container-device-interface v0.6.2 go-module (+3 duplicates) tags.cncf.io/container-device-interface/specs-go v0.6.0 go-module (+3 duplicates) From 1e8cf35844187b6743630ad3c581ffd88f5a7384 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Mar 2024 16:43:16 +0000 Subject: [PATCH 212/337] Bot Updating Package Versions --- package_versions.txt | 61 ++++++++++++++++++++++---------------------- 1 file changed, 30 insertions(+), 31 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d6fb1ee..37bd8f4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -29,7 +29,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.11.27 npm +@types/node 20.11.30 npm abbrev 2.0.0 npm abort-controller 3.0.0 npm accepts 1.3.8 npm @@ -50,11 +50,11 @@ argparse 2. array-flatten 1.1.1 npm asn1 0.2.6 npm balanced-match 1.0.2 npm -base-files 12ubuntu4.3 deb +base-files 12ubuntu4.6 deb base-passwd 3.5.52build1 deb base64-js 1.5.1 npm (+1 duplicate) base64id 2.0.0 npm -bash 5.1-6ubuntu1 deb +bash 5.1-6ubuntu1.1 deb bash 5.1.16 binary bcrypt-pbkdf 1.0.2 npm bin-links 4.0.3 npm @@ -92,14 +92,14 @@ color-support 1. columnify 1.6.0 npm common-ancestor-path 1.0.1 npm console-control-strings 1.1.0 npm -containerd.io 1.6.28-1 deb +containerd.io 1.6.28-2 deb content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.4.2 npm cookie 0.5.0 npm cookie-signature 1.0.6 npm corepack 0.22.0 npm -coreutils 8.32-4.1ubuntu1 deb +coreutils 8.32-4.1ubuntu1.1 deb cors 2.8.5 npm cpu-features 0.0.9 npm cron 3.0pl1-137ubuntu3 deb @@ -124,7 +124,7 @@ docker-ce 5: docker-ce-cli 5:25.0.4-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm -dpkg 1.21.1ubuntu2.2 deb +dpkg 1.21.1ubuntu2.3 deb drm-info 2.2.0-2 deb e2fsprogs 1.46.5-2ubuntu1.1 deb eastasianwidth 0.2.0 npm @@ -374,9 +374,9 @@ github.com/opencontainers/go-digest v1 github.com/opencontainers/image-spec v1.0.2 go-module github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module (+3 duplicates) github.com/opencontainers/image-spec v1.1.0-rc5 go-module -github.com/opencontainers/runc 1.1.12 go-module github.com/opencontainers/runc v1.1.0 go-module github.com/opencontainers/runc v1.1.12 go-module +github.com/opencontainers/runc v1.1.12-0-g51d5e94 go-module github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module (+5 duplicates) github.com/opencontainers/runtime-spec v1.1.0 go-module github.com/opencontainers/runtime-spec v1.2.0 go-module (+2 duplicates) @@ -610,7 +610,7 @@ libblkid1 2. libbrotli1 1.0.9-2build6 deb libbsd0 0.11.5-1 deb libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.1 deb +libc-bin 2.35-0ubuntu3.6 deb libc6 2.35-0ubuntu3.6 deb libcap-ng0 0.7.9-2.2build3 deb libcap2 1:2.44-1ubuntu0.22.04.1 deb @@ -630,9 +630,9 @@ libfuse3-3 3. libgcc-s1 12.3.0-1ubuntu1~22.04 deb libgcrypt20 1.9.4-3ubuntu3 deb libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.2 deb +libgnutls30 3.7.3-4ubuntu1.4 deb libgpg-error0 1.43-3 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.3 deb libhogweed6 3.7.3-1build2 deb libicu70 70.1-2 deb libidn2-0 2.3.2-2build1 deb @@ -641,13 +641,13 @@ libip4tc2 1. libip6tc2 1.8.7-1ubuntu5.2 deb libjq1 1.6-2.1ubuntu3 deb libjson-c5 0.15-3~ubuntu1.22.04.2 deb -libk5crypto3 1.19.2-2ubuntu0.2 deb +libk5crypto3 1.19.2-2ubuntu0.3 deb libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.2 deb -libkrb5support0 1.19.2-2ubuntu0.2 deb +libkrb5-3 1.19.2-2ubuntu0.3 deb +libkrb5support0 1.19.2-2ubuntu0.3 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.2 deb -libldap-common 2.5.16+dfsg-0ubuntu0.22.04.2 deb +libldap-2.5-0 2.5.17+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.17+dfsg-0ubuntu0.22.04.1 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb liblzo2-2 2.10-2build3 deb @@ -679,13 +679,13 @@ libnvidia-container-tools 1. libnvidia-container1 1.14.6-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb -libpam-modules 1.4.0-11ubuntu2.3 deb -libpam-modules-bin 1.4.0-11ubuntu2.3 deb -libpam-runtime 1.4.0-11ubuntu2.3 deb -libpam0g 1.4.0-11ubuntu2.3 deb +libpam-modules 1.4.0-11ubuntu2.4 deb +libpam-modules-bin 1.4.0-11ubuntu2.4 deb +libpam-runtime 1.4.0-11ubuntu2.4 deb +libpam0g 1.4.0-11ubuntu2.4 deb libpcre2-8-0 10.39-3ubuntu0.1 deb libpcre3 2:8.39-13ubuntu0.22.04.1 deb -libprocps8 2:3.3.17-6ubuntu2 deb +libprocps8 2:3.3.17-6ubuntu2.1 deb libpsl5 0.21.0-1.2build2 deb libpython3-stdlib 3.10.6-1~22.04 deb libpython3.10-minimal 3.10.12-1~22.04.3 deb @@ -704,14 +704,14 @@ libsmartcols1 2. libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.3 deb -libssl3 3.0.2-0ubuntu1.10 deb +libssl3 3.0.2-0ubuntu1.15 deb libstdc++6 12.3.0-1ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.9 deb +libsystemd0 249.11-0ubuntu3.12 deb libtasn1-6 4.18.0-4build1 deb libtinfo6 6.3-2ubuntu0.1 deb libtirpc-common 1.3.2-2ubuntu0.1 deb libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.9 deb +libudev1 249.11-0ubuntu3.12 deb libunistring2 1.0-1 deb libuuid1 2.37.2-4ubuntu3 deb libxtables12 1.8.7-1ubuntu5.2 deb @@ -719,7 +719,7 @@ libxxhash0 0. libzstd1 1.4.8+dfsg-3build1 deb locales 2.35-0ubuntu3.6 deb lodash 4.17.21 npm -login 1:4.8.1-2ubuntu2.1 deb +login 1:4.8.1-2ubuntu2.2 deb logsave 1.46.5-2ubuntu1.1 deb lru-cache 10.0.2 npm lru-cache 6.0.0 npm @@ -788,17 +788,17 @@ p-map 4. pacote 17.0.4 npm parse-conflict-json 3.0.1 npm parseurl 1.3.3 npm -passwd 1:4.8.1-2ubuntu2.1 deb +passwd 1:4.8.1-2ubuntu2.2 deb path-key 3.1.1 npm path-scurry 1.10.1 npm path-to-regexp 0.1.7 npm -perl-base 5.34.0-3ubuntu1.2 deb +perl-base 5.34.0-3ubuntu1.3 deb pigz 2.6-1 deb pinentry-curses 1.1.1-1build2 deb postcss-selector-parser 6.0.13 npm proc-log 3.0.0 npm process 0.11.10 npm -procps 2:3.3.17-6ubuntu2 deb +procps 2:3.3.17-6ubuntu2.1 deb promise-all-reject-late 1.0.1 npm promise-call-limit 1.0.2 npm promise-inflight 1.0.1 npm @@ -859,9 +859,8 @@ ssri 10 statuses 2.0.1 npm stdlib go1.17.9 go-module stdlib go1.18.1 go-module (+1 duplicate) -stdlib go1.20.13 go-module (+5 duplicates) stdlib go1.20.5 go-module (+2 duplicates) -stdlib go1.21.8 go-module (+2 duplicates) +stdlib go1.21.8 go-module (+8 duplicates) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) string_decoder 1.3.0 npm (+1 duplicate) @@ -869,11 +868,11 @@ strip-ansi 6. strip-ansi 7.1.0 npm sudo 1.9.9-1ubuntu2.4 deb supports-color 9.4.0 npm -systeminformation 5.22.2 npm +systeminformation 5.22.5 npm sysvinit-utils 3.01-1ubuntu1 deb tags.cncf.io/container-device-interface v0.6.2 go-module (+3 duplicates) tags.cncf.io/container-device-interface/specs-go v0.6.0 go-module (+3 duplicates) -tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb +tar 1.34+dfsg-1ubuntu0.1.22.04.2 deb tar 6.2.0 npm tar-fs 2.0.1 npm tar-stream 2.2.0 npm From f031f49f0e75685e9e22995055f34766d7c50a85 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Mar 2024 21:42:09 +0000 Subject: [PATCH 213/337] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 37bd8f4..5c3f188 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -120,8 +120,8 @@ destroy 1. diff 5.1.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:25.0.4-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:25.0.4-1~ubuntu.22.04~jammy deb +docker-ce 5:25.0.5-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:25.0.5-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -248,12 +248,12 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.5.0 go-module github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v25.0.4 go-module +github.com/docker/cli/cmd/docker v25.0.5 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v25.0.4 go-module (+1 duplicate) +github.com/docker/docker v25.0.5 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module From e7ee46e4787b8234076e874e6700eaf054f5e5c9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 26 Mar 2024 21:44:14 +0000 Subject: [PATCH 214/337] Bot Updating Package Versions --- package_versions.txt | 278 ++++++++++++++++++++++--------------------- 1 file changed, 141 insertions(+), 137 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 5c3f188..c231c9e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -4,26 +4,28 @@ NAME VE @colors/colors 1.5.0 npm @isaacs/cliui 8.0.2 npm @isaacs/string-locale-compare 1.1.0 npm -@npmcli/agent 2.2.0 npm -@npmcli/arborist 7.2.1 npm -@npmcli/config 8.0.2 npm +@npmcli/agent 2.2.1 npm +@npmcli/arborist 7.4.0 npm +@npmcli/config 8.2.0 npm @npmcli/disparity-colors 3.0.0 npm @npmcli/fs 3.1.0 npm -@npmcli/git 5.0.3 npm +@npmcli/git 5.0.4 npm @npmcli/installed-package-contents 2.0.2 npm @npmcli/map-workspaces 3.0.4 npm @npmcli/metavuln-calculator 7.0.0 npm @npmcli/name-from-folder 2.0.0 npm @npmcli/node-gyp 3.0.0 npm @npmcli/package-json 5.0.0 npm -@npmcli/promise-spawn 7.0.0 npm -@npmcli/query 3.0.1 npm -@npmcli/run-script 7.0.2 npm +@npmcli/promise-spawn 7.0.1 npm +@npmcli/query 3.1.0 npm +@npmcli/run-script 7.0.4 npm @pkgjs/parseargs 0.11.0 npm -@sigstore/bundle 2.1.0 npm -@sigstore/protobuf-specs 0.2.1 npm -@sigstore/sign 2.2.0 npm -@sigstore/tuf 2.2.0 npm +@sigstore/bundle 2.2.0 npm +@sigstore/core 1.0.0 npm +@sigstore/protobuf-specs 0.3.0 npm +@sigstore/sign 2.2.3 npm +@sigstore/tuf 2.3.1 npm +@sigstore/verify 1.1.0 npm @socket.io/component-emitter 3.1.0 npm @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.0 npm @@ -31,13 +33,12 @@ NAME VE @types/cors 2.8.17 npm @types/node 20.11.30 npm abbrev 2.0.0 npm -abort-controller 3.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb agent-base 7.1.0 npm aggregate-error 3.1.0 npm -ansi-regex 5.0.1 npm (+6 duplicates) -ansi-regex 6.0.1 npm +ansi-regex 5.0.1 npm +ansi-regex 6.0.1 npm (+1 duplicate) ansi-styles 4.3.0 npm (+1 duplicate) ansi-styles 6.2.1 npm aproba 2.0.0 npm @@ -45,14 +46,14 @@ apt 2. apt-transport-https 2.4.11 deb apt-utils 2.4.11 deb archy 1.0.0 npm -are-we-there-yet 4.0.1 npm +are-we-there-yet 4.0.2 npm argparse 2.0.1 npm array-flatten 1.1.1 npm asn1 0.2.6 npm balanced-match 1.0.2 npm base-files 12ubuntu4.6 deb base-passwd 3.5.52build1 deb -base64-js 1.5.1 npm (+1 duplicate) +base64-js 1.5.1 npm base64id 2.0.0 npm bash 5.1-6ubuntu1.1 deb bash 5.1.16 binary @@ -65,12 +66,11 @@ brace-expansion 2. bsdutils 1:2.37.2-4ubuntu3 deb btrfs-progs 5.16.2-1 deb buffer 5.7.1 npm -buffer 6.0.3 npm buildcheck 0.0.6 npm builtins 5.0.1 npm bytes 3.1.2 npm ca-certificates 20230311ubuntu0.22.04.1 deb -cacache 18.0.0 npm +cacache 18.0.2 npm call-bind 1.0.7 npm chalk 5.3.0 npm chownr 1.1.4 npm @@ -82,8 +82,8 @@ cli-columns 4. cli-table3 0.6.3 npm clone 1.0.4 npm cloud.google.com/go/compute/metadata v0.2.3 go-module -cloud.google.com/go/logging v1.7.0 go-module -cloud.google.com/go/longrunning v0.5.1 go-module +cloud.google.com/go/logging v1.8.1 go-module +cloud.google.com/go/longrunning v0.5.2 go-module cmd-shim 6.0.2 npm code.cloudfoundry.org/clock v1.1.0 go-module color-convert 2.0.1 npm @@ -96,9 +96,9 @@ containerd.io 1. content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.4.2 npm -cookie 0.5.0 npm +cookie 0.6.0 npm cookie-signature 1.0.6 npm -corepack 0.22.0 npm +corepack 0.25.2 npm coreutils 8.32-4.1ubuntu1.1 deb cors 2.8.5 npm cpu-features 0.0.9 npm @@ -114,14 +114,13 @@ debug 2. debug 4.3.4 npm (+1 duplicate) defaults 1.0.4 npm define-data-property 1.1.4 npm -delegates 1.0.0 npm depd 2.0.0 npm destroy 1.2.0 npm -diff 5.1.0 npm +diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:25.0.5-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:25.0.5-1~ubuntu.22.04~jammy deb +docker-ce 5:26.0.0-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:26.0.0-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -142,10 +141,8 @@ es-define-property 1. es-errors 1.3.0 npm escape-html 1.0.3 npm etag 1.8.1 npm -event-target-shim 5.0.1 npm -events 3.3.0 npm exponential-backoff 3.1.1 npm -express 4.18.3 npm +express 4.19.2 npm fastest-levenshtein 1.0.16 npm finalhandler 1.2.0 npm findutils 4.8.0-1ubuntu3 deb @@ -175,19 +172,21 @@ github.com/agl/ed25519 v0 github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092 go-module github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 go-module github.com/armon/go-metrics v0.4.1 go-module -github.com/aws/aws-sdk-go-v2 v1.17.6 go-module -github.com/aws/aws-sdk-go-v2/config v1.18.16 go-module -github.com/aws/aws-sdk-go-v2/credentials v1.13.16 go-module -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.24 go-module -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.30 go-module -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.24 go-module -github.com/aws/aws-sdk-go-v2/internal/ini v1.3.31 go-module -github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.15.17 go-module -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.24 go-module -github.com/aws/aws-sdk-go-v2/service/sso v1.12.5 go-module -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.5 go-module -github.com/aws/aws-sdk-go-v2/service/sts v1.18.6 go-module -github.com/aws/smithy-go v1.13.5 go-module +github.com/aws/aws-sdk-go-v2 v1.24.1 go-module +github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.5.4 go-module +github.com/aws/aws-sdk-go-v2/config v1.26.6 go-module +github.com/aws/aws-sdk-go-v2/credentials v1.16.16 go-module +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.11 go-module +github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.10 go-module +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.10 go-module +github.com/aws/aws-sdk-go-v2/internal/ini v1.7.3 go-module +github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.32.0 go-module +github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.4 go-module +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.10 go-module +github.com/aws/aws-sdk-go-v2/service/sso v1.18.7 go-module +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.21.7 go-module +github.com/aws/aws-sdk-go-v2/service/sts v1.26.7 go-module +github.com/aws/smithy-go v1.19.0 go-module github.com/beorn7/perks v1.0.1 go-module (+2 duplicates) github.com/blang/semver v3.5.1+incompatible go-module github.com/buger/goterm v1.0.4 go-module @@ -207,13 +206,14 @@ github.com/containerd/aufs v1 github.com/containerd/btrfs v1.0.0 go-module github.com/containerd/cgroups v1.0.4 go-module (+3 duplicates) github.com/containerd/cgroups/v3 v3.0.3 go-module -github.com/containerd/console v1.0.3 go-module (+7 duplicates) +github.com/containerd/console v1.0.3 go-module (+6 duplicates) +github.com/containerd/console v1.0.4 go-module github.com/containerd/containerd v1.6.2 go-module github.com/containerd/containerd v1.6.28 go-module (+4 duplicates) -github.com/containerd/containerd v1.7.12 go-module +github.com/containerd/containerd v1.7.14 go-module github.com/containerd/continuity v0.2.2 go-module github.com/containerd/continuity v0.3.0 go-module (+3 duplicates) -github.com/containerd/continuity v0.4.2 go-module +github.com/containerd/continuity v0.4.3 go-module github.com/containerd/fifo v1.0.0 go-module (+4 duplicates) github.com/containerd/fifo v1.1.0 go-module github.com/containerd/go-cni v1.1.6 go-module (+1 duplicate) @@ -223,17 +223,18 @@ github.com/containerd/go-runc v1 github.com/containerd/imgcrypt v1.1.4 go-module github.com/containerd/log v0.1.0 go-module (+6 duplicates) github.com/containerd/nri v0.1.1 go-module -github.com/containerd/nydus-snapshotter v0.8.2 go-module -github.com/containerd/stargz-snapshotter/estargz v0.14.3 go-module +github.com/containerd/nydus-snapshotter v0.13.7 go-module +github.com/containerd/stargz-snapshotter/estargz v0.15.1 go-module github.com/containerd/ttrpc v1.1.0 go-module github.com/containerd/ttrpc v1.1.2 go-module (+4 duplicates) -github.com/containerd/ttrpc v1.2.2 go-module +github.com/containerd/ttrpc v1.2.3 go-module github.com/containerd/typeurl v1.0.2 go-module (+5 duplicates) github.com/containerd/typeurl/v2 v2.1.1 go-module github.com/containerd/zfs v1.1.0 go-module github.com/containernetworking/cni v1.1.1 go-module (+1 duplicate) github.com/containernetworking/cni v1.1.2 go-module github.com/containernetworking/plugins v1.1.1 go-module +github.com/containernetworking/plugins v1.4.0 go-module github.com/containers/ocicrypt v1.1.3 go-module github.com/coreos/go-systemd/v22 v22.3.2 go-module (+4 duplicates) github.com/coreos/go-systemd/v22 v22.5.0 go-module @@ -248,12 +249,12 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.5.0 go-module github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v25.0.5 go-module +github.com/docker/cli/cmd/docker v26.0.0 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v25.0.5 go-module (+1 duplicate) +github.com/docker/docker v26.0.0 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -277,8 +278,7 @@ github.com/fsnotify/fsnotify v1 github.com/fsnotify/fsnotify v1.7.0 go-module (+2 duplicates) github.com/fvbommel/sortorder v1.0.1 go-module github.com/go-logr/logr v1.2.2 go-module -github.com/go-logr/logr v1.2.4 go-module -github.com/go-logr/logr v1.3.0 go-module +github.com/go-logr/logr v1.3.0 go-module (+1 duplicate) github.com/go-logr/stdr v1.2.2 go-module (+2 duplicates) github.com/goccy/go-yaml v1.9.5 go-module (+1 duplicate) github.com/godbus/dbus/v5 v5.0.6 go-module (+4 duplicates) @@ -288,12 +288,13 @@ github.com/gofrs/flock v0 github.com/gogo/googleapis v1.3.2 go-module (+1 duplicate) github.com/gogo/googleapis v1.4.1 go-module (+1 duplicate) github.com/gogo/protobuf v1.3.2 go-module (+6 duplicates) -github.com/golang-jwt/jwt/v4 v4.4.2 go-module +github.com/golang-jwt/jwt/v4 v4.5.0 go-module github.com/golang/gddo v0.0.0-20190904175337-72a348e765d2 go-module github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da go-module github.com/golang/mock v1.6.0 go-module github.com/golang/protobuf v1.5.2 go-module -github.com/golang/protobuf v1.5.3 go-module (+5 duplicates) +github.com/golang/protobuf v1.5.3 go-module (+4 duplicates) +github.com/golang/protobuf v1.5.4 go-module github.com/google/btree v1.1.2 go-module github.com/google/certificate-transparency-go v1.1.4 go-module github.com/google/go-cmp v0.5.7 go-module @@ -302,9 +303,9 @@ github.com/google/gofuzz v1 github.com/google/s2a-go v0.1.4 go-module github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module (+1 duplicate) github.com/google/uuid v1.3.1 go-module (+1 duplicate) -github.com/google/uuid v1.5.0 go-module -github.com/googleapis/enterprise-certificate-proxy v0.2.3 go-module -github.com/googleapis/gax-go/v2 v2.11.0 go-module +github.com/google/uuid v1.6.0 go-module +github.com/googleapis/enterprise-certificate-proxy v0.2.4 go-module +github.com/googleapis/gax-go/v2 v2.12.0 go-module github.com/gorilla/mux v1.8.0 go-module github.com/gorilla/mux v1.8.1 go-module github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module (+2 duplicates) @@ -339,7 +340,7 @@ github.com/mattn/go-shellwords v1 github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 go-module github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module (+1 duplicate) github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module -github.com/miekg/dns v1.1.43 go-module +github.com/miekg/dns v1.1.57 go-module github.com/miekg/pkcs11 v1.1.1 go-module github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module (+1 duplicate) github.com/mistifyio/go-zfs/v3 v3.0.1 go-module (+1 duplicate) @@ -348,7 +349,8 @@ github.com/mitchellh/hashstructure/v2 v2 github.com/mitchellh/mapstructure v1.4.3 go-module github.com/mitchellh/reflectwalk v1.0.2 go-module github.com/moby/buildkit v0.10.0-rc2.0.20220308185020-fdecd0ae108b go-module -github.com/moby/buildkit v0.12.5 go-module +github.com/moby/buildkit v0.13.1 go-module +github.com/moby/docker-image-spec v1.3.1 go-module github.com/moby/ipvs v1.1.0 go-module github.com/moby/locker v1.0.1 go-module (+3 duplicates) github.com/moby/patternmatcher v0.6.0 go-module @@ -391,17 +393,17 @@ github.com/philhofer/fwd v1 github.com/pkg/errors v0.9.1 go-module (+6 duplicates) github.com/prometheus/client_golang v1.11.1 go-module github.com/prometheus/client_golang v1.12.1 go-module -github.com/prometheus/client_golang v1.14.0 go-module +github.com/prometheus/client_golang v1.17.0 go-module github.com/prometheus/client_model v0.2.0 go-module (+1 duplicate) -github.com/prometheus/client_model v0.3.0 go-module +github.com/prometheus/client_model v0.5.0 go-module github.com/prometheus/common v0.30.0 go-module github.com/prometheus/common v0.32.1 go-module -github.com/prometheus/common v0.42.0 go-module +github.com/prometheus/common v0.44.0 go-module +github.com/prometheus/procfs v0.12.0 go-module github.com/prometheus/procfs v0.7.3 go-module (+1 duplicate) -github.com/prometheus/procfs v0.9.0 go-module github.com/qri-io/jsonpointer v0.1.0 go-module github.com/qri-io/jsonschema v0.1.1 go-module -github.com/rootless-containers/rootlesskit/v2 v2.0.0 go-module +github.com/rootless-containers/rootlesskit/v2 v2.0.2 go-module github.com/russross/blackfriday/v2 v2.0.1 go-module (+2 duplicates) github.com/russross/blackfriday/v2 v2.1.0 go-module github.com/sanathkr/go-yaml v0.0.0-20170819195128-ed9d249f429b go-module @@ -412,7 +414,7 @@ github.com/shibumi/go-pathspec v1 github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module (+2 duplicates) github.com/sirupsen/logrus v1.8.1 go-module (+1 duplicate) github.com/sirupsen/logrus v1.9.3 go-module (+9 duplicates) -github.com/spdx/tools-golang v0.5.1 go-module +github.com/spdx/tools-golang v0.5.3 go-module github.com/spf13/cobra v1.4.0 go-module (+2 duplicates) github.com/spf13/cobra v1.8.0 go-module github.com/spf13/pflag v1.0.5 go-module (+4 duplicates) @@ -424,8 +426,8 @@ github.com/timtadh/data-structures v0 github.com/timtadh/lexmachine v0.2.2 go-module (+1 duplicate) github.com/tinylib/msgp v1.1.8 go-module github.com/tonistiigi/fsutil v0.0.0-20220315205639-9ed612626da3 go-module -github.com/tonistiigi/fsutil v0.0.0-20230629203738-36ef4d8c0dbb go-module -github.com/tonistiigi/go-actions-cache v0.0.0-20220404170428-0bdeb6e1eac7 go-module +github.com/tonistiigi/fsutil v0.0.0-20240301111122-7525a1af2bb5 go-module +github.com/tonistiigi/go-actions-cache v0.0.0-20240227172821-a0b64f338598 go-module github.com/tonistiigi/go-archvariant v1.0.0 go-module github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module (+1 duplicate) github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f go-module @@ -450,7 +452,8 @@ glob 10 gnupg 2.2.27-3ubuntu2.1 deb gnupg-l10n 2.2.27-3ubuntu2.1 deb gnupg-utils 2.2.27-3ubuntu2.1 deb -go.etcd.io/bbolt v1.3.7 go-module (+1 duplicate) +go.etcd.io/bbolt v1.3.7 go-module +go.etcd.io/bbolt v1.3.9 go-module go.etcd.io/etcd/client/pkg/v3 v3.5.6 go-module go.etcd.io/etcd/pkg/v3 v3.5.6 go-module go.etcd.io/etcd/raft/v3 v3.5.6 go-module @@ -458,32 +461,33 @@ go.etcd.io/etcd/server/v3 v3 go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module go.opencensus.io v0.24.0 go-module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.29.0 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.45.0 go-module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.0 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 go-module go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.29.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.45.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.46.1 go-module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.29.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 go-module -go.opentelemetry.io/otel v1.19.0 go-module -go.opentelemetry.io/otel v1.21.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 go-module +go.opentelemetry.io/otel v1.21.0 go-module (+1 duplicate) go.opentelemetry.io/otel v1.4.1 go-module go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.42.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.42.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v0.42.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.3.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.4.1 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.19.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.21.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.3.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.19.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.21.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.3.0 go-module +go.opentelemetry.io/otel/exporters/prometheus v0.42.0 go-module go.opentelemetry.io/otel/internal/metric v0.27.0 go-module go.opentelemetry.io/otel/metric v0.27.0 go-module -go.opentelemetry.io/otel/metric v1.19.0 go-module -go.opentelemetry.io/otel/metric v1.21.0 go-module -go.opentelemetry.io/otel/sdk v1.19.0 go-module -go.opentelemetry.io/otel/sdk v1.21.0 go-module +go.opentelemetry.io/otel/metric v1.21.0 go-module (+1 duplicate) +go.opentelemetry.io/otel/sdk v1.21.0 go-module (+1 duplicate) go.opentelemetry.io/otel/sdk v1.4.1 go-module -go.opentelemetry.io/otel/trace v1.19.0 go-module -go.opentelemetry.io/otel/trace v1.21.0 go-module +go.opentelemetry.io/otel/sdk/metric v1.21.0 go-module +go.opentelemetry.io/otel/trace v1.21.0 go-module (+1 duplicate) go.opentelemetry.io/otel/trace v1.4.1 go-module go.opentelemetry.io/proto/otlp v0.11.0 go-module go.opentelemetry.io/proto/otlp v0.12.0 go-module @@ -494,23 +498,23 @@ go.uber.org/zap v1 golang.org/x/crypto v0.0.0-20211202192323-5770296d904e go-module golang.org/x/crypto v0.17.0 go-module golang.org/x/crypto v0.18.0 go-module -golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 go-module -golang.org/x/mod v0.11.0 go-module +golang.org/x/exp v0.0.0-20231006140011-7918f672742d go-module +golang.org/x/mod v0.13.0 go-module golang.org/x/mod v0.15.0 go-module (+2 duplicates) golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module (+1 duplicate) golang.org/x/net v0.0.0-20211216030914-fe4d6282115f go-module -golang.org/x/net v0.17.0 go-module -golang.org/x/net v0.18.0 go-module (+1 duplicate) +golang.org/x/net v0.18.0 go-module (+2 duplicates) golang.org/x/net v0.8.0 go-module golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 go-module -golang.org/x/oauth2 v0.10.0 go-module -golang.org/x/oauth2 v0.11.0 go-module +golang.org/x/oauth2 v0.11.0 go-module (+1 duplicate) golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module -golang.org/x/sync v0.3.0 go-module (+4 duplicates) +golang.org/x/sync v0.3.0 go-module (+3 duplicates) +golang.org/x/sync v0.5.0 go-module golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module (+1 duplicate) golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module -golang.org/x/sys v0.16.0 go-module (+6 duplicates) +golang.org/x/sys v0.16.0 go-module (+4 duplicates) golang.org/x/sys v0.17.0 go-module (+2 duplicates) +golang.org/x/sys v0.18.0 go-module (+1 duplicate) golang.org/x/sys v0.6.0 go-module golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module golang.org/x/term v0.16.0 go-module @@ -519,18 +523,18 @@ golang.org/x/text v0 golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module (+1 duplicate) golang.org/x/time v0.3.0 go-module golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module (+1 duplicate) -google.golang.org/api v0.126.0 go-module +google.golang.org/api v0.128.0 go-module google.golang.org/appengine v1.6.7 go-module google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63 go-module (+4 duplicates) google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa go-module -google.golang.org/genproto v0.0.0-20230711160842-782d3b101e98 go-module -google.golang.org/genproto/googleapis/api v0.0.0-20230711160842-782d3b101e98 go-module -google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 go-module +google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b go-module +google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b go-module +google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b go-module google.golang.org/grpc v1.44.0 go-module -google.golang.org/grpc v1.58.3 go-module -google.golang.org/grpc v1.59.0 go-module (+4 duplicates) +google.golang.org/grpc v1.59.0 go-module (+5 duplicates) google.golang.org/protobuf v1.27.1 go-module (+1 duplicate) -google.golang.org/protobuf v1.31.0 go-module (+5 duplicates) +google.golang.org/protobuf v1.31.0 go-module (+4 duplicates) +google.golang.org/protobuf v1.33.0 go-module gopd 1.0.1 npm gopkg.in/inf.v0 v0.9.1 go-module (+1 duplicate) gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module (+1 duplicate) @@ -551,25 +555,25 @@ has-property-descriptors 1. has-proto 1.0.3 npm has-symbols 1.0.3 npm has-unicode 2.0.1 npm -hasown 2.0.0 npm +hasown 2.0.1 npm hasown 2.0.2 npm hosted-git-info 7.0.1 npm hostname 3.23ubuntu2 deb http-cache-semantics 4.1.1 npm http-errors 2.0.0 npm -http-proxy-agent 7.0.0 npm -https-proxy-agent 7.0.2 npm +http-proxy-agent 7.0.2 npm +https-proxy-agent 7.0.4 npm iconv-lite 0.4.24 npm iconv-lite 0.6.3 npm -ieee754 1.2.1 npm (+1 duplicate) -ignore-walk 6.0.3 npm +ieee754 1.2.1 npm +ignore-walk 6.0.4 npm imurmurhash 0.1.4 npm indent-string 4.0.0 npm inherits 2.0.4 npm ini 4.1.1 npm init-package-json 6.0.0 npm init-system-helpers 1.62 deb -ip 2.0.0 npm +ip-address 9.0.5 npm ip-regex 5.0.0 npm ipaddr.js 1.9.1 npm iptables 1.8.7-1ubuntu5.2 deb @@ -582,7 +586,8 @@ isexe 3. jackspeak 2.3.6 npm jq 1.6-2.1ubuntu3 deb js-yaml 4.1.0 npm -json-parse-even-better-errors 3.0.0 npm +jsbn 1.1.0 npm +json-parse-even-better-errors 3.0.1 npm json-stringify-nice 1.1.4 npm jsonparse 1.3.1 npm just-diff 6.0.2 npm @@ -662,17 +667,17 @@ libnettle8 3. libnfnetlink0 1.0.1-3build3 deb libnftnl11 1.2.1-1build1 deb libnghttp2-14 1.43.0-1ubuntu0.1 deb -libnpmaccess 8.0.1 npm -libnpmdiff 6.0.3 npm -libnpmexec 7.0.4 npm -libnpmfund 5.0.1 npm -libnpmhook 10.0.0 npm -libnpmorg 6.0.1 npm -libnpmpack 6.0.3 npm -libnpmpublish 9.0.2 npm -libnpmsearch 7.0.0 npm -libnpmteam 6.0.0 npm -libnpmversion 5.0.1 npm +libnpmaccess 8.0.2 npm +libnpmdiff 6.0.7 npm +libnpmexec 7.0.8 npm +libnpmfund 5.0.5 npm +libnpmhook 10.0.1 npm +libnpmorg 6.0.2 npm +libnpmpack 6.0.7 npm +libnpmpublish 9.0.4 npm +libnpmsearch 7.0.1 npm +libnpmteam 6.0.1 npm +libnpmversion 5.0.2 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb libnvidia-container-tools 1.14.6-1 deb @@ -721,7 +726,7 @@ locales 2. lodash 4.17.21 npm login 1:4.8.1-2ubuntu2.2 deb logsave 1.46.5-2ubuntu1.1 deb -lru-cache 10.0.2 npm +lru-cache 10.2.0 npm lru-cache 6.0.0 npm lsb-base 11.1.0ubuntu4 deb lsof 4.93.2+dfsg-1.1build2 deb @@ -735,10 +740,10 @@ mime 1. mime-db 1.52.0 npm mime-types 2.1.35 npm minimatch 9.0.3 npm -minipass 3.3.6 npm (+6 duplicates) +minipass 3.3.6 npm (+5 duplicates) minipass 5.0.0 npm minipass 7.0.4 npm -minipass-collect 1.0.2 npm +minipass-collect 2.0.1 npm minipass-fetch 3.0.4 npm minipass-flush 1.0.5 npm minipass-json-stream 1.0.1 npm @@ -761,16 +766,16 @@ netcat 1. netcat-openbsd 1.218-4ubuntu1 deb node-gyp 10.0.1 npm node-pty 0.10.1 npm -nodejs 18.19.1-1nodesource1 deb +nodejs 18.20.0-1nodesource1 deb nopt 7.2.0 npm normalize-package-data 6.0.0 npm -npm 10.2.4 npm +npm 10.5.0 npm npm-audit-report 5.0.0 npm npm-bundled 3.0.0 npm npm-install-checks 6.3.0 npm npm-normalize-package-bin 3.0.1 npm npm-package-arg 11.0.1 npm -npm-packlist 8.0.0 npm +npm-packlist 8.0.2 npm npm-pick-manifest 9.0.0 npm npm-profile 9.0.0 npm npm-registry-fetch 16.1.0 npm @@ -785,7 +790,7 @@ on-finished 2. once 1.4.0 npm openssl 3.0.2-0ubuntu1.15 deb p-map 4.0.0 npm -pacote 17.0.4 npm +pacote 17.0.6 npm parse-conflict-json 3.0.1 npm parseurl 1.3.3 npm passwd 1:4.8.1-2ubuntu2.2 deb @@ -795,12 +800,11 @@ path-to-regexp 0. perl-base 5.34.0-3ubuntu1.3 deb pigz 2.6-1 deb pinentry-curses 1.1.1-1build2 deb -postcss-selector-parser 6.0.13 npm +postcss-selector-parser 6.0.15 npm proc-log 3.0.0 npm -process 0.11.10 npm procps 2:3.3.17-6ubuntu2.1 deb promise-all-reject-late 1.0.1 npm -promise-call-limit 1.0.2 npm +promise-call-limit 3.0.1 npm promise-inflight 1.0.1 npm promise-retry 2.0.1 npm promzard 1.0.0 npm @@ -820,14 +824,13 @@ read-cmd-shim 4. read-package-json 7.0.0 npm read-package-json-fast 3.0.2 npm readable-stream 3.6.2 npm -readable-stream 4.4.2 npm readline-common 8.1.2-1 deb resenje.org/singleflight v0.4.1 go-module retry 0.12.0 npm -safe-buffer 5.2.1 npm (+1 duplicate) +safe-buffer 5.2.1 npm safer-buffer 2.1.2 npm (+1 duplicate) sed 4.8-1ubuntu2 deb -semver 7.5.4 npm +semver 7.6.0 npm send 0.18.0 npm sensible-utils 0.0.17 deb serve-static 1.15.0 npm @@ -842,18 +845,19 @@ sigs.k8s.io/structured-merge-diff/v4 v4 sigs.k8s.io/structured-merge-diff/v4 v4.2.1 go-module sigs.k8s.io/yaml v1.2.0 go-module (+1 duplicate) sigs.k8s.io/yaml v1.3.0 go-module (+3 duplicates) -sigstore 2.1.0 npm +sigstore 2.2.2 npm smart-buffer 4.2.0 npm socket.io 4.7.5 npm socket.io-adapter 2.5.4 npm socket.io-parser 4.2.4 npm -socks 2.7.1 npm +socks 2.8.0 npm socks-proxy-agent 8.0.2 npm spdx-correct 3.2.0 npm -spdx-exceptions 2.3.0 npm +spdx-exceptions 2.5.0 npm spdx-expression-parse 3.0.1 npm -spdx-license-ids 3.0.16 npm +spdx-license-ids 3.0.17 npm split-ca 1.0.1 npm +sprintf-js 1.1.3 npm ssh2 1.15.0 npm ssri 10.0.5 npm statuses 2.0.1 npm @@ -863,12 +867,12 @@ stdlib go stdlib go1.21.8 go-module (+8 duplicates) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) -string_decoder 1.3.0 npm (+1 duplicate) -strip-ansi 6.0.1 npm (+6 duplicates) -strip-ansi 7.1.0 npm +string_decoder 1.3.0 npm +strip-ansi 6.0.1 npm (+1 duplicate) +strip-ansi 7.1.0 npm (+1 duplicate) sudo 1.9.9-1ubuntu2.4 deb supports-color 9.4.0 npm -systeminformation 5.22.5 npm +systeminformation 5.22.6 npm sysvinit-utils 3.01-1ubuntu1 deb tags.cncf.io/container-device-interface v0.6.2 go-module (+3 duplicates) tags.cncf.io/container-device-interface/specs-go v0.6.0 go-module (+3 duplicates) @@ -880,7 +884,7 @@ text-table 0. tiny-relative-date 1.3.0 npm toidentifier 1.0.1 npm treeverse 3.0.0 npm -tuf-js 2.1.0 npm +tuf-js 2.2.0 npm tweetnacl 0.14.5 npm type-is 1.6.18 npm tzdata 2024a-0ubuntu0.22.04 deb From 9e885b0a0001a49351977d4381350758147b49a5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 2 Apr 2024 21:42:34 +0000 Subject: [PATCH 215/337] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index c231c9e..335b32c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,7 +31,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.11.30 npm +@types/node 20.12.3 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -43,7 +43,7 @@ ansi-styles 4. ansi-styles 6.2.1 npm aproba 2.0.0 npm apt 2.4.11 deb -apt-transport-https 2.4.11 deb +apt-transport-https 2.4.12 deb apt-utils 2.4.11 deb archy 1.0.0 npm are-we-there-yet 4.0.2 npm @@ -105,7 +105,7 @@ cpu-features 0. cron 3.0pl1-137ubuntu3 deb cross-spawn 7.0.3 npm cssesc 3.0.0 npm -curl 7.81.0-1ubuntu1.15 deb +curl 7.81.0-1ubuntu1.16 deb dario.cat/mergo v1.0.0 go-module (+1 duplicate) dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb @@ -621,7 +621,7 @@ libcap-ng0 0. libcap2 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.15 deb +libcurl4 7.81.0-1ubuntu1.16 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb @@ -872,7 +872,7 @@ strip-ansi 6. strip-ansi 7.1.0 npm (+1 duplicate) sudo 1.9.9-1ubuntu2.4 deb supports-color 9.4.0 npm -systeminformation 5.22.6 npm +systeminformation 5.22.7 npm sysvinit-utils 3.01-1ubuntu1 deb tags.cncf.io/container-device-interface v0.6.2 go-module (+3 duplicates) tags.cncf.io/container-device-interface/specs-go v0.6.0 go-module (+3 duplicates) From 705f6730de07d3e16ad84a0366e4c294deb00854 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 3 Apr 2024 18:40:59 +0000 Subject: [PATCH 216/337] Bot Updating Package Versions --- package_versions.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 335b32c..a81e619 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -42,9 +42,9 @@ ansi-regex 6. ansi-styles 4.3.0 npm (+1 duplicate) ansi-styles 6.2.1 npm aproba 2.0.0 npm -apt 2.4.11 deb +apt 2.4.12 deb apt-transport-https 2.4.12 deb -apt-utils 2.4.11 deb +apt-utils 2.4.12 deb archy 1.0.0 npm are-we-there-yet 4.0.2 npm argparse 2.0.1 npm @@ -63,7 +63,7 @@ binary-extensions 2. bl 4.1.0 npm body-parser 1.20.2 npm brace-expansion 2.0.1 npm -bsdutils 1:2.37.2-4ubuntu3 deb +bsdutils 1:2.37.2-4ubuntu3.3 deb btrfs-progs 5.16.2-1 deb buffer 5.7.1 npm buildcheck 0.0.6 npm @@ -99,7 +99,7 @@ cookie 0. cookie 0.6.0 npm cookie-signature 1.0.6 npm corepack 0.25.2 npm -coreutils 8.32-4.1ubuntu1.1 deb +coreutils 8.32-4.1ubuntu1.2 deb cors 2.8.5 npm cpu-features 0.0.9 npm cron 3.0pl1-137ubuntu3 deb @@ -606,12 +606,12 @@ k8s.io/utils v0 k8s.io/utils v0.0.0-20211116205334-6203023598ed go-module kasm-wizard 0.0.1 npm libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.11 deb +libapt-pkg6.0 2.4.12 deb libassuan0 2.5.5-1build1 deb libattr1 1:2.5.1-1build1 deb libaudit-common 1:3.0.7-1build1 deb libaudit1 1:3.0.7-1build1 deb -libblkid1 2.37.2-4ubuntu3 deb +libblkid1 2.37.2-4ubuntu3.3 deb libbrotli1 1.0.9-2build6 deb libbsd0 0.11.5-1 deb libbz2-1.0 1.0.8-5build1 deb @@ -658,7 +658,7 @@ liblzma5 5. liblzo2-2 2.10-2build3 deb libmd0 1.0.4-1build1 deb libmnl0 1.0.4-3build2 deb -libmount1 2.37.2-4ubuntu3 deb +libmount1 2.37.2-4ubuntu3.3 deb libmpdec3 2.5.1-2build2 deb libncurses6 6.3-2ubuntu0.1 deb libncursesw6 6.3-2ubuntu0.1 deb @@ -705,7 +705,7 @@ libselinux1 3. libsemanage-common 3.3-1build2 deb libsemanage2 3.3-1build2 deb libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3 deb +libsmartcols1 2.37.2-4ubuntu3.3 deb libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.3 deb @@ -718,7 +718,7 @@ libtirpc-common 1. libtirpc3 1.3.2-2ubuntu0.1 deb libudev1 249.11-0ubuntu3.12 deb libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3 deb +libuuid1 2.37.2-4ubuntu3.3 deb libxtables12 1.8.7-1ubuntu5.2 deb libxxhash0 0.8.1-1 deb libzstd1 1.4.8+dfsg-3build1 deb @@ -752,7 +752,7 @@ minipass-sized 1. minizlib 2.1.2 npm mkdirp 1.0.4 npm mkdirp-classic 0.5.3 npm -mount 2.37.2-4ubuntu3 deb +mount 2.37.2-4ubuntu3.3 deb ms 2.0.0 npm (+3 duplicates) ms 2.1.2 npm (+1 duplicate) ms 2.1.3 npm (+1 duplicate) @@ -766,7 +766,7 @@ netcat 1. netcat-openbsd 1.218-4ubuntu1 deb node-gyp 10.0.1 npm node-pty 0.10.1 npm -nodejs 18.20.0-1nodesource1 deb +nodejs 18.20.1-1nodesource1 deb nopt 7.2.0 npm normalize-package-data 6.0.0 npm npm 10.5.0 npm @@ -896,7 +896,7 @@ unique-slug 4. unpipe 1.0.0 npm usrmerge 25ubuntu2 deb util-deprecate 1.0.2 npm (+1 duplicate) -util-linux 2.37.2-4ubuntu3 deb +util-linux 2.37.2-4ubuntu3.3 deb utils-merge 1.0.1 npm validate-npm-package-license 3.0.4 npm validate-npm-package-name 5.0.0 npm From c22fe34cc1741393912b67d1fb0131a13c915817 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 3 Apr 2024 22:39:55 +0000 Subject: [PATCH 217/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a81e619..7f66e95 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,7 +31,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.12.3 npm +@types/node 20.12.4 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 5abeff2c52ab01c15ab8eb9b87fbc7feeb9cb55b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 Apr 2024 21:43:59 +0000 Subject: [PATCH 218/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7f66e95..ad32941 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,7 +31,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.12.4 npm +@types/node 20.12.7 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From cd2e670d698c16d299711daf4e749a1368610b4d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Apr 2024 21:43:48 +0000 Subject: [PATCH 219/337] Bot Updating Package Versions --- package_versions.txt | 59 ++++++++++++++++++++++---------------------- 1 file changed, 30 insertions(+), 29 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ad32941..facd895 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -26,7 +26,7 @@ NAME VE @sigstore/sign 2.2.3 npm @sigstore/tuf 2.3.1 npm @sigstore/verify 1.1.0 npm -@socket.io/component-emitter 3.1.0 npm +@socket.io/component-emitter 3.1.1 npm @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @@ -92,7 +92,7 @@ color-support 1. columnify 1.6.0 npm common-ancestor-path 1.0.1 npm console-control-strings 1.1.0 npm -containerd.io 1.6.28-2 deb +containerd.io 1.6.31-1 deb content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.4.2 npm @@ -119,8 +119,8 @@ destroy 1. diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:26.0.0-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:26.0.0-1~ubuntu.22.04~jammy deb +docker-ce 5:26.0.1-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:26.0.1-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -163,8 +163,9 @@ github.com/Graylog2/go-gelf v0 github.com/Masterminds/semver v1.5.0 go-module github.com/Microsoft/hcsshim v0.11.4 go-module github.com/Microsoft/hcsshim v0.9.10 go-module (+1 duplicate) -github.com/NVIDIA/go-nvml v0.12.0-2 go-module (+2 duplicates) -github.com/NVIDIA/nvidia-container-toolkit v1.14.6 go-module (+2 duplicates) +github.com/NVIDIA/go-nvlib v0.2.0 go-module (+2 duplicates) +github.com/NVIDIA/go-nvml v0.12.0-3 go-module (+2 duplicates) +github.com/NVIDIA/nvidia-container-toolkit v1.15.0 go-module (+2 duplicates) github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module github.com/a8m/envsubst v1.3.0 go-module (+1 duplicate) github.com/agext/levenshtein v1.2.3 go-module @@ -209,8 +210,8 @@ github.com/containerd/cgroups/v3 v3 github.com/containerd/console v1.0.3 go-module (+6 duplicates) github.com/containerd/console v1.0.4 go-module github.com/containerd/containerd v1.6.2 go-module -github.com/containerd/containerd v1.6.28 go-module (+4 duplicates) -github.com/containerd/containerd v1.7.14 go-module +github.com/containerd/containerd v1.6.31 go-module (+4 duplicates) +github.com/containerd/containerd v1.7.15 go-module github.com/containerd/continuity v0.2.2 go-module github.com/containerd/continuity v0.3.0 go-module (+3 duplicates) github.com/containerd/continuity v0.4.3 go-module @@ -249,12 +250,12 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.5.0 go-module github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v26.0.0 go-module +github.com/docker/cli/cmd/docker v26.0.1 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v26.0.0 go-module (+1 duplicate) +github.com/docker/docker v26.0.1 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -293,8 +294,7 @@ github.com/golang/gddo v0 github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da go-module github.com/golang/mock v1.6.0 go-module github.com/golang/protobuf v1.5.2 go-module -github.com/golang/protobuf v1.5.3 go-module (+4 duplicates) -github.com/golang/protobuf v1.5.4 go-module +github.com/golang/protobuf v1.5.4 go-module (+5 duplicates) github.com/google/btree v1.1.2 go-module github.com/google/certificate-transparency-go v1.1.4 go-module github.com/google/go-cmp v0.5.7 go-module @@ -303,7 +303,7 @@ github.com/google/gofuzz v1 github.com/google/s2a-go v0.1.4 go-module github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module (+1 duplicate) github.com/google/uuid v1.3.1 go-module (+1 duplicate) -github.com/google/uuid v1.6.0 go-module +github.com/google/uuid v1.6.0 go-module (+3 duplicates) github.com/googleapis/enterprise-certificate-proxy v0.2.4 go-module github.com/googleapis/gax-go/v2 v2.12.0 go-module github.com/gorilla/mux v1.8.0 go-module @@ -447,7 +447,6 @@ github.com/xeipuuv/gojsonschema v1 github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 go-module github.com/zmap/zcrypto v0.0.0-20210511125630-18f1e0152cfc go-module github.com/zmap/zlint/v3 v3.1.0 go-module -gitlab.com/nvidia/cloud-native/go-nvlib v0.0.0-20230818092907-09424fdc8884 go-module (+2 duplicates) glob 10.3.10 npm gnupg 2.2.27-3ubuntu2.1 deb gnupg-l10n 2.2.27-3ubuntu2.1 deb @@ -496,14 +495,15 @@ go.uber.org/atomic v1 go.uber.org/multierr v1.8.0 go-module go.uber.org/zap v1.21.0 go-module golang.org/x/crypto v0.0.0-20211202192323-5770296d904e go-module -golang.org/x/crypto v0.17.0 go-module golang.org/x/crypto v0.18.0 go-module +golang.org/x/crypto v0.21.0 go-module golang.org/x/exp v0.0.0-20231006140011-7918f672742d go-module golang.org/x/mod v0.13.0 go-module -golang.org/x/mod v0.15.0 go-module (+2 duplicates) +golang.org/x/mod v0.17.0 go-module (+2 duplicates) golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module (+1 duplicate) golang.org/x/net v0.0.0-20211216030914-fe4d6282115f go-module -golang.org/x/net v0.18.0 go-module (+2 duplicates) +golang.org/x/net v0.18.0 go-module (+1 duplicate) +golang.org/x/net v0.23.0 go-module golang.org/x/net v0.8.0 go-module golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 go-module golang.org/x/oauth2 v0.11.0 go-module (+1 duplicate) @@ -513,8 +513,8 @@ golang.org/x/sync v0 golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module (+1 duplicate) golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module golang.org/x/sys v0.16.0 go-module (+4 duplicates) -golang.org/x/sys v0.17.0 go-module (+2 duplicates) golang.org/x/sys v0.18.0 go-module (+1 duplicate) +golang.org/x/sys v0.19.0 go-module (+2 duplicates) golang.org/x/sys v0.6.0 go-module golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module golang.org/x/term v0.16.0 go-module @@ -533,8 +533,7 @@ google.golang.org/genproto/googleapis/rpc v0 google.golang.org/grpc v1.44.0 go-module google.golang.org/grpc v1.59.0 go-module (+5 duplicates) google.golang.org/protobuf v1.27.1 go-module (+1 duplicate) -google.golang.org/protobuf v1.31.0 go-module (+4 duplicates) -google.golang.org/protobuf v1.33.0 go-module +google.golang.org/protobuf v1.33.0 go-module (+5 duplicates) gopd 1.0.1 npm gopkg.in/inf.v0 v0.9.1 go-module (+1 duplicate) gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module (+1 duplicate) @@ -680,8 +679,8 @@ libnpmteam 6. libnpmversion 5.0.2 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.14.6-1 deb -libnvidia-container1 1.14.6-1 deb +libnvidia-container-tools 1.15.0-1 deb +libnvidia-container1 1.15.0-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.4 deb @@ -766,7 +765,7 @@ netcat 1. netcat-openbsd 1.218-4ubuntu1 deb node-gyp 10.0.1 npm node-pty 0.10.1 npm -nodejs 18.20.1-1nodesource1 deb +nodejs 18.20.2-1nodesource1 deb nopt 7.2.0 npm normalize-package-data 6.0.0 npm npm 10.5.0 npm @@ -781,8 +780,8 @@ npm-profile 9. npm-registry-fetch 16.1.0 npm npm-user-validate 2.0.0 npm npmlog 7.0.1 npm -nvidia-container-toolkit 1.14.6-1 deb -nvidia-container-toolkit-base 1.14.6-1 deb +nvidia-container-toolkit 1.15.0-1 deb +nvidia-container-toolkit-base 1.15.0-1 deb nvidia-docker2 2.14.0-1 deb object-assign 4.1.1 npm object-inspect 1.13.1 npm @@ -863,8 +862,8 @@ ssri 10 statuses 2.0.1 npm stdlib go1.17.9 go-module stdlib go1.18.1 go-module (+1 duplicate) -stdlib go1.20.5 go-module (+2 duplicates) -stdlib go1.21.8 go-module (+8 duplicates) +stdlib go1.21.9 go-module (+8 duplicates) +stdlib go1.22.1 go-module (+2 duplicates) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) string_decoder 1.3.0 npm @@ -874,8 +873,10 @@ sudo 1. supports-color 9.4.0 npm systeminformation 5.22.7 npm sysvinit-utils 3.01-1ubuntu1 deb -tags.cncf.io/container-device-interface v0.6.2 go-module (+3 duplicates) -tags.cncf.io/container-device-interface/specs-go v0.6.0 go-module (+3 duplicates) +tags.cncf.io/container-device-interface v0.6.2 go-module +tags.cncf.io/container-device-interface v0.7.1 go-module (+2 duplicates) +tags.cncf.io/container-device-interface/specs-go v0.6.0 go-module +tags.cncf.io/container-device-interface/specs-go v0.7.0 go-module (+2 duplicates) tar 1.34+dfsg-1ubuntu0.1.22.04.2 deb tar 6.2.0 npm tar-fs 2.0.1 npm From 1e0ec4e6bd6493fd24974ef966a850b8dd5d6393 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 24 Jun 2024 15:50:38 +0000 Subject: [PATCH 220/337] Bot Updating Templated Files --- Jenkinsfile | 49 ++++++++++++++++--------------------------------- 1 file changed, 16 insertions(+), 33 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c1b05d2..988a907 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -275,7 +275,7 @@ pipeline { # ${TEMPDIR}/unraid/docker-templates: Cloned docker-templates repo to check for logos # ${TEMPDIR}/unraid/templates: Cloned templates repo for commiting unraid template changes and pushing back to Github git clone --branch develop --depth 1 https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/docker-${CONTAINER_NAME} - docker run --rm -v ${TEMPDIR}/docker-${CONTAINER_NAME}:/tmp -e LOCAL=true ghcr.io/linuxserver/jenkins-builder:latest + docker run --rm -v ${TEMPDIR}/docker-${CONTAINER_NAME}:/tmp -e LOCAL=true -e PUID=$(id -u) -e PGID=$(id -g) ghcr.io/linuxserver/jenkins-builder:latest echo "Starting Stage 1 - Jenkinsfile update" if [[ "$(md5sum Jenkinsfile | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile | awk '{ print $1 }')" ]]; then mkdir -p ${TEMPDIR}/repo @@ -295,7 +295,7 @@ pipeline { echo "Jenkinsfile is up to date." fi echo "Starting Stage 2 - Delete old templates" - OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md .github/ISSUE_TEMPLATE/issue.bug.md .github/ISSUE_TEMPLATE/issue.feature.md .github/workflows/call_invalid_helper.yml .github/workflows/stale.yml Dockerfile.armhf" + OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md .github/ISSUE_TEMPLATE/issue.bug.md .github/ISSUE_TEMPLATE/issue.feature.md .github/workflows/call_invalid_helper.yml .github/workflows/stale.yml" for i in ${OLD_TEMPLATES}; do if [[ -f "${i}" ]]; then TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}" @@ -381,7 +381,9 @@ pipeline { echo "Updating Unraid template" cd ${TEMPDIR}/unraid/templates/ GH_TEMPLATES_DEFAULT_BRANCH=$(git remote show origin | grep "HEAD branch:" | sed 's|.*HEAD branch: ||') - if grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list; then + if grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list && [[ -f ${TEMPDIR}/unraid/templates/unraid/deprecated/${CONTAINER_NAME}.xml ]]; then + echo "Image is on the ignore list, and already in the deprecation folder." + elif grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list; then echo "Image is on the ignore list, marking Unraid template as deprecated" cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ git add -u unraid/${CONTAINER_NAME}.xml @@ -523,6 +525,7 @@ pipeline { --label \"org.opencontainers.image.title=Kasm\" \ --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/?utm_campaign=LinuxServer&utm_source=listing) Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services. Kasm uses devops-enabled Containerized Desktop Infrastructure (CDI) to create on-demand, disposable, docker containers that are accessible via web browser. Example use-cases include Remote Browser Isolation (RBI), Data Loss Prevention (DLP), Desktop as a Service (DaaS), Secure Remote Access Services (RAS), and Open Source Intelligence (OSINT) collections. The rendering of the graphical-based containers is powered by the open-source project [KasmVNC](https://www.kasmweb.com/kasmvnc.html?utm_campaign=LinuxServer&utm_source=kasmvnc). \" \ --no-cache --pull -t ${IMAGE}:${META_TAG} --platform=linux/amd64 \ + --provenance=false --sbom=false \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." } } @@ -554,6 +557,7 @@ pipeline { --label \"org.opencontainers.image.title=Kasm\" \ --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/?utm_campaign=LinuxServer&utm_source=listing) Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services. Kasm uses devops-enabled Containerized Desktop Infrastructure (CDI) to create on-demand, disposable, docker containers that are accessible via web browser. Example use-cases include Remote Browser Isolation (RBI), Data Loss Prevention (DLP), Desktop as a Service (DaaS), Secure Remote Access Services (RAS), and Open Source Intelligence (OSINT) collections. The rendering of the graphical-based containers is powered by the open-source project [KasmVNC](https://www.kasmweb.com/kasmvnc.html?utm_campaign=LinuxServer&utm_source=kasmvnc). \" \ --no-cache --pull -t ${IMAGE}:amd64-${META_TAG} --platform=linux/amd64 \ + --provenance=false --sbom=false \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." } } @@ -582,6 +586,7 @@ pipeline { --label \"org.opencontainers.image.title=Kasm\" \ --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/?utm_campaign=LinuxServer&utm_source=listing) Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services. Kasm uses devops-enabled Containerized Desktop Infrastructure (CDI) to create on-demand, disposable, docker containers that are accessible via web browser. Example use-cases include Remote Browser Isolation (RBI), Data Loss Prevention (DLP), Desktop as a Service (DaaS), Secure Remote Access Services (RAS), and Open Source Intelligence (OSINT) collections. The rendering of the graphical-based containers is powered by the open-source project [KasmVNC](https://www.kasmweb.com/kasmvnc.html?utm_campaign=LinuxServer&utm_source=kasmvnc). \" \ --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} --platform=linux/arm64 \ + --provenance=false --sbom=false \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh "docker tag ${IMAGE}:arm64v8-${META_TAG} ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" retry(5) { @@ -608,7 +613,7 @@ pipeline { sh '''#! /bin/bash set -e TEMPDIR=$(mktemp -d) - if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false" ]; then + if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" != "true" ]; then LOCAL_CONTAINER=${IMAGE}:amd64-${META_TAG} else LOCAL_CONTAINER=${IMAGE}:${META_TAG} @@ -705,7 +710,7 @@ pipeline { --shm-size=1gb \ -v /var/run/docker.sock:/var/run/docker.sock \ -e IMAGE=\"${IMAGE}\" \ - -e DELAY_START=\"${CI_DELAY}\" \ + -e DOCKER_LOGS_TIMEOUT=\"${CI_DELAY}\" \ -e TAGS=\"${CI_TAGS}\" \ -e META_TAG=\"${META_TAG}\" \ -e PORT=\"${CI_PORT}\" \ @@ -813,35 +818,13 @@ pipeline { docker push ${MANIFESTIMAGE}:amd64-${SEMVER} docker push ${MANIFESTIMAGE}:arm64v8-${SEMVER} fi - docker manifest push --purge ${MANIFESTIMAGE}:develop || : - docker manifest create ${MANIFESTIMAGE}:develop ${MANIFESTIMAGE}:amd64-develop ${MANIFESTIMAGE}:arm64v8-develop - docker manifest annotate ${MANIFESTIMAGE}:develop ${MANIFESTIMAGE}:arm64v8-develop --os linux --arch arm64 --variant v8 - docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} || : - docker manifest create ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} - docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} --os linux --arch arm64 --variant v8 - docker manifest push --purge ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} || : - docker manifest create ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} - docker manifest annotate ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} --os linux --arch arm64 --variant v8 + done + for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do + docker buildx imagetools create -t ${MANIFESTIMAGE}:develop ${MANIFESTIMAGE}:amd64-develop ${MANIFESTIMAGE}:arm64v8-develop + docker buildx imagetools create -t ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} + docker buildx imagetools create -t ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} if [ -n "${SEMVER}" ]; then - docker manifest push --purge ${MANIFESTIMAGE}:${SEMVER} || : - docker manifest create ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} - docker manifest annotate ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} --os linux --arch arm64 --variant v8 - fi - token=$(curl -sX GET "https://ghcr.io/token?scope=repository%3Alinuxserver%2F${CONTAINER_NAME}%3Apull" | jq -r '.token') - digest=$(curl -s \ - --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ - --header "Authorization: Bearer ${token}" \ - "https://ghcr.io/v2/linuxserver/${CONTAINER_NAME}/manifests/arm32v7-develop") - if [[ $(echo "$digest" | jq -r '.layers') != "null" ]]; then - docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-develop || : - docker manifest create ${MANIFESTIMAGE}:arm32v7-develop ${MANIFESTIMAGE}:amd64-develop - docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-develop - fi - docker manifest push --purge ${MANIFESTIMAGE}:develop - docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} - docker manifest push --purge ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} - if [ -n "${SEMVER}" ]; then - docker manifest push --purge ${MANIFESTIMAGE}:${SEMVER} + docker buildx imagetools create -t ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} fi done ''' From 5029c070861992ede6f733e5afe5de1632c2b6ff Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 24 Jun 2024 15:52:02 +0000 Subject: [PATCH 221/337] Bot Updating Templated Files --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a119ea..019c3b1 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Find us at: # [linuxserver/kasm](https://github.com/linuxserver/docker-kasm) -[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Fkasm?color=94398d&label-color=555555&logo-color=ffffff&style=for-the-badge&package-type=docker)](https://scarf.sh/gateway/linuxserver-ci/docker/linuxserver%2Fkasm) +[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Fkasm?color=94398d&label-color=555555&logo-color=ffffff&style=for-the-badge&package-type=docker)](https://scarf.sh) [![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-kasm.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-kasm) [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-kasm.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-kasm/releases) [![GitHub Package Repository](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitHub%20Package&logo=github)](https://github.com/linuxserver/docker-kasm/packages) From 370ea1b07aef5ad0bc10c15c62a47448608e6889 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 24 Jun 2024 15:55:46 +0000 Subject: [PATCH 222/337] Bot Updating Package Versions --- package_versions.txt | 248 ++++++++++++++++++++----------------------- 1 file changed, 117 insertions(+), 131 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index facd895..13cdc7e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,52 +1,50 @@ NAME VERSION TYPE 1to2 1.0.0 npm @balena/dockerignore 1.0.2 npm -@colors/colors 1.5.0 npm @isaacs/cliui 8.0.2 npm @isaacs/string-locale-compare 1.1.0 npm -@npmcli/agent 2.2.1 npm -@npmcli/arborist 7.4.0 npm -@npmcli/config 8.2.0 npm -@npmcli/disparity-colors 3.0.0 npm +@npmcli/agent 2.2.2 npm +@npmcli/arborist 7.5.1 npm +@npmcli/config 8.3.1 npm @npmcli/fs 3.1.0 npm -@npmcli/git 5.0.4 npm -@npmcli/installed-package-contents 2.0.2 npm -@npmcli/map-workspaces 3.0.4 npm -@npmcli/metavuln-calculator 7.0.0 npm +@npmcli/git 5.0.6 npm +@npmcli/installed-package-contents 2.1.0 npm +@npmcli/map-workspaces 3.0.6 npm +@npmcli/metavuln-calculator 7.1.0 npm @npmcli/name-from-folder 2.0.0 npm @npmcli/node-gyp 3.0.0 npm -@npmcli/package-json 5.0.0 npm +@npmcli/package-json 5.1.0 npm @npmcli/promise-spawn 7.0.1 npm @npmcli/query 3.1.0 npm -@npmcli/run-script 7.0.4 npm +@npmcli/redact 2.0.0 npm +@npmcli/run-script 8.1.0 npm @pkgjs/parseargs 0.11.0 npm -@sigstore/bundle 2.2.0 npm -@sigstore/core 1.0.0 npm -@sigstore/protobuf-specs 0.3.0 npm -@sigstore/sign 2.2.3 npm -@sigstore/tuf 2.3.1 npm -@sigstore/verify 1.1.0 npm -@socket.io/component-emitter 3.1.1 npm +@sigstore/bundle 2.3.1 npm +@sigstore/core 1.1.0 npm +@sigstore/protobuf-specs 0.3.1 npm +@sigstore/sign 2.3.0 npm +@sigstore/tuf 2.3.2 npm +@sigstore/verify 1.2.0 npm +@socket.io/component-emitter 3.1.2 npm @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.12.7 npm +@types/node 20.14.8 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb -agent-base 7.1.0 npm +agent-base 7.1.1 npm aggregate-error 3.1.0 npm ansi-regex 5.0.1 npm ansi-regex 6.0.1 npm (+1 duplicate) -ansi-styles 4.3.0 npm (+1 duplicate) +ansi-styles 4.3.0 npm ansi-styles 6.2.1 npm aproba 2.0.0 npm apt 2.4.12 deb apt-transport-https 2.4.12 deb apt-utils 2.4.12 deb archy 1.0.0 npm -are-we-there-yet 4.0.2 npm argparse 2.0.1 npm array-flatten 1.1.1 npm asn1 0.2.6 npm @@ -56,31 +54,29 @@ base-passwd 3. base64-js 1.5.1 npm base64id 2.0.0 npm bash 5.1-6ubuntu1.1 deb -bash 5.1.16 binary bcrypt-pbkdf 1.0.2 npm bin-links 4.0.3 npm -binary-extensions 2.2.0 npm +binary-extensions 2.3.0 npm bl 4.1.0 npm body-parser 1.20.2 npm brace-expansion 2.0.1 npm -bsdutils 1:2.37.2-4ubuntu3.3 deb +bsdutils 1:2.37.2-4ubuntu3.4 deb btrfs-progs 5.16.2-1 deb buffer 5.7.1 npm buildcheck 0.0.6 npm -builtins 5.0.1 npm +builtins 5.1.0 npm bytes 3.1.2 npm ca-certificates 20230311ubuntu0.22.04.1 deb cacache 18.0.2 npm call-bind 1.0.7 npm +catatonit 0.1.7-1 deb chalk 5.3.0 npm chownr 1.1.4 npm chownr 2.0.0 npm ci-info 4.0.0 npm -cidr-regex 4.0.3 npm +cidr-regex 4.0.5 npm clean-stack 2.2.0 npm cli-columns 4.0.0 npm -cli-table3 0.6.3 npm -clone 1.0.4 npm cloud.google.com/go/compute/metadata v0.2.3 go-module cloud.google.com/go/logging v1.8.1 go-module cloud.google.com/go/longrunning v0.5.2 go-module @@ -88,20 +84,17 @@ cmd-shim 6. code.cloudfoundry.org/clock v1.1.0 go-module color-convert 2.0.1 npm color-name 1.1.4 npm -color-support 1.1.3 npm -columnify 1.6.0 npm common-ancestor-path 1.0.1 npm -console-control-strings 1.1.0 npm -containerd.io 1.6.31-1 deb +containerd.io 1.6.33-1 deb content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.4.2 npm cookie 0.6.0 npm cookie-signature 1.0.6 npm -corepack 0.25.2 npm +corepack 0.28.0 npm coreutils 8.32-4.1ubuntu1.2 deb cors 2.8.5 npm -cpu-features 0.0.9 npm +cpu-features 0.0.10 npm cron 3.0pl1-137ubuntu3 deb cross-spawn 7.0.3 npm cssesc 3.0.0 npm @@ -111,16 +104,16 @@ dash 0. debconf 1.5.79ubuntu1 deb debianutils 5.5-1ubuntu2 deb debug 2.6.9 npm (+3 duplicates) -debug 4.3.4 npm (+1 duplicate) -defaults 1.0.4 npm +debug 4.3.4 npm +debug 4.3.5 npm define-data-property 1.1.4 npm depd 2.0.0 npm destroy 1.2.0 npm diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:26.0.1-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:26.0.1-1~ubuntu.22.04~jammy deb +docker-ce 5:26.1.4-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:26.1.4-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -133,7 +126,7 @@ emoji-regex 9. encodeurl 1.0.2 npm encoding 0.1.13 npm end-of-stream 1.4.4 npm -engine.io 6.5.4 npm +engine.io 6.5.5 npm engine.io-parser 5.2.2 npm env-paths 2.2.1 npm err-code 2.0.3 npm @@ -155,14 +148,13 @@ fs-minipass 3. function-bind 1.1.2 npm (+1 duplicate) fuse-overlayfs 1.7.1-1 deb fuse3 3.10.5-1build1 deb -gauge 5.0.1 npm gcc-12-base 12.3.0-1ubuntu1~22.04 deb get-intrinsic 1.2.4 npm github.com/AlecAivazis/survey/v2 v2.3.2 go-module github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module github.com/Masterminds/semver v1.5.0 go-module -github.com/Microsoft/hcsshim v0.11.4 go-module -github.com/Microsoft/hcsshim v0.9.10 go-module (+1 duplicate) +github.com/Microsoft/hcsshim v0.11.5 go-module +github.com/Microsoft/hcsshim v0.9.11 go-module (+1 duplicate) github.com/NVIDIA/go-nvlib v0.2.0 go-module (+2 duplicates) github.com/NVIDIA/go-nvml v0.12.0-3 go-module (+2 duplicates) github.com/NVIDIA/nvidia-container-toolkit v1.15.0 go-module (+2 duplicates) @@ -189,6 +181,7 @@ github.com/aws/aws-sdk-go-v2/service/ssooidc v1 github.com/aws/aws-sdk-go-v2/service/sts v1.26.7 go-module github.com/aws/smithy-go v1.19.0 go-module github.com/beorn7/perks v1.0.1 go-module (+2 duplicates) +github.com/bits-and-blooms/bitset v1.13.0 go-module github.com/blang/semver v3.5.1+incompatible go-module github.com/buger/goterm v1.0.4 go-module github.com/cenkalti/backoff/v4 v4.1.2 go-module @@ -210,25 +203,26 @@ github.com/containerd/cgroups/v3 v3 github.com/containerd/console v1.0.3 go-module (+6 duplicates) github.com/containerd/console v1.0.4 go-module github.com/containerd/containerd v1.6.2 go-module -github.com/containerd/containerd v1.6.31 go-module (+4 duplicates) -github.com/containerd/containerd v1.7.15 go-module +github.com/containerd/containerd v1.6.33 go-module (+4 duplicates) +github.com/containerd/containerd v1.7.18 go-module github.com/containerd/continuity v0.2.2 go-module github.com/containerd/continuity v0.3.0 go-module (+3 duplicates) github.com/containerd/continuity v0.4.3 go-module +github.com/containerd/errdefs v0.1.0 go-module (+5 duplicates) github.com/containerd/fifo v1.0.0 go-module (+4 duplicates) github.com/containerd/fifo v1.1.0 go-module github.com/containerd/go-cni v1.1.6 go-module (+1 duplicate) github.com/containerd/go-cni v1.1.9 go-module github.com/containerd/go-runc v1.0.0 go-module (+4 duplicates) github.com/containerd/go-runc v1.1.0 go-module -github.com/containerd/imgcrypt v1.1.4 go-module +github.com/containerd/imgcrypt v1.1.8 go-module github.com/containerd/log v0.1.0 go-module (+6 duplicates) github.com/containerd/nri v0.1.1 go-module github.com/containerd/nydus-snapshotter v0.13.7 go-module github.com/containerd/stargz-snapshotter/estargz v0.15.1 go-module github.com/containerd/ttrpc v1.1.0 go-module github.com/containerd/ttrpc v1.1.2 go-module (+4 duplicates) -github.com/containerd/ttrpc v1.2.3 go-module +github.com/containerd/ttrpc v1.2.4 go-module github.com/containerd/typeurl v1.0.2 go-module (+5 duplicates) github.com/containerd/typeurl/v2 v2.1.1 go-module github.com/containerd/zfs v1.1.0 go-module @@ -236,26 +230,26 @@ github.com/containernetworking/cni v1 github.com/containernetworking/cni v1.1.2 go-module github.com/containernetworking/plugins v1.1.1 go-module github.com/containernetworking/plugins v1.4.0 go-module -github.com/containers/ocicrypt v1.1.3 go-module +github.com/containers/ocicrypt v1.1.10 go-module github.com/coreos/go-systemd/v22 v22.3.2 go-module (+4 duplicates) github.com/coreos/go-systemd/v22 v22.5.0 go-module github.com/cpuguy83/go-md2man/v2 v2.0.0 go-module (+1 duplicate) github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module github.com/cpuguy83/go-md2man/v2 v2.0.2 go-module github.com/cyphar/filepath-securejoin v0.2.4 go-module (+1 duplicate) -github.com/davecgh/go-spew v1.1.1 go-module (+1 duplicate) +github.com/davecgh/go-spew v1.1.1 go-module (+2 duplicates) github.com/deckarep/golang-set/v2 v2.3.0 go-module github.com/dimchansky/utfbom v1.1.1 go-module github.com/distribution/distribution/v3 v3.0.0-20210316161203-a01c71e2477e go-module github.com/distribution/reference v0.5.0 go-module github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v26.0.1 go-module +github.com/docker/cli/cmd/docker v26.1.4 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v26.0.1 go-module (+1 duplicate) +github.com/docker/docker v26.1.4 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -278,6 +272,7 @@ github.com/fsnotify/fsnotify v1 github.com/fsnotify/fsnotify v1.6.0 go-module github.com/fsnotify/fsnotify v1.7.0 go-module (+2 duplicates) github.com/fvbommel/sortorder v1.0.1 go-module +github.com/go-jose/go-jose/v3 v3.0.3 go-module github.com/go-logr/logr v1.2.2 go-module github.com/go-logr/logr v1.3.0 go-module (+1 duplicate) github.com/go-logr/stdr v1.2.2 go-module (+2 duplicates) @@ -349,14 +344,14 @@ github.com/mitchellh/hashstructure/v2 v2 github.com/mitchellh/mapstructure v1.4.3 go-module github.com/mitchellh/reflectwalk v1.0.2 go-module github.com/moby/buildkit v0.10.0-rc2.0.20220308185020-fdecd0ae108b go-module -github.com/moby/buildkit v0.13.1 go-module +github.com/moby/buildkit v0.13.2 go-module github.com/moby/docker-image-spec v1.3.1 go-module github.com/moby/ipvs v1.1.0 go-module github.com/moby/locker v1.0.1 go-module (+3 duplicates) github.com/moby/patternmatcher v0.6.0 go-module github.com/moby/pubsub v1.0.0 go-module github.com/moby/spdystream v0.2.0 go-module -github.com/moby/swarmkit/v2 v2.0.0-20240125134710-dcda100a8261 go-module +github.com/moby/swarmkit/v2 v2.0.0-20240412154004-f3ffc0881d0e go-module github.com/moby/sys/mount v0.3.3 go-module github.com/moby/sys/mountinfo v0.5.0 go-module github.com/moby/sys/mountinfo v0.6.2 go-module (+4 duplicates) @@ -374,14 +369,12 @@ github.com/morikuni/aec v1 github.com/mrunalp/fileutils v0.5.1 go-module github.com/opencontainers/go-digest v1.0.0 go-module (+6 duplicates) github.com/opencontainers/image-spec v1.0.2 go-module -github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module (+3 duplicates) -github.com/opencontainers/image-spec v1.1.0-rc5 go-module +github.com/opencontainers/image-spec v1.1.0 go-module (+4 duplicates) github.com/opencontainers/runc v1.1.0 go-module github.com/opencontainers/runc v1.1.12 go-module github.com/opencontainers/runc v1.1.12-0-g51d5e94 go-module github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module (+5 duplicates) -github.com/opencontainers/runtime-spec v1.1.0 go-module -github.com/opencontainers/runtime-spec v1.2.0 go-module (+2 duplicates) +github.com/opencontainers/runtime-spec v1.2.0 go-module (+3 duplicates) github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module (+3 duplicates) github.com/opencontainers/selinux v1.10.0 go-module github.com/opencontainers/selinux v1.10.1 go-module (+1 duplicate) @@ -391,6 +384,7 @@ github.com/pelletier/go-toml v1 github.com/pelletier/go-toml v1.9.5 go-module (+5 duplicates) github.com/philhofer/fwd v1.1.2 go-module github.com/pkg/errors v0.9.1 go-module (+6 duplicates) +github.com/pmezard/go-difflib v1.0.0 go-module github.com/prometheus/client_golang v1.11.1 go-module github.com/prometheus/client_golang v1.12.1 go-module github.com/prometheus/client_golang v1.17.0 go-module @@ -418,7 +412,8 @@ github.com/spdx/tools-golang v0 github.com/spf13/cobra v1.4.0 go-module (+2 duplicates) github.com/spf13/cobra v1.8.0 go-module github.com/spf13/pflag v1.0.5 go-module (+4 duplicates) -github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 go-module +github.com/stefanberger/go-pkcs11uri v0.0.0-20230803200340-78284954bff6 go-module +github.com/stretchr/testify v1.8.4 go-module github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module (+4 duplicates) github.com/tchap/go-patricia v2.2.6+incompatible go-module github.com/theupdateframework/notary v0.6.1 go-module @@ -426,7 +421,7 @@ github.com/timtadh/data-structures v0 github.com/timtadh/lexmachine v0.2.2 go-module (+1 duplicate) github.com/tinylib/msgp v1.1.8 go-module github.com/tonistiigi/fsutil v0.0.0-20220315205639-9ed612626da3 go-module -github.com/tonistiigi/fsutil v0.0.0-20240301111122-7525a1af2bb5 go-module +github.com/tonistiigi/fsutil v0.0.0-20240424095704-91a3fc46842c go-module github.com/tonistiigi/go-actions-cache v0.0.0-20240227172821-a0b64f338598 go-module github.com/tonistiigi/go-archvariant v1.0.0 go-module github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module (+1 duplicate) @@ -447,7 +442,7 @@ github.com/xeipuuv/gojsonschema v1 github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 go-module github.com/zmap/zcrypto v0.0.0-20210511125630-18f1e0152cfc go-module github.com/zmap/zlint/v3 v3.1.0 go-module -glob 10.3.10 npm +glob 10.3.12 npm gnupg 2.2.27-3ubuntu2.1 deb gnupg-l10n 2.2.27-3ubuntu2.1 deb gnupg-utils 2.2.27-3ubuntu2.1 deb @@ -495,15 +490,12 @@ go.uber.org/atomic v1 go.uber.org/multierr v1.8.0 go-module go.uber.org/zap v1.21.0 go-module golang.org/x/crypto v0.0.0-20211202192323-5770296d904e go-module -golang.org/x/crypto v0.18.0 go-module -golang.org/x/crypto v0.21.0 go-module +golang.org/x/crypto v0.21.0 go-module (+1 duplicate) golang.org/x/exp v0.0.0-20231006140011-7918f672742d go-module -golang.org/x/mod v0.13.0 go-module -golang.org/x/mod v0.17.0 go-module (+2 duplicates) +golang.org/x/mod v0.17.0 go-module (+3 duplicates) golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module (+1 duplicate) golang.org/x/net v0.0.0-20211216030914-fe4d6282115f go-module -golang.org/x/net v0.18.0 go-module (+1 duplicate) -golang.org/x/net v0.23.0 go-module +golang.org/x/net v0.23.0 go-module (+2 duplicates) golang.org/x/net v0.8.0 go-module golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 go-module golang.org/x/oauth2 v0.11.0 go-module (+1 duplicate) @@ -512,12 +504,11 @@ golang.org/x/sync v0 golang.org/x/sync v0.5.0 go-module golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module (+1 duplicate) golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module -golang.org/x/sys v0.16.0 go-module (+4 duplicates) -golang.org/x/sys v0.18.0 go-module (+1 duplicate) +golang.org/x/sys v0.18.0 go-module (+6 duplicates) golang.org/x/sys v0.19.0 go-module (+2 duplicates) golang.org/x/sys v0.6.0 go-module golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module -golang.org/x/term v0.16.0 go-module +golang.org/x/term v0.18.0 go-module golang.org/x/text v0.14.0 go-module (+2 duplicates) golang.org/x/text v0.3.7 go-module (+2 duplicates) golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module (+1 duplicate) @@ -537,9 +528,9 @@ google.golang.org/protobuf v1 gopd 1.0.1 npm gopkg.in/inf.v0 v0.9.1 go-module (+1 duplicate) gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module (+1 duplicate) -gopkg.in/square/go-jose.v2 v2.5.1 go-module gopkg.in/yaml.v2 v2.4.0 go-module (+5 duplicates) gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b go-module (+1 duplicate) +gopkg.in/yaml.v3 v3.0.1 go-module (+1 duplicate) gpg 2.2.27-3ubuntu2.1 deb gpg-agent 2.2.27-3ubuntu2.1 deb gpg-wks-client 2.2.27-3ubuntu2.1 deb @@ -553,9 +544,7 @@ gzip 1. has-property-descriptors 1.0.2 npm has-proto 1.0.3 npm has-symbols 1.0.3 npm -has-unicode 2.0.1 npm -hasown 2.0.1 npm -hasown 2.0.2 npm +hasown 2.0.2 npm (+1 duplicate) hosted-git-info 7.0.1 npm hostname 3.23ubuntu2 deb http-cache-semantics 4.1.1 npm @@ -569,14 +558,14 @@ ignore-walk 6. imurmurhash 0.1.4 npm indent-string 4.0.0 npm inherits 2.0.4 npm -ini 4.1.1 npm -init-package-json 6.0.0 npm +ini 4.1.2 npm +init-package-json 6.0.2 npm init-system-helpers 1.62 deb ip-address 9.0.5 npm ip-regex 5.0.0 npm ipaddr.js 1.9.1 npm iptables 1.8.7-1ubuntu5.2 deb -is-cidr 5.0.3 npm +is-cidr 5.0.5 npm is-core-module 2.13.1 npm is-fullwidth-code-point 3.0.0 npm is-lambda 1.0.1 npm @@ -610,12 +599,12 @@ libassuan0 2. libattr1 1:2.5.1-1build1 deb libaudit-common 1:3.0.7-1build1 deb libaudit1 1:3.0.7-1build1 deb -libblkid1 2.37.2-4ubuntu3.3 deb +libblkid1 2.37.2-4ubuntu3.4 deb libbrotli1 1.0.9-2build6 deb libbsd0 0.11.5-1 deb libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.6 deb -libc6 2.35-0ubuntu3.6 deb +libc-bin 2.35-0ubuntu3.8 deb +libc6 2.35-0ubuntu3.8 deb libcap-ng0 0.7.9-2.2build3 deb libcap2 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb @@ -634,7 +623,7 @@ libfuse3-3 3. libgcc-s1 12.3.0-1ubuntu1~22.04 deb libgcrypt20 1.9.4-3ubuntu3 deb libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.4 deb +libgnutls30 3.7.3-4ubuntu1.5 deb libgpg-error0 1.43-3 deb libgssapi-krb5-2 1.19.2-2ubuntu0.3 deb libhogweed6 3.7.3-1build2 deb @@ -657,7 +646,7 @@ liblzma5 5. liblzo2-2 2.10-2build3 deb libmd0 1.0.4-1build1 deb libmnl0 1.0.4-3build2 deb -libmount1 2.37.2-4ubuntu3.3 deb +libmount1 2.37.2-4ubuntu3.4 deb libmpdec3 2.5.1-2build2 deb libncurses6 6.3-2ubuntu0.1 deb libncursesw6 6.3-2ubuntu0.1 deb @@ -665,18 +654,18 @@ libnetfilter-conntrack3 1. libnettle8 3.7.3-1build2 deb libnfnetlink0 1.0.1-3build3 deb libnftnl11 1.2.1-1build1 deb -libnghttp2-14 1.43.0-1ubuntu0.1 deb -libnpmaccess 8.0.2 npm -libnpmdiff 6.0.7 npm -libnpmexec 7.0.8 npm -libnpmfund 5.0.5 npm -libnpmhook 10.0.1 npm -libnpmorg 6.0.2 npm -libnpmpack 6.0.7 npm -libnpmpublish 9.0.4 npm -libnpmsearch 7.0.1 npm -libnpmteam 6.0.1 npm -libnpmversion 5.0.2 npm +libnghttp2-14 1.43.0-1ubuntu0.2 deb +libnpmaccess 8.0.5 npm +libnpmdiff 6.1.1 npm +libnpmexec 8.1.0 npm +libnpmfund 5.0.9 npm +libnpmhook 10.0.4 npm +libnpmorg 6.0.5 npm +libnpmpack 7.0.1 npm +libnpmpublish 9.0.7 npm +libnpmsearch 7.0.4 npm +libnpmteam 6.0.4 npm +libnpmversion 6.0.1 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb libnvidia-container-tools 1.15.0-1 deb @@ -704,7 +693,7 @@ libselinux1 3. libsemanage-common 3.3-1build2 deb libsemanage2 3.3-1build2 deb libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3.3 deb +libsmartcols1 2.37.2-4ubuntu3.4 deb libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.3 deb @@ -717,19 +706,19 @@ libtirpc-common 1. libtirpc3 1.3.2-2ubuntu0.1 deb libudev1 249.11-0ubuntu3.12 deb libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3.3 deb +libuuid1 2.37.2-4ubuntu3.4 deb libxtables12 1.8.7-1ubuntu5.2 deb libxxhash0 0.8.1-1 deb libzstd1 1.4.8+dfsg-3build1 deb -locales 2.35-0ubuntu3.6 deb +locales 2.35-0ubuntu3.8 deb lodash 4.17.21 npm login 1:4.8.1-2ubuntu2.2 deb logsave 1.46.5-2ubuntu1.1 deb -lru-cache 10.2.0 npm +lru-cache 10.2.2 npm lru-cache 6.0.0 npm lsb-base 11.1.0ubuntu4 deb lsof 4.93.2+dfsg-1.1build2 deb -make-fetch-happen 13.0.0 npm +make-fetch-happen 13.0.1 npm mawk 1.3.4.20200120-3 deb media-typer 0.3.0 npm media-types 7.0.0 deb @@ -738,7 +727,7 @@ methods 1. mime 1.6.0 npm mime-db 1.52.0 npm mime-types 2.1.35 npm -minimatch 9.0.3 npm +minimatch 9.0.4 npm minipass 3.3.6 npm (+5 duplicates) minipass 5.0.0 npm minipass 7.0.4 npm @@ -751,62 +740,63 @@ minipass-sized 1. minizlib 2.1.2 npm mkdirp 1.0.4 npm mkdirp-classic 0.5.3 npm -mount 2.37.2-4ubuntu3.3 deb +mount 2.37.2-4ubuntu3.4 deb ms 2.0.0 npm (+3 duplicates) ms 2.1.2 npm (+1 duplicate) ms 2.1.3 npm (+1 duplicate) mute-stream 1.0.0 npm -nan 2.19.0 npm +nan 2.20.0 npm ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb negotiator 0.6.3 npm (+1 duplicate) netbase 6.3 deb netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb -node-gyp 10.0.1 npm +node-gyp 10.1.0 npm node-pty 0.10.1 npm -nodejs 18.20.2-1nodesource1 deb +nodejs 18.20.3-1nodesource1 deb nopt 7.2.0 npm normalize-package-data 6.0.0 npm -npm 10.5.0 npm +npm 10.7.0 npm npm-audit-report 5.0.0 npm npm-bundled 3.0.0 npm npm-install-checks 6.3.0 npm npm-normalize-package-bin 3.0.1 npm -npm-package-arg 11.0.1 npm +npm-package-arg 11.0.2 npm npm-packlist 8.0.2 npm npm-pick-manifest 9.0.0 npm -npm-profile 9.0.0 npm -npm-registry-fetch 16.1.0 npm +npm-profile 9.0.2 npm +npm-registry-fetch 17.0.0 npm npm-user-validate 2.0.0 npm -npmlog 7.0.1 npm nvidia-container-toolkit 1.15.0-1 deb nvidia-container-toolkit-base 1.15.0-1 deb nvidia-docker2 2.14.0-1 deb object-assign 4.1.1 npm -object-inspect 1.13.1 npm +object-inspect 1.13.2 npm on-finished 2.4.1 npm once 1.4.0 npm openssl 3.0.2-0ubuntu1.15 deb p-map 4.0.0 npm -pacote 17.0.6 npm +pacote 18.0.3 npm parse-conflict-json 3.0.1 npm parseurl 1.3.3 npm passwd 1:4.8.1-2ubuntu2.2 deb path-key 3.1.1 npm -path-scurry 1.10.1 npm +path-scurry 1.10.2 npm path-to-regexp 0.1.7 npm perl-base 5.34.0-3ubuntu1.3 deb pigz 2.6-1 deb pinentry-curses 1.1.1-1build2 deb -postcss-selector-parser 6.0.15 npm +postcss-selector-parser 6.0.16 npm proc-log 3.0.0 npm +proc-log 4.2.0 npm procps 2:3.3.17-6ubuntu2.1 deb +proggy 2.0.0 npm promise-all-reject-late 1.0.1 npm promise-call-limit 3.0.1 npm promise-inflight 1.0.1 npm promise-retry 2.0.1 npm -promzard 1.0.0 npm +promzard 1.0.1 npm proxy-addr 2.0.7 npm publicsuffix 20211207.1025-1 deb pump 3.0.0 npm @@ -818,9 +808,8 @@ qrcode-terminal 0. qs 6.11.0 npm range-parser 1.2.1 npm raw-body 2.5.2 npm -read 2.1.0 npm +read 3.0.1 npm read-cmd-shim 4.0.0 npm -read-package-json 7.0.0 npm read-package-json-fast 3.0.2 npm readable-stream 3.6.2 npm readline-common 8.1.2-1 deb @@ -833,7 +822,6 @@ semver 7. send 0.18.0 npm sensible-utils 0.0.17 deb serve-static 1.15.0 npm -set-blocking 2.0.0 npm set-function-length 1.2.2 npm setprototypeof 1.2.0 npm shebang-command 2.0.0 npm @@ -844,16 +832,17 @@ sigs.k8s.io/structured-merge-diff/v4 v4 sigs.k8s.io/structured-merge-diff/v4 v4.2.1 go-module sigs.k8s.io/yaml v1.2.0 go-module (+1 duplicate) sigs.k8s.io/yaml v1.3.0 go-module (+3 duplicates) -sigstore 2.2.2 npm +sigstore 2.3.0 npm smart-buffer 4.2.0 npm socket.io 4.7.5 npm -socket.io-adapter 2.5.4 npm +socket.io-adapter 2.5.5 npm socket.io-parser 4.2.4 npm -socks 2.8.0 npm -socks-proxy-agent 8.0.2 npm +socks 2.8.3 npm +socks-proxy-agent 8.0.3 npm spdx-correct 3.2.0 npm spdx-exceptions 2.5.0 npm -spdx-expression-parse 3.0.1 npm +spdx-expression-parse 3.0.1 npm (+1 duplicate) +spdx-expression-parse 4.0.0 npm spdx-license-ids 3.0.17 npm split-ca 1.0.1 npm sprintf-js 1.1.3 npm @@ -862,7 +851,7 @@ ssri 10 statuses 2.0.1 npm stdlib go1.17.9 go-module stdlib go1.18.1 go-module (+1 duplicate) -stdlib go1.21.9 go-module (+8 duplicates) +stdlib go1.21.11 go-module (+8 duplicates) stdlib go1.22.1 go-module (+2 duplicates) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) @@ -871,14 +860,13 @@ strip-ansi 6. strip-ansi 7.1.0 npm (+1 duplicate) sudo 1.9.9-1ubuntu2.4 deb supports-color 9.4.0 npm -systeminformation 5.22.7 npm +systeminformation 5.22.11 npm sysvinit-utils 3.01-1ubuntu1 deb -tags.cncf.io/container-device-interface v0.6.2 go-module tags.cncf.io/container-device-interface v0.7.1 go-module (+2 duplicates) -tags.cncf.io/container-device-interface/specs-go v0.6.0 go-module -tags.cncf.io/container-device-interface/specs-go v0.7.0 go-module (+2 duplicates) +tags.cncf.io/container-device-interface v0.7.2 go-module +tags.cncf.io/container-device-interface/specs-go v0.7.0 go-module (+3 duplicates) tar 1.34+dfsg-1ubuntu0.1.22.04.2 deb -tar 6.2.0 npm +tar 6.2.1 npm tar-fs 2.0.1 npm tar-stream 2.2.0 npm text-table 0.2.0 npm @@ -897,21 +885,19 @@ unique-slug 4. unpipe 1.0.0 npm usrmerge 25ubuntu2 deb util-deprecate 1.0.2 npm (+1 duplicate) -util-linux 2.37.2-4ubuntu3.3 deb +util-linux 2.37.2-4ubuntu3.4 deb utils-merge 1.0.1 npm validate-npm-package-license 3.0.4 npm validate-npm-package-name 5.0.0 npm vary 1.1.2 npm walk-up-path 3.0.1 npm -wcwidth 1.0.1 npm which 2.0.2 npm which 4.0.0 npm -wide-align 1.1.5 npm wrap-ansi 7.0.0 npm wrap-ansi 8.1.0 npm wrappy 1.0.2 npm write-file-atomic 5.0.1 npm -ws 8.11.0 npm +ws 8.17.1 npm xfsprogs 5.13.0-1ubuntu2 deb yallist 4.0.0 npm zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From e615ac72b9c857f3927afa908c0dccca77401e1f Mon Sep 17 00:00:00 2001 From: thelamer <ryankuba@gmail.com> Date: Mon, 24 Jun 2024 13:19:29 -0400 Subject: [PATCH 223/337] fix dev, DB is out of sync now but will catch next build --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- readme-vars.yml | 112 +++------------------------------------------ 3 files changed, 9 insertions(+), 107 deletions(-) diff --git a/Dockerfile b/Dockerfile index cd54261..b7355a2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -91,7 +91,7 @@ RUN \ ALVERSION=$(cat /kasm_release/conf/database/seed_data/default_properties.yaml |awk '/alembic_version/ {print $2}') && \ curl -o \ /tmp/images.tar.gz -L \ - "https://kasm-ci.s3.amazonaws.com/1.15.0-images-combined.tar.gz" && \ + "https://kasm-ci.s3.amazonaws.com/1.16.0-images-combined.tar.gz" && \ tar xf \ /tmp/images.tar.gz -C \ / && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 156505d..acf4a4d 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -91,7 +91,7 @@ RUN \ ALVERSION=$(cat /kasm_release/conf/database/seed_data/default_properties.yaml |awk '/alembic_version/ {print $2}') && \ curl -o \ /tmp/images.tar.gz -L \ - "https://kasm-ci.s3.amazonaws.com/1.15.0-images-combined.tar.gz" && \ + "https://kasm-ci.s3.amazonaws.com/1.16.0-images-combined.tar.gz" && \ tar xf \ /tmp/images.tar.gz -C \ / && \ diff --git a/readme-vars.yml b/readme-vars.yml index 2e179c8..1b5597b 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -1,106 +1,8 @@ +--- + # project information -project_name: kasm -project_url: "https://www.kasmweb.com/?utm_campaign=LinuxServer&utm_source=listing" -project_logo: "https://kasm-ci.s3.amazonaws.com/kasm_wide.png" -project_blurb: | - [{{ project_name|capitalize }}]({{ project_url }}) Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services. Kasm uses devops-enabled Containerized Desktop Infrastructure (CDI) to create on-demand, disposable, docker containers that are accessible via web browser. Example use-cases include Remote Browser Isolation (RBI), Data Loss Prevention (DLP), Desktop as a Service (DaaS), Secure Remote Access Services (RAS), and Open Source Intelligence (OSINT) collections. - - The rendering of the graphical-based containers is powered by the open-source project [KasmVNC](https://www.kasmweb.com/kasmvnc.html?utm_campaign=LinuxServer&utm_source=kasmvnc). - -project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}" - -project_blurb_optional_extras_enabled: false -project_blurb_optional_extras: [] - -# supported architectures -available_architectures: - - { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"} - - { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"} - -# development version -development_versions: true -development_versions_items: - - { tag: "latest", desc: "Stable Kasm releases" } - - { tag: "develop", desc: "Tip of develop" } - -# container parameters -common_param_env_vars_enabled: false -param_container_name: "{{ project_name }}" - -param_usage_include_net: false - -param_usage_include_env: true -param_env_vars: - - { env_var: "KASM_PORT", env_value: "443", desc: "Specify the port you bind to the outside for Kasm Workspaces." } - - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." } - - -param_usage_include_vols: true -param_volumes: - - { vol_path: "/opt", vol_host_path: "/path/to/data", desc: "Docker and installation storage." } - -param_device_map: false -param_devices: [] - -param_usage_include_ports: true -param_ports: - - { external_port: "3000", internal_port: "3000", port_desc: "Kasm Installation wizard. (https)" } - - { external_port: "443", internal_port: "443", port_desc: "Kasm Workspaces interface. (https)" } - -# optional container parameters -opt_param_usage_include_env: true -opt_param_env_vars: - - { env_var: "DOCKER_HUB_USERNAME", env_value: "USER", desc: "Optionally specify a DockerHub Username to pull private images." } - - { env_var: "DOCKER_HUB_PASSWORD", env_value: "PASS", desc: "Optionally specify a DockerHub password to pull private images." } - -opt_param_usage_include_vols: true -opt_param_volumes: - - { vol_path: "/profiles", vol_host_path: "/path/to/profiles", desc: "Optionally specify a path for persistent profile storage." } - - { vol_path: "/dev/input", vol_host_path: "/dev/input", desc: "Optional for gamepad support." } - - { vol_path: "/run/udev/data", vol_host_path: "/run/udev/data", desc: "Optional for gamepad support." } - -opt_param_usage_include_ports: false -opt_param_ports: [] - -opt_param_device_map: false -opt_param_devices: [] - -cap_add_param: false -cap_add_param_vars: [] - -opt_cap_add_param: false -opt_cap_add_param_vars: [] -optional_block_1: false -optional_block_1_items: "" - -privileged: true - -# application setup block -app_setup_block_enabled: true -app_setup_block: | - This container uses [Docker in Docker](https://www.docker.com/blog/docker-can-now-run-within-docker/) and requires being run in `privileged` mode. This container also requires an initial setup that runs on port 3000. - - Access the installation wizard at https://`your ip`:3000 and follow the instructions there. Once setup is complete access https://`your ip`:443 and login with the credentials you entered during setup. The default users are: - - * admin@kasm.local - * user@kasm.local - - Currently Synology systems are not supported due to them blocking CPU scheduling in their Kernel. - - ### GPU Support - - During installation an option will be presented to force all Workspace containers to mount in and use a specific GPU. If using an NVIDIA GPU you will need to pass `-e NVIDIA_VISIBLE_DEVICES=all` or `--gpus all` and have the [NVIDIA Container Runtime](https://github.com/NVIDIA/nvidia-container-runtime) installed on the host. Also if using NVIDIA, Kasm Workspaces has [native NVIDIA support](https://www.kasmweb.com/docs/latest/how_to/gpu.html) so you can optionally opt to simply use that instead of he manual override during installation. - - ### Gamepad support - - In order to properly create virtual Gamepads you will need to mount from your host `/dev/input` and `/run/udev/data`. Please see [HERE](https://www.kasmweb.com/docs/develop/guide/gamepad_passthrough.html) for instructions on enabling gamepad support. - - ### Persistant profiles - - In order to use persistant profiles in Workspaces you will need to mount in a folder to use from your host to `/profiles`. From there when configuring a workspace you can set the `Persistant Profile Path` to IE `/profiles/ubuntu-focal/{username}/`, more infomation can be found [HERE](https://www.kasmweb.com/docs/latest/how_to/persistent_profiles.html). - -# changelog -changelogs: - - { date: "05.11.22:", desc: "Rebase to Jammy, add support for GPUs, add support for Gamepads." } - - { date: "23.09.22:", desc: "Migrate to s6v3." } - - { date: "02.07.22:", desc: "Initial Release." } +project_name: webtop +full_custom_readme: | + {% raw -%} + Up to date documentation is available [here](https://github.com/linuxserver/docker-kasm/blob/master/README.md). + {%- endraw %} From 82dcd24d8d1f50a8d99fc32225fe2b5cda2b176c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 24 Jun 2024 17:22:04 +0000 Subject: [PATCH 224/337] Bot Updating Templated Files --- Jenkinsfile | 64 +++++++++++++---------------------------------------- 1 file changed, 15 insertions(+), 49 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 988a907..52773fd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -369,40 +369,6 @@ pipeline { else echo "Docs update not needed, skipping" fi - mkdir -p ${TEMPDIR}/unraid - git clone https://github.com/linuxserver/docker-templates.git ${TEMPDIR}/unraid/docker-templates - git clone https://github.com/linuxserver/templates.git ${TEMPDIR}/unraid/templates - if [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-logo.png ]]; then - sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-logo.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml - elif [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-icon.png ]]; then - sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-icon.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml - fi - if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml) || ("$(md5sum ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml | awk '{ print $1 }')") ]]; then - echo "Updating Unraid template" - cd ${TEMPDIR}/unraid/templates/ - GH_TEMPLATES_DEFAULT_BRANCH=$(git remote show origin | grep "HEAD branch:" | sed 's|.*HEAD branch: ||') - if grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list && [[ -f ${TEMPDIR}/unraid/templates/unraid/deprecated/${CONTAINER_NAME}.xml ]]; then - echo "Image is on the ignore list, and already in the deprecation folder." - elif grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list; then - echo "Image is on the ignore list, marking Unraid template as deprecated" - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ - git add -u unraid/${CONTAINER_NAME}.xml - git mv unraid/${CONTAINER_NAME}.xml unraid/deprecated/${CONTAINER_NAME}.xml || : - git commit -m 'Bot Moving Deprecated Unraid Template' || : - else - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ - git add unraid/${CONTAINER_NAME}.xml - git commit -m 'Bot Updating Unraid Template' - fi - git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH} --rebase - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH} || \ - (MAXWAIT="10" && echo "Push to unraid templates failed, trying again in ${MAXWAIT} seconds" && \ - sleep $((RANDOM % MAXWAIT)) && \ - git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH} --rebase && \ - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH}) - else - echo "No updates to Unraid template needed, skipping" - fi if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]]; then if [[ $(cat ${TEMPDIR}/docker-${CONTAINER_NAME}/README.md | wc -m) -gt 25000 ]]; then echo "Readme is longer than 25,000 characters. Syncing the lite version to Docker Hub" @@ -514,16 +480,16 @@ pipeline { sh "docker buildx build \ --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ --label \"org.opencontainers.image.authors=linuxserver.io\" \ - --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-kasm/packages\" \ - --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-kasm\" \ - --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-kasm\" \ + --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-webtop/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-webtop\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-webtop\" \ --label \"org.opencontainers.image.version=${EXT_RELEASE_CLEAN}-ls${LS_TAG_NUMBER}\" \ --label \"org.opencontainers.image.revision=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.vendor=linuxserver.io\" \ --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ - --label \"org.opencontainers.image.title=Kasm\" \ - --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/?utm_campaign=LinuxServer&utm_source=listing) Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services. Kasm uses devops-enabled Containerized Desktop Infrastructure (CDI) to create on-demand, disposable, docker containers that are accessible via web browser. Example use-cases include Remote Browser Isolation (RBI), Data Loss Prevention (DLP), Desktop as a Service (DaaS), Secure Remote Access Services (RAS), and Open Source Intelligence (OSINT) collections. The rendering of the graphical-based containers is powered by the open-source project [KasmVNC](https://www.kasmweb.com/kasmvnc.html?utm_campaign=LinuxServer&utm_source=kasmvnc). \" \ + --label \"org.opencontainers.image.title=Webtop\" \ + --label \"org.opencontainers.image.description=webtop image by linuxserver.io\" \ --no-cache --pull -t ${IMAGE}:${META_TAG} --platform=linux/amd64 \ --provenance=false --sbom=false \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." @@ -546,16 +512,16 @@ pipeline { sh "docker buildx build \ --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ --label \"org.opencontainers.image.authors=linuxserver.io\" \ - --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-kasm/packages\" \ - --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-kasm\" \ - --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-kasm\" \ + --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-webtop/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-webtop\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-webtop\" \ --label \"org.opencontainers.image.version=${EXT_RELEASE_CLEAN}-ls${LS_TAG_NUMBER}\" \ --label \"org.opencontainers.image.revision=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.vendor=linuxserver.io\" \ --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ - --label \"org.opencontainers.image.title=Kasm\" \ - --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/?utm_campaign=LinuxServer&utm_source=listing) Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services. Kasm uses devops-enabled Containerized Desktop Infrastructure (CDI) to create on-demand, disposable, docker containers that are accessible via web browser. Example use-cases include Remote Browser Isolation (RBI), Data Loss Prevention (DLP), Desktop as a Service (DaaS), Secure Remote Access Services (RAS), and Open Source Intelligence (OSINT) collections. The rendering of the graphical-based containers is powered by the open-source project [KasmVNC](https://www.kasmweb.com/kasmvnc.html?utm_campaign=LinuxServer&utm_source=kasmvnc). \" \ + --label \"org.opencontainers.image.title=Webtop\" \ + --label \"org.opencontainers.image.description=webtop image by linuxserver.io\" \ --no-cache --pull -t ${IMAGE}:amd64-${META_TAG} --platform=linux/amd64 \ --provenance=false --sbom=false \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." @@ -575,16 +541,16 @@ pipeline { sh "docker buildx build \ --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ --label \"org.opencontainers.image.authors=linuxserver.io\" \ - --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-kasm/packages\" \ - --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-kasm\" \ - --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-kasm\" \ + --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-webtop/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-webtop\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-webtop\" \ --label \"org.opencontainers.image.version=${EXT_RELEASE_CLEAN}-ls${LS_TAG_NUMBER}\" \ --label \"org.opencontainers.image.revision=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.vendor=linuxserver.io\" \ --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ - --label \"org.opencontainers.image.title=Kasm\" \ - --label \"org.opencontainers.image.description=[Kasm](https://www.kasmweb.com/?utm_campaign=LinuxServer&utm_source=listing) Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services. Kasm uses devops-enabled Containerized Desktop Infrastructure (CDI) to create on-demand, disposable, docker containers that are accessible via web browser. Example use-cases include Remote Browser Isolation (RBI), Data Loss Prevention (DLP), Desktop as a Service (DaaS), Secure Remote Access Services (RAS), and Open Source Intelligence (OSINT) collections. The rendering of the graphical-based containers is powered by the open-source project [KasmVNC](https://www.kasmweb.com/kasmvnc.html?utm_campaign=LinuxServer&utm_source=kasmvnc). \" \ + --label \"org.opencontainers.image.title=Webtop\" \ + --label \"org.opencontainers.image.description=webtop image by linuxserver.io\" \ --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} --platform=linux/arm64 \ --provenance=false --sbom=false \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." From 3ebfac466509b62d1afa8793d2f194f7dd54708c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 24 Jun 2024 17:24:53 +0000 Subject: [PATCH 225/337] Bot Updating Templated Files --- .github/CONTRIBUTING.md | 14 +- .github/ISSUE_TEMPLATE/config.yml | 2 +- .github/ISSUE_TEMPLATE/issue.bug.yml | 12 +- .github/PULL_REQUEST_TEMPLATE.md | 2 +- .github/workflows/call_issues_cron.yml | 2 +- .github/workflows/external_trigger.yml | 26 +- .../workflows/external_trigger_scheduler.yml | 8 +- .github/workflows/greetings.yml | 2 +- .github/workflows/package_trigger.yml | 14 +- .../workflows/package_trigger_scheduler.yml | 10 +- README.md | 308 +----------------- 11 files changed, 44 insertions(+), 356 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index ee97ac4..d84beaa 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -1,4 +1,4 @@ -# Contributing to kasm +# Contributing to webtop ## Gotchas @@ -24,10 +24,10 @@ ## Readme If you would like to change our readme, please __**do not**__ directly edit the readme, as it is auto-generated on each commit. -Instead edit the [readme-vars.yml](https://github.com/linuxserver/docker-kasm/edit/develop/readme-vars.yml). +Instead edit the [readme-vars.yml](https://github.com/linuxserver/docker-webtop/edit/develop/readme-vars.yml). These variables are used in a template for our [Jenkins Builder](https://github.com/linuxserver/docker-jenkins-builder) as part of an ansible play. -Most of these variables are also carried over to [docs.linuxserver.io](https://docs.linuxserver.io/images/docker-kasm) +Most of these variables are also carried over to [docs.linuxserver.io](https://docs.linuxserver.io) ### Fixing typos or clarify the text in the readme @@ -97,12 +97,12 @@ If you are proposing additional packages to be added, ensure that you added the ### Testing your changes ```bash -git clone https://github.com/linuxserver/docker-kasm.git -cd docker-kasm +git clone https://github.com/linuxserver/docker-webtop.git +cd docker-webtop docker build \ --no-cache \ --pull \ - -t linuxserver/kasm:latest . + -t linuxserver/webtop:latest . ``` The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` @@ -115,7 +115,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Update the changelog -If you are modifying the Dockerfiles or any of the startup scripts in [root](https://github.com/linuxserver/docker-kasm/tree/develop/root), add an entry to the changelog +If you are modifying the Dockerfiles or any of the startup scripts in [root](https://github.com/linuxserver/docker-webtop/tree/develop/root), add an entry to the changelog ```yml changelogs: diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 91ee0c0..5e4d025 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -9,5 +9,5 @@ contact_links: about: Post on our community forum. - name: Documentation - url: https://docs.linuxserver.io/images/docker-kasm + url: https://docs.linuxserver.io about: Documentation - information about all of our containers. diff --git a/.github/ISSUE_TEMPLATE/issue.bug.yml b/.github/ISSUE_TEMPLATE/issue.bug.yml index 48781be..3e63d77 100755 --- a/.github/ISSUE_TEMPLATE/issue.bug.yml +++ b/.github/ISSUE_TEMPLATE/issue.bug.yml @@ -47,14 +47,6 @@ body: render: markdown validations: required: false - - type: dropdown - attributes: - label: CPU architecture - options: - - x86-64 - - arm64 - validations: - required: true - type: textarea attributes: label: Docker creation @@ -67,10 +59,10 @@ body: - type: textarea attributes: description: | - Provide a full docker log, output of "docker logs kasm" + Provide a full docker log, output of "docker logs webtop" label: Container logs placeholder: | - Output of `docker logs kasm` + Output of `docker logs webtop` render: bash validations: required: true diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index ce77557..9cf8ac5 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -21,7 +21,7 @@ ------------------------------ - - [ ] I have read the [contributing](https://github.com/linuxserver/docker-kasm/blob/develop/.github/CONTRIBUTING.md) guideline and understand that I have made the correct modifications + - [ ] I have read the [contributing](https://github.com/linuxserver/docker-webtop/blob/develop/.github/CONTRIBUTING.md) guideline and understand that I have made the correct modifications ------------------------------ diff --git a/.github/workflows/call_issues_cron.yml b/.github/workflows/call_issues_cron.yml index cddb87b..bd31610 100755 --- a/.github/workflows/call_issues_cron.yml +++ b/.github/workflows/call_issues_cron.yml @@ -1,7 +1,7 @@ name: Mark stale issues and pull requests on: schedule: - - cron: '16 9 * * *' + - cron: '36 11 * * *' workflow_dispatch: jobs: diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 810e939..fbe495d 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -12,19 +12,19 @@ jobs: - name: External Trigger if: github.ref == 'refs/heads/develop' run: | - if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP }}" ]; then - echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP is set; skipping trigger. ****" - echo "Github secret \`PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY + if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_WEBTOP_DEVELOP }}" ]; then + echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_WEBTOP_DEVELOP is set; skipping trigger. ****" + echo "Github secret \`PAUSE_EXTERNAL_TRIGGER_WEBTOP_DEVELOP\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi - echo "**** External trigger running off of develop branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP\". ****" - echo "External trigger running off of develop branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP\`" >> $GITHUB_STEP_SUMMARY + echo "**** External trigger running off of develop branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_WEBTOP_DEVELOP\". ****" + echo "External trigger running off of develop branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_WEBTOP_DEVELOP\`" >> $GITHUB_STEP_SUMMARY echo "**** Retrieving external version ****" EXT_RELEASE=$(curl -sX GET https://kasm-ci.s3.amazonaws.com/dev-version.txt) if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then echo "**** Can't retrieve external version, exiting ****" - FAILURE_REASON="Can't retrieve external version for kasm branch develop" - GHA_TRIGGER_URL="https://github.com/linuxserver/docker-kasm/actions/runs/${{ github.run_id }}" + FAILURE_REASON="Can't retrieve external version for webtop branch develop" + GHA_TRIGGER_URL="https://github.com/linuxserver/docker-webtop/actions/runs/${{ github.run_id }}" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680, "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n**Trigger URL:** '"${GHA_TRIGGER_URL}"' \n"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} @@ -34,10 +34,10 @@ jobs: echo "**** External version: ${EXT_RELEASE} ****" echo "External version: ${EXT_RELEASE}" >> $GITHUB_STEP_SUMMARY echo "**** Retrieving last pushed version ****" - image="linuxserver/kasm" + image="linuxserver/webtop" tag="develop" token=$(curl -sX GET \ - "https://ghcr.io/token?scope=repository%3Alinuxserver%2Fkasm%3Apull" \ + "https://ghcr.io/token?scope=repository%3Alinuxserver%2Fwebtop%3Apull" \ | jq -r '.token') multidigest=$(curl -s \ --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ @@ -61,7 +61,7 @@ jobs: IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}') if [ -z "${IMAGE_VERSION}" ]; then echo "**** Can't retrieve last pushed version, exiting ****" - FAILURE_REASON="Can't retrieve last pushed version for kasm tag develop" + FAILURE_REASON="Can't retrieve last pushed version for webtop tag develop" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680, "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} @@ -73,7 +73,7 @@ jobs: echo "**** Version ${EXT_RELEASE} already pushed, exiting ****" echo "Version ${EXT_RELEASE} already pushed, exiting" >> $GITHUB_STEP_SUMMARY exit 0 - elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/lastBuild/api/json | jq -r '.building') == "true" ]; then + elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-webtop/job/develop/lastBuild/api/json | jq -r '.building') == "true" ]; then echo "**** New version ${EXT_RELEASE} found; but there already seems to be an active build on Jenkins; exiting ****" echo "New version ${EXT_RELEASE} found; but there already seems to be an active build on Jenkins; exiting" >> $GITHUB_STEP_SUMMARY exit 0 @@ -81,7 +81,7 @@ jobs: echo "**** New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build ****" echo "New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build" >> $GITHUB_STEP_SUMMARY response=$(curl -iX POST \ - https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/buildWithParameters?PACKAGE_CHECK=false \ + https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-webtop/job/develop/buildWithParameters?PACKAGE_CHECK=false \ --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") echo "**** Jenkins job queue url: ${response%$'\r'} ****" echo "**** Sleeping 10 seconds until job starts ****" @@ -97,7 +97,7 @@ jobs: --data-urlencode "description=GHA external trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ --data-urlencode "Submit=Submit" echo "**** Notifying Discord ****" - TRIGGER_REASON="A version change was detected for kasm tag develop. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE}" + TRIGGER_REASON="A version change was detected for webtop tag develop. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE}" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, "description": "**Build Triggered** \n**Reason:** '"${TRIGGER_REASON}"' \n**Build URL:** '"${buildurl}display/redirect"' \n"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml index d78cb5e..cd9c6aa 100644 --- a/.github/workflows/external_trigger_scheduler.yml +++ b/.github/workflows/external_trigger_scheduler.yml @@ -2,7 +2,7 @@ name: External Trigger Scheduler on: schedule: - - cron: '33 * * * *' + - cron: '27 * * * *' workflow_dispatch: jobs: @@ -21,19 +21,19 @@ jobs: do br=$(echo "$br" | sed 's|origin/||g') echo "**** Evaluating branch ${br} ****" - ls_jenkins_vars=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/jenkins-vars.yml) + ls_jenkins_vars=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-webtop/${br}/jenkins-vars.yml) ls_branch=$(echo "${ls_jenkins_vars}" | yq -r '.ls_branch') ls_trigger=$(echo "${ls_jenkins_vars}" | yq -r '.external_type') if [[ "${br}" == "${ls_branch}" ]] && [[ "${ls_trigger}" != "os" ]]; then echo "**** Branch ${br} appears to be live and trigger is not os; checking workflow. ****" - if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/.github/workflows/external_trigger.yml > /dev/null 2>&1; then + if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-webtop/${br}/.github/workflows/external_trigger.yml > /dev/null 2>&1; then echo "**** Workflow exists. Triggering external trigger workflow for branch ${br} ****." echo "Triggering external trigger workflow for branch ${br}" >> $GITHUB_STEP_SUMMARY curl -iX POST \ -H "Authorization: token ${{ secrets.CR_PAT }}" \ -H "Accept: application/vnd.github.v3+json" \ -d "{\"ref\":\"refs/heads/${br}\"}" \ - https://api.github.com/repos/linuxserver/docker-kasm/actions/workflows/external_trigger.yml/dispatches + https://api.github.com/repos/linuxserver/docker-webtop/actions/workflows/external_trigger.yml/dispatches else echo "**** Workflow doesn't exist; skipping trigger. ****" echo "Skipping branch ${br} due to no external trigger workflow present." >> $GITHUB_STEP_SUMMARY diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 81ea2a9..f1c1257 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -9,5 +9,5 @@ jobs: - uses: actions/first-interaction@v1 with: issue-message: 'Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.' - pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-kasm/blob/develop/.github/PULL_REQUEST_TEMPLATE.md)!' + pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-webtop/blob/develop/.github/PULL_REQUEST_TEMPLATE.md)!' repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/package_trigger.yml b/.github/workflows/package_trigger.yml index 7b8f325..0a4bd05 100644 --- a/.github/workflows/package_trigger.yml +++ b/.github/workflows/package_trigger.yml @@ -12,20 +12,20 @@ jobs: - name: Package Trigger if: github.ref == 'refs/heads/develop' run: | - if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP }}" ]; then - echo "**** Github secret PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP is set; skipping trigger. ****" - echo "Github secret \`PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY + if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_WEBTOP_DEVELOP }}" ]; then + echo "**** Github secret PAUSE_PACKAGE_TRIGGER_WEBTOP_DEVELOP is set; skipping trigger. ****" + echo "Github secret \`PAUSE_PACKAGE_TRIGGER_WEBTOP_DEVELOP\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi - if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/lastBuild/api/json | jq -r '.building') == "true" ]; then + if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-webtop/job/develop/lastBuild/api/json | jq -r '.building') == "true" ]; then echo "**** There already seems to be an active build on Jenkins; skipping package trigger ****" echo "There already seems to be an active build on Jenkins; skipping package trigger" >> $GITHUB_STEP_SUMMARY exit 0 fi - echo "**** Package trigger running off of develop branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP\". ****" - echo "Package trigger running off of develop branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP\`" >> $GITHUB_STEP_SUMMARY + echo "**** Package trigger running off of develop branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_WEBTOP_DEVELOP\". ****" + echo "Package trigger running off of develop branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_WEBTOP_DEVELOP\`" >> $GITHUB_STEP_SUMMARY response=$(curl -iX POST \ - https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/buildWithParameters?PACKAGE_CHECK=true \ + https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-webtop/job/develop/buildWithParameters?PACKAGE_CHECK=true \ --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") echo "**** Jenkins job queue url: ${response%$'\r'} ****" echo "**** Sleeping 10 seconds until job starts ****" diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index 3b2278a..652b8f5 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -2,7 +2,7 @@ name: Package Trigger Scheduler on: schedule: - - cron: '31 21 * * 2' + - cron: '19 3 * * 2' workflow_dispatch: jobs: @@ -21,10 +21,10 @@ jobs: do br=$(echo "$br" | sed 's|origin/||g') echo "**** Evaluating branch ${br} ****" - ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/jenkins-vars.yml | yq -r '.ls_branch') + ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-webtop/${br}/jenkins-vars.yml | yq -r '.ls_branch') if [ "${br}" == "${ls_branch}" ]; then echo "**** Branch ${br} appears to be live; checking workflow. ****" - if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/.github/workflows/package_trigger.yml > /dev/null 2>&1; then + if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-webtop/${br}/.github/workflows/package_trigger.yml > /dev/null 2>&1; then echo "**** Workflow exists. Triggering package trigger workflow for branch ${br}. ****" echo "Triggering package trigger workflow for branch ${br}" >> $GITHUB_STEP_SUMMARY triggered_branches="${triggered_branches}${br} " @@ -32,7 +32,7 @@ jobs: -H "Authorization: token ${{ secrets.CR_PAT }}" \ -H "Accept: application/vnd.github.v3+json" \ -d "{\"ref\":\"refs/heads/${br}\"}" \ - https://api.github.com/repos/linuxserver/docker-kasm/actions/workflows/package_trigger.yml/dispatches + https://api.github.com/repos/linuxserver/docker-webtop/actions/workflows/package_trigger.yml/dispatches sleep 30 else echo "**** Workflow doesn't exist; skipping trigger. ****" @@ -46,5 +46,5 @@ jobs: echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****" echo "**** Notifying Discord ****" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, - "description": "**Package Check Build(s) Triggered for kasm** \n**Branch(es):** '"${triggered_branches}"' \n**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-kasm/activity/"' \n"}], + "description": "**Package Check Build(s) Triggered for webtop** \n**Branch(es):** '"${triggered_branches}"' \n**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-webtop/activity/"' \n"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} diff --git a/README.md b/README.md index 019c3b1..e5ceb75 100644 --- a/README.md +++ b/README.md @@ -1,307 +1,3 @@ <!-- DO NOT EDIT THIS FILE MANUALLY --> -<!-- Please read https://github.com/linuxserver/docker-kasm/blob/develop/.github/CONTRIBUTING.md --> -[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)](https://linuxserver.io) - -[![Blog](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Blog)](https://blog.linuxserver.io "all the things you can do with our containers including How-To guides, opinions and much more!") -[![Discord](https://img.shields.io/discord/354974912613449730.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=Discord&logo=discord)](https://discord.gg/YWrKVTn "realtime support / chat with the community and the team.") -[![Discourse](https://img.shields.io/discourse/https/discourse.linuxserver.io/topics.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=discourse)](https://discourse.linuxserver.io "post on our community forum.") -[![Fleet](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Fleet)](https://fleet.linuxserver.io "an online web interface which displays all of our maintained images.") -[![GitHub](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitHub&logo=github)](https://github.com/linuxserver "view the source for all of our repositories.") -[![Open Collective](https://img.shields.io/opencollective/all/linuxserver.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=Supporters&logo=open%20collective)](https://opencollective.com/linuxserver "please consider helping us by either donating or contributing to our budget") - -The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring: - -* regular and timely application updates -* easy user mappings (PGID, PUID) -* custom base image with s6 overlay -* weekly base OS updates with common layers across the entire LinuxServer.io ecosystem to minimise space usage, down time and bandwidth -* regular security updates - -Find us at: - -* [Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more! -* [Discord](https://discord.gg/YWrKVTn) - realtime support / chat with the community and the team. -* [Discourse](https://discourse.linuxserver.io) - post on our community forum. -* [Fleet](https://fleet.linuxserver.io) - an online web interface which displays all of our maintained images. -* [GitHub](https://github.com/linuxserver) - view the source for all of our repositories. -* [Open Collective](https://opencollective.com/linuxserver) - please consider helping us by either donating or contributing to our budget - -# [linuxserver/kasm](https://github.com/linuxserver/docker-kasm) - -[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Fkasm?color=94398d&label-color=555555&logo-color=ffffff&style=for-the-badge&package-type=docker)](https://scarf.sh) -[![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-kasm.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-kasm) -[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-kasm.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-kasm/releases) -[![GitHub Package Repository](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitHub%20Package&logo=github)](https://github.com/linuxserver/docker-kasm/packages) -[![GitLab Container Registry](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitLab%20Registry&logo=gitlab)](https://gitlab.com/linuxserver.io/docker-kasm/container_registry) -[![Quay.io](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Quay.io)](https://quay.io/repository/linuxserver.io/kasm) -[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/kasm.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/kasm) -[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/kasm.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/kasm) -[![Jenkins Build](https://img.shields.io/jenkins/build?labelColor=555555&logoColor=ffffff&style=for-the-badge&jobUrl=https%3A%2F%2Fci.linuxserver.io%2Fjob%2FDocker-Pipeline-Builders%2Fjob%2Fdocker-kasm%2Fjob%2Fdevelop%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/) -[![LSIO CI](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=CI&query=CI&url=https%3A%2F%2Fci-tests.linuxserver.io%2Flinuxserver%2Fkasm%2Flatest%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/kasm/latest/index.html) - -[Kasm](https://www.kasmweb.com/?utm_campaign=LinuxServer&utm_source=listing) Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services. Kasm uses devops-enabled Containerized Desktop Infrastructure (CDI) to create on-demand, disposable, docker containers that are accessible via web browser. Example use-cases include Remote Browser Isolation (RBI), Data Loss Prevention (DLP), Desktop as a Service (DaaS), Secure Remote Access Services (RAS), and Open Source Intelligence (OSINT) collections. - -The rendering of the graphical-based containers is powered by the open-source project [KasmVNC](https://www.kasmweb.com/kasmvnc.html?utm_campaign=LinuxServer&utm_source=kasmvnc). - -[![kasm](https://kasm-ci.s3.amazonaws.com/kasm_wide.png)](https://www.kasmweb.com/?utm_campaign=LinuxServer&utm_source=listing) - -## Supported Architectures - -We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://distribution.github.io/distribution/spec/manifest-v2-2/#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/). - -Simply pulling `lscr.io/linuxserver/kasm:develop` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. - -The architectures supported by this image are: - -| Architecture | Available | Tag | -| :----: | :----: | ---- | -| x86-64 | ✅ | amd64-\<version tag\> | -| arm64 | ✅ | arm64v8-\<version tag\> | -| armhf | ❌ | | - -## Version Tags - -This image provides various versions that are available via tags. Please read the descriptions carefully and exercise caution when using unstable or development tags. - -| Tag | Available | Description | -| :----: | :----: |--- | -| latest | ✅ | Stable Kasm releases | -| develop | ✅ | Tip of develop | - -## Application Setup - -This container uses [Docker in Docker](https://www.docker.com/blog/docker-can-now-run-within-docker/) and requires being run in `privileged` mode. This container also requires an initial setup that runs on port 3000. - -Access the installation wizard at https://`your ip`:3000 and follow the instructions there. Once setup is complete access https://`your ip`:443 and login with the credentials you entered during setup. The default users are: - -* admin@kasm.local -* user@kasm.local - -Currently Synology systems are not supported due to them blocking CPU scheduling in their Kernel. - -### GPU Support - -During installation an option will be presented to force all Workspace containers to mount in and use a specific GPU. If using an NVIDIA GPU you will need to pass `-e NVIDIA_VISIBLE_DEVICES=all` or `--gpus all` and have the [NVIDIA Container Runtime](https://github.com/NVIDIA/nvidia-container-runtime) installed on the host. Also if using NVIDIA, Kasm Workspaces has [native NVIDIA support](https://www.kasmweb.com/docs/latest/how_to/gpu.html) so you can optionally opt to simply use that instead of he manual override during installation. - -### Gamepad support - -In order to properly create virtual Gamepads you will need to mount from your host `/dev/input` and `/run/udev/data`. Please see [HERE](https://www.kasmweb.com/docs/develop/guide/gamepad_passthrough.html) for instructions on enabling gamepad support. - -### Persistant profiles - -In order to use persistant profiles in Workspaces you will need to mount in a folder to use from your host to `/profiles`. From there when configuring a workspace you can set the `Persistant Profile Path` to IE `/profiles/ubuntu-focal/{username}/`, more infomation can be found [HERE](https://www.kasmweb.com/docs/latest/how_to/persistent_profiles.html). - -### Strict reverse proxies - -This image uses a self-signed certificate by default. This naturally means the scheme is `https`. -If you are using a reverse proxy which validates certificates, you need to [disable this check for the container](https://docs.linuxserver.io/faq#strict-proxy). - -## Usage - -To help you get started creating a container from this image you can either use docker-compose or the docker cli. - -### docker-compose (recommended, [click here for more info](https://docs.linuxserver.io/general/docker-compose)) - -```yaml ---- -services: - kasm: - image: lscr.io/linuxserver/kasm:develop - container_name: kasm - privileged: true - environment: - - KASM_PORT=443 - - DOCKER_HUB_USERNAME=USER #optional - - DOCKER_HUB_PASSWORD=PASS #optional - volumes: - - /path/to/data:/opt - - /path/to/profiles:/profiles #optional - - /dev/input:/dev/input #optional - - /run/udev/data:/run/udev/data #optional - ports: - - 3000:3000 - - 443:443 - restart: unless-stopped -``` - -### docker cli ([click here for more info](https://docs.docker.com/engine/reference/commandline/cli/)) - -```bash -docker run -d \ - --name=kasm \ - --privileged \ - -e KASM_PORT=443 \ - -e DOCKER_HUB_USERNAME=USER `#optional` \ - -e DOCKER_HUB_PASSWORD=PASS `#optional` \ - -p 3000:3000 \ - -p 443:443 \ - -v /path/to/data:/opt \ - -v /path/to/profiles:/profiles `#optional` \ - -v /dev/input:/dev/input `#optional` \ - -v /run/udev/data:/run/udev/data `#optional` \ - --restart unless-stopped \ - lscr.io/linuxserver/kasm:develop -``` - -## Parameters - -Containers are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `<external>:<internal>` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container. - -| Parameter | Function | -| :----: | --- | -| `-p 3000` | Kasm Installation wizard. (https) | -| `-p 443` | Kasm Workspaces interface. (https) | -| `-e KASM_PORT=443` | Specify the port you bind to the outside for Kasm Workspaces. | -| `-e DOCKER_HUB_USERNAME=USER` | Optionally specify a DockerHub Username to pull private images. | -| `-e DOCKER_HUB_PASSWORD=PASS` | Optionally specify a DockerHub password to pull private images. | -| `-v /opt` | Docker and installation storage. | -| `-v /profiles` | Optionally specify a path for persistent profile storage. | -| `-v /dev/input` | Optional for gamepad support. | -| `-v /run/udev/data` | Optional for gamepad support. | - -## Environment variables from files (Docker secrets) - -You can set any environment variable from a file by using a special prepend `FILE__`. - -As an example: - -```bash --e FILE__MYVAR=/run/secrets/mysecretvariable -``` - -Will set the environment variable `MYVAR` based on the contents of the `/run/secrets/mysecretvariable` file. - -## Umask for running applications - -For all of our images we provide the ability to override the default umask settings for services started within the containers using the optional `-e UMASK=022` setting. -Keep in mind umask is not chmod it subtracts from permissions based on it's value it does not add. Please read up [here](https://en.wikipedia.org/wiki/Umask) before asking for support. - -## Docker Mods - -[![Docker Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=kasm&query=%24.mods%5B%27kasm%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=kasm "view available mods for this container.") [![Docker Universal Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=universal&query=%24.mods%5B%27universal%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=universal "view available universal mods.") - -We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to enable additional functionality within the containers. The list of Mods available for this image (if any) as well as universal mods that can be applied to any one of our images can be accessed via the dynamic badges above. - -## Support Info - -* Shell access whilst the container is running: - - ```bash - docker exec -it kasm /bin/bash - ``` - -* To monitor the logs of the container in realtime: - - ```bash - docker logs -f kasm - ``` - -* Container version number: - - ```bash - docker inspect -f '{{ index .Config.Labels "build_version" }}' kasm - ``` - -* Image version number: - - ```bash - docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/kasm:develop - ``` - -## Updating Info - -Most of our images are static, versioned, and require an image update and container recreation to update the app inside. With some exceptions (noted in the relevant readme.md), we do not recommend or support updating apps inside the container. Please consult the [Application Setup](#application-setup) section above to see if it is recommended for the image. - -Below are the instructions for updating containers: - -### Via Docker Compose - -* Update images: - * All images: - - ```bash - docker-compose pull - ``` - - * Single image: - - ```bash - docker-compose pull kasm - ``` - -* Update containers: - * All containers: - - ```bash - docker-compose up -d - ``` - - * Single container: - - ```bash - docker-compose up -d kasm - ``` - -* You can also remove the old dangling images: - - ```bash - docker image prune - ``` - -### Via Docker Run - -* Update the image: - - ```bash - docker pull lscr.io/linuxserver/kasm:develop - ``` - -* Stop the running container: - - ```bash - docker stop kasm - ``` - -* Delete the container: - - ```bash - docker rm kasm - ``` - -* Recreate a new container with the same docker run parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and settings will be preserved) -* You can also remove the old dangling images: - - ```bash - docker image prune - ``` - -### Image Update Notifications - Diun (Docker Image Update Notifier) - -**tip**: We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported. - -## Building locally - -If you want to make local modifications to these images for development purposes or just to customize the logic: - -```bash -git clone https://github.com/linuxserver/docker-kasm.git -cd docker-kasm -docker build \ - --no-cache \ - --pull \ - -t lscr.io/linuxserver/kasm:develop . -``` - -The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` - -```bash -docker run --rm --privileged multiarch/qemu-user-static:register --reset -``` - -Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`. - -## Versions - -* **05.11.22:** - Rebase to Jammy, add support for GPUs, add support for Gamepads. -* **23.09.22:** - Migrate to s6v3. -* **02.07.22:** - Initial Release. +<!-- Please read https://github.com/linuxserver/docker-webtop/blob/develop/.github/CONTRIBUTING.md --> +Up to date documentation is available [here](https://github.com/linuxserver/docker-kasm/blob/master/README.md). From 20d4962bd1e89cada85c9b0d31a6acb82e42d9c1 Mon Sep 17 00:00:00 2001 From: thelamer <ryankuba@gmail.com> Date: Tue, 25 Jun 2024 17:50:07 -0400 Subject: [PATCH 226/337] typo --- .github/CONTRIBUTING.md | 12 ++++---- .github/ISSUE_TEMPLATE/issue.bug.yml | 4 +-- .github/PULL_REQUEST_TEMPLATE.md | 2 +- .github/workflows/call_issues_cron.yml | 2 +- .github/workflows/external_trigger.yml | 26 ++++++++-------- .../workflows/external_trigger_scheduler.yml | 8 ++--- .github/workflows/greetings.yml | 2 +- .github/workflows/package_trigger.yml | 14 ++++----- .../workflows/package_trigger_scheduler.yml | 10 +++---- Jenkinsfile | 30 +++++++++---------- README.md | 2 +- readme-vars.yml | 2 +- 12 files changed, 57 insertions(+), 57 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index d84beaa..c7e8b7b 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -1,4 +1,4 @@ -# Contributing to webtop +# Contributing to kasm ## Gotchas @@ -24,7 +24,7 @@ ## Readme If you would like to change our readme, please __**do not**__ directly edit the readme, as it is auto-generated on each commit. -Instead edit the [readme-vars.yml](https://github.com/linuxserver/docker-webtop/edit/develop/readme-vars.yml). +Instead edit the [readme-vars.yml](https://github.com/linuxserver/docker-kasm/edit/develop/readme-vars.yml). These variables are used in a template for our [Jenkins Builder](https://github.com/linuxserver/docker-jenkins-builder) as part of an ansible play. Most of these variables are also carried over to [docs.linuxserver.io](https://docs.linuxserver.io) @@ -97,12 +97,12 @@ If you are proposing additional packages to be added, ensure that you added the ### Testing your changes ```bash -git clone https://github.com/linuxserver/docker-webtop.git -cd docker-webtop +git clone https://github.com/linuxserver/docker-kasm.git +cd docker-kasm docker build \ --no-cache \ --pull \ - -t linuxserver/webtop:latest . + -t linuxserver/kasm:latest . ``` The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` @@ -115,7 +115,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Update the changelog -If you are modifying the Dockerfiles or any of the startup scripts in [root](https://github.com/linuxserver/docker-webtop/tree/develop/root), add an entry to the changelog +If you are modifying the Dockerfiles or any of the startup scripts in [root](https://github.com/linuxserver/docker-kasm/tree/develop/root), add an entry to the changelog ```yml changelogs: diff --git a/.github/ISSUE_TEMPLATE/issue.bug.yml b/.github/ISSUE_TEMPLATE/issue.bug.yml index 3e63d77..209e268 100755 --- a/.github/ISSUE_TEMPLATE/issue.bug.yml +++ b/.github/ISSUE_TEMPLATE/issue.bug.yml @@ -59,10 +59,10 @@ body: - type: textarea attributes: description: | - Provide a full docker log, output of "docker logs webtop" + Provide a full docker log, output of "docker logs kasm" label: Container logs placeholder: | - Output of `docker logs webtop` + Output of `docker logs kasm` render: bash validations: required: true diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 9cf8ac5..ce77557 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -21,7 +21,7 @@ ------------------------------ - - [ ] I have read the [contributing](https://github.com/linuxserver/docker-webtop/blob/develop/.github/CONTRIBUTING.md) guideline and understand that I have made the correct modifications + - [ ] I have read the [contributing](https://github.com/linuxserver/docker-kasm/blob/develop/.github/CONTRIBUTING.md) guideline and understand that I have made the correct modifications ------------------------------ diff --git a/.github/workflows/call_issues_cron.yml b/.github/workflows/call_issues_cron.yml index bd31610..cddb87b 100755 --- a/.github/workflows/call_issues_cron.yml +++ b/.github/workflows/call_issues_cron.yml @@ -1,7 +1,7 @@ name: Mark stale issues and pull requests on: schedule: - - cron: '36 11 * * *' + - cron: '16 9 * * *' workflow_dispatch: jobs: diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index fbe495d..810e939 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -12,19 +12,19 @@ jobs: - name: External Trigger if: github.ref == 'refs/heads/develop' run: | - if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_WEBTOP_DEVELOP }}" ]; then - echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_WEBTOP_DEVELOP is set; skipping trigger. ****" - echo "Github secret \`PAUSE_EXTERNAL_TRIGGER_WEBTOP_DEVELOP\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY + if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP }}" ]; then + echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP is set; skipping trigger. ****" + echo "Github secret \`PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi - echo "**** External trigger running off of develop branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_WEBTOP_DEVELOP\". ****" - echo "External trigger running off of develop branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_WEBTOP_DEVELOP\`" >> $GITHUB_STEP_SUMMARY + echo "**** External trigger running off of develop branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP\". ****" + echo "External trigger running off of develop branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP\`" >> $GITHUB_STEP_SUMMARY echo "**** Retrieving external version ****" EXT_RELEASE=$(curl -sX GET https://kasm-ci.s3.amazonaws.com/dev-version.txt) if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then echo "**** Can't retrieve external version, exiting ****" - FAILURE_REASON="Can't retrieve external version for webtop branch develop" - GHA_TRIGGER_URL="https://github.com/linuxserver/docker-webtop/actions/runs/${{ github.run_id }}" + FAILURE_REASON="Can't retrieve external version for kasm branch develop" + GHA_TRIGGER_URL="https://github.com/linuxserver/docker-kasm/actions/runs/${{ github.run_id }}" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680, "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n**Trigger URL:** '"${GHA_TRIGGER_URL}"' \n"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} @@ -34,10 +34,10 @@ jobs: echo "**** External version: ${EXT_RELEASE} ****" echo "External version: ${EXT_RELEASE}" >> $GITHUB_STEP_SUMMARY echo "**** Retrieving last pushed version ****" - image="linuxserver/webtop" + image="linuxserver/kasm" tag="develop" token=$(curl -sX GET \ - "https://ghcr.io/token?scope=repository%3Alinuxserver%2Fwebtop%3Apull" \ + "https://ghcr.io/token?scope=repository%3Alinuxserver%2Fkasm%3Apull" \ | jq -r '.token') multidigest=$(curl -s \ --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ @@ -61,7 +61,7 @@ jobs: IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}') if [ -z "${IMAGE_VERSION}" ]; then echo "**** Can't retrieve last pushed version, exiting ****" - FAILURE_REASON="Can't retrieve last pushed version for webtop tag develop" + FAILURE_REASON="Can't retrieve last pushed version for kasm tag develop" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680, "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} @@ -73,7 +73,7 @@ jobs: echo "**** Version ${EXT_RELEASE} already pushed, exiting ****" echo "Version ${EXT_RELEASE} already pushed, exiting" >> $GITHUB_STEP_SUMMARY exit 0 - elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-webtop/job/develop/lastBuild/api/json | jq -r '.building') == "true" ]; then + elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/lastBuild/api/json | jq -r '.building') == "true" ]; then echo "**** New version ${EXT_RELEASE} found; but there already seems to be an active build on Jenkins; exiting ****" echo "New version ${EXT_RELEASE} found; but there already seems to be an active build on Jenkins; exiting" >> $GITHUB_STEP_SUMMARY exit 0 @@ -81,7 +81,7 @@ jobs: echo "**** New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build ****" echo "New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build" >> $GITHUB_STEP_SUMMARY response=$(curl -iX POST \ - https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-webtop/job/develop/buildWithParameters?PACKAGE_CHECK=false \ + https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/buildWithParameters?PACKAGE_CHECK=false \ --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") echo "**** Jenkins job queue url: ${response%$'\r'} ****" echo "**** Sleeping 10 seconds until job starts ****" @@ -97,7 +97,7 @@ jobs: --data-urlencode "description=GHA external trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ --data-urlencode "Submit=Submit" echo "**** Notifying Discord ****" - TRIGGER_REASON="A version change was detected for webtop tag develop. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE}" + TRIGGER_REASON="A version change was detected for kasm tag develop. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE}" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, "description": "**Build Triggered** \n**Reason:** '"${TRIGGER_REASON}"' \n**Build URL:** '"${buildurl}display/redirect"' \n"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml index cd9c6aa..d78cb5e 100644 --- a/.github/workflows/external_trigger_scheduler.yml +++ b/.github/workflows/external_trigger_scheduler.yml @@ -2,7 +2,7 @@ name: External Trigger Scheduler on: schedule: - - cron: '27 * * * *' + - cron: '33 * * * *' workflow_dispatch: jobs: @@ -21,19 +21,19 @@ jobs: do br=$(echo "$br" | sed 's|origin/||g') echo "**** Evaluating branch ${br} ****" - ls_jenkins_vars=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-webtop/${br}/jenkins-vars.yml) + ls_jenkins_vars=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/jenkins-vars.yml) ls_branch=$(echo "${ls_jenkins_vars}" | yq -r '.ls_branch') ls_trigger=$(echo "${ls_jenkins_vars}" | yq -r '.external_type') if [[ "${br}" == "${ls_branch}" ]] && [[ "${ls_trigger}" != "os" ]]; then echo "**** Branch ${br} appears to be live and trigger is not os; checking workflow. ****" - if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-webtop/${br}/.github/workflows/external_trigger.yml > /dev/null 2>&1; then + if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/.github/workflows/external_trigger.yml > /dev/null 2>&1; then echo "**** Workflow exists. Triggering external trigger workflow for branch ${br} ****." echo "Triggering external trigger workflow for branch ${br}" >> $GITHUB_STEP_SUMMARY curl -iX POST \ -H "Authorization: token ${{ secrets.CR_PAT }}" \ -H "Accept: application/vnd.github.v3+json" \ -d "{\"ref\":\"refs/heads/${br}\"}" \ - https://api.github.com/repos/linuxserver/docker-webtop/actions/workflows/external_trigger.yml/dispatches + https://api.github.com/repos/linuxserver/docker-kasm/actions/workflows/external_trigger.yml/dispatches else echo "**** Workflow doesn't exist; skipping trigger. ****" echo "Skipping branch ${br} due to no external trigger workflow present." >> $GITHUB_STEP_SUMMARY diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index f1c1257..81ea2a9 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -9,5 +9,5 @@ jobs: - uses: actions/first-interaction@v1 with: issue-message: 'Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.' - pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-webtop/blob/develop/.github/PULL_REQUEST_TEMPLATE.md)!' + pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-kasm/blob/develop/.github/PULL_REQUEST_TEMPLATE.md)!' repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/package_trigger.yml b/.github/workflows/package_trigger.yml index 0a4bd05..7b8f325 100644 --- a/.github/workflows/package_trigger.yml +++ b/.github/workflows/package_trigger.yml @@ -12,20 +12,20 @@ jobs: - name: Package Trigger if: github.ref == 'refs/heads/develop' run: | - if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_WEBTOP_DEVELOP }}" ]; then - echo "**** Github secret PAUSE_PACKAGE_TRIGGER_WEBTOP_DEVELOP is set; skipping trigger. ****" - echo "Github secret \`PAUSE_PACKAGE_TRIGGER_WEBTOP_DEVELOP\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY + if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP }}" ]; then + echo "**** Github secret PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP is set; skipping trigger. ****" + echo "Github secret \`PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi - if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-webtop/job/develop/lastBuild/api/json | jq -r '.building') == "true" ]; then + if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/lastBuild/api/json | jq -r '.building') == "true" ]; then echo "**** There already seems to be an active build on Jenkins; skipping package trigger ****" echo "There already seems to be an active build on Jenkins; skipping package trigger" >> $GITHUB_STEP_SUMMARY exit 0 fi - echo "**** Package trigger running off of develop branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_WEBTOP_DEVELOP\". ****" - echo "Package trigger running off of develop branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_WEBTOP_DEVELOP\`" >> $GITHUB_STEP_SUMMARY + echo "**** Package trigger running off of develop branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP\". ****" + echo "Package trigger running off of develop branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP\`" >> $GITHUB_STEP_SUMMARY response=$(curl -iX POST \ - https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-webtop/job/develop/buildWithParameters?PACKAGE_CHECK=true \ + https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/buildWithParameters?PACKAGE_CHECK=true \ --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") echo "**** Jenkins job queue url: ${response%$'\r'} ****" echo "**** Sleeping 10 seconds until job starts ****" diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index 652b8f5..3b2278a 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -2,7 +2,7 @@ name: Package Trigger Scheduler on: schedule: - - cron: '19 3 * * 2' + - cron: '31 21 * * 2' workflow_dispatch: jobs: @@ -21,10 +21,10 @@ jobs: do br=$(echo "$br" | sed 's|origin/||g') echo "**** Evaluating branch ${br} ****" - ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-webtop/${br}/jenkins-vars.yml | yq -r '.ls_branch') + ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/jenkins-vars.yml | yq -r '.ls_branch') if [ "${br}" == "${ls_branch}" ]; then echo "**** Branch ${br} appears to be live; checking workflow. ****" - if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-webtop/${br}/.github/workflows/package_trigger.yml > /dev/null 2>&1; then + if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/.github/workflows/package_trigger.yml > /dev/null 2>&1; then echo "**** Workflow exists. Triggering package trigger workflow for branch ${br}. ****" echo "Triggering package trigger workflow for branch ${br}" >> $GITHUB_STEP_SUMMARY triggered_branches="${triggered_branches}${br} " @@ -32,7 +32,7 @@ jobs: -H "Authorization: token ${{ secrets.CR_PAT }}" \ -H "Accept: application/vnd.github.v3+json" \ -d "{\"ref\":\"refs/heads/${br}\"}" \ - https://api.github.com/repos/linuxserver/docker-webtop/actions/workflows/package_trigger.yml/dispatches + https://api.github.com/repos/linuxserver/docker-kasm/actions/workflows/package_trigger.yml/dispatches sleep 30 else echo "**** Workflow doesn't exist; skipping trigger. ****" @@ -46,5 +46,5 @@ jobs: echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****" echo "**** Notifying Discord ****" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, - "description": "**Package Check Build(s) Triggered for webtop** \n**Branch(es):** '"${triggered_branches}"' \n**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-webtop/activity/"' \n"}], + "description": "**Package Check Build(s) Triggered for kasm** \n**Branch(es):** '"${triggered_branches}"' \n**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-kasm/activity/"' \n"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} diff --git a/Jenkinsfile b/Jenkinsfile index 52773fd..bd3865f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -480,16 +480,16 @@ pipeline { sh "docker buildx build \ --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ --label \"org.opencontainers.image.authors=linuxserver.io\" \ - --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-webtop/packages\" \ - --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-webtop\" \ - --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-webtop\" \ + --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-kasm/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-kasm\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-kasm\" \ --label \"org.opencontainers.image.version=${EXT_RELEASE_CLEAN}-ls${LS_TAG_NUMBER}\" \ --label \"org.opencontainers.image.revision=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.vendor=linuxserver.io\" \ --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ - --label \"org.opencontainers.image.title=Webtop\" \ - --label \"org.opencontainers.image.description=webtop image by linuxserver.io\" \ + --label \"org.opencontainers.image.title=Kasm\" \ + --label \"org.opencontainers.image.description=kasm image by linuxserver.io\" \ --no-cache --pull -t ${IMAGE}:${META_TAG} --platform=linux/amd64 \ --provenance=false --sbom=false \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." @@ -512,16 +512,16 @@ pipeline { sh "docker buildx build \ --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ --label \"org.opencontainers.image.authors=linuxserver.io\" \ - --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-webtop/packages\" \ - --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-webtop\" \ - --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-webtop\" \ + --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-kasm/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-kasm\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-kasm\" \ --label \"org.opencontainers.image.version=${EXT_RELEASE_CLEAN}-ls${LS_TAG_NUMBER}\" \ --label \"org.opencontainers.image.revision=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.vendor=linuxserver.io\" \ --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ - --label \"org.opencontainers.image.title=Webtop\" \ - --label \"org.opencontainers.image.description=webtop image by linuxserver.io\" \ + --label \"org.opencontainers.image.title=Kasm\" \ + --label \"org.opencontainers.image.description=kasm image by linuxserver.io\" \ --no-cache --pull -t ${IMAGE}:amd64-${META_TAG} --platform=linux/amd64 \ --provenance=false --sbom=false \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." @@ -541,16 +541,16 @@ pipeline { sh "docker buildx build \ --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ --label \"org.opencontainers.image.authors=linuxserver.io\" \ - --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-webtop/packages\" \ - --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-webtop\" \ - --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-webtop\" \ + --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-kasm/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-kasm\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-kasm\" \ --label \"org.opencontainers.image.version=${EXT_RELEASE_CLEAN}-ls${LS_TAG_NUMBER}\" \ --label \"org.opencontainers.image.revision=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.vendor=linuxserver.io\" \ --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ - --label \"org.opencontainers.image.title=Webtop\" \ - --label \"org.opencontainers.image.description=webtop image by linuxserver.io\" \ + --label \"org.opencontainers.image.title=Kasm\" \ + --label \"org.opencontainers.image.description=kasm image by linuxserver.io\" \ --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} --platform=linux/arm64 \ --provenance=false --sbom=false \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." diff --git a/README.md b/README.md index e5ceb75..c4428eb 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ <!-- DO NOT EDIT THIS FILE MANUALLY --> -<!-- Please read https://github.com/linuxserver/docker-webtop/blob/develop/.github/CONTRIBUTING.md --> +<!-- Please read https://github.com/linuxserver/docker-kasm/blob/develop/.github/CONTRIBUTING.md --> Up to date documentation is available [here](https://github.com/linuxserver/docker-kasm/blob/master/README.md). diff --git a/readme-vars.yml b/readme-vars.yml index 1b5597b..2cce179 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -1,7 +1,7 @@ --- # project information -project_name: webtop +project_name: kasm full_custom_readme: | {% raw -%} Up to date documentation is available [here](https://github.com/linuxserver/docker-kasm/blob/master/README.md). From 79c1d306a502062757085c18ff5200cec586377c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 25 Jun 2024 21:55:20 +0000 Subject: [PATCH 227/337] Bot Updating Package Versions --- package_versions.txt | 234 ++++++++++++++++++++++--------------------- 1 file changed, 120 insertions(+), 114 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 13cdc7e..ef79cda 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -85,7 +85,7 @@ code.cloudfoundry.org/clock v1 color-convert 2.0.1 npm color-name 1.1.4 npm common-ancestor-path 1.0.1 npm -containerd.io 1.6.33-1 deb +containerd.io 1.7.18-1 deb content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.4.2 npm @@ -112,8 +112,8 @@ destroy 1. diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:26.1.4-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:26.1.4-1~ubuntu.22.04~jammy deb +docker-ce 5:27.0.1-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:27.0.1-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -153,8 +153,7 @@ get-intrinsic 1. github.com/AlecAivazis/survey/v2 v2.3.2 go-module github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module github.com/Masterminds/semver v1.5.0 go-module -github.com/Microsoft/hcsshim v0.11.5 go-module -github.com/Microsoft/hcsshim v0.9.11 go-module (+1 duplicate) +github.com/Microsoft/hcsshim v0.11.5 go-module (+2 duplicates) github.com/NVIDIA/go-nvlib v0.2.0 go-module (+2 duplicates) github.com/NVIDIA/go-nvml v0.12.0-3 go-module (+2 duplicates) github.com/NVIDIA/nvidia-container-toolkit v1.15.0 go-module (+2 duplicates) @@ -182,58 +181,54 @@ github.com/aws/aws-sdk-go-v2/service/sts v1 github.com/aws/smithy-go v1.19.0 go-module github.com/beorn7/perks v1.0.1 go-module (+2 duplicates) github.com/bits-and-blooms/bitset v1.13.0 go-module -github.com/blang/semver v3.5.1+incompatible go-module +github.com/blang/semver/v4 v4.0.0 go-module github.com/buger/goterm v1.0.4 go-module -github.com/cenkalti/backoff/v4 v4.1.2 go-module -github.com/cenkalti/backoff/v4 v4.2.1 go-module +github.com/cenkalti/backoff/v4 v4.2.1 go-module (+1 duplicate) github.com/cespare/xxhash/v2 v2.1.2 go-module github.com/cespare/xxhash/v2 v2.2.0 go-module (+1 duplicate) github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module -github.com/cilium/ebpf v0.11.0 go-module -github.com/cilium/ebpf v0.7.0 go-module (+4 duplicates) +github.com/cilium/ebpf v0.12.3 go-module +github.com/cilium/ebpf v0.7.0 go-module +github.com/cilium/ebpf v0.9.1 go-module (+3 duplicates) github.com/cloudflare/cfssl v1.6.4 go-module github.com/cnabio/cnab-go v0.10.0-beta1 go-module github.com/cnabio/cnab-to-oci v0.3.1-beta1 go-module github.com/compose-spec/compose-go v1.2.4 go-module github.com/container-storage-interface/spec v1.5.0 go-module github.com/containerd/aufs v1.0.0 go-module -github.com/containerd/btrfs v1.0.0 go-module -github.com/containerd/cgroups v1.0.4 go-module (+3 duplicates) +github.com/containerd/btrfs/v2 v2.0.0 go-module +github.com/containerd/cgroups v1.1.0 go-module (+1 duplicate) +github.com/containerd/cgroups/v3 v3.0.2 go-module (+3 duplicates) github.com/containerd/cgroups/v3 v3.0.3 go-module github.com/containerd/console v1.0.3 go-module (+6 duplicates) github.com/containerd/console v1.0.4 go-module github.com/containerd/containerd v1.6.2 go-module -github.com/containerd/containerd v1.6.33 go-module (+4 duplicates) -github.com/containerd/containerd v1.7.18 go-module +github.com/containerd/containerd v1.7.18 go-module (+5 duplicates) github.com/containerd/continuity v0.2.2 go-module -github.com/containerd/continuity v0.3.0 go-module (+3 duplicates) +github.com/containerd/continuity v0.4.2 go-module (+4 duplicates) github.com/containerd/continuity v0.4.3 go-module github.com/containerd/errdefs v0.1.0 go-module (+5 duplicates) -github.com/containerd/fifo v1.0.0 go-module (+4 duplicates) -github.com/containerd/fifo v1.1.0 go-module -github.com/containerd/go-cni v1.1.6 go-module (+1 duplicate) -github.com/containerd/go-cni v1.1.9 go-module +github.com/containerd/fifo v1.1.0 go-module (+5 duplicates) +github.com/containerd/go-cni v1.1.9 go-module (+2 duplicates) github.com/containerd/go-runc v1.0.0 go-module (+4 duplicates) github.com/containerd/go-runc v1.1.0 go-module github.com/containerd/imgcrypt v1.1.8 go-module github.com/containerd/log v0.1.0 go-module (+6 duplicates) -github.com/containerd/nri v0.1.1 go-module +github.com/containerd/nri v0.6.1 go-module github.com/containerd/nydus-snapshotter v0.13.7 go-module github.com/containerd/stargz-snapshotter/estargz v0.15.1 go-module github.com/containerd/ttrpc v1.1.0 go-module -github.com/containerd/ttrpc v1.1.2 go-module (+4 duplicates) -github.com/containerd/ttrpc v1.2.4 go-module -github.com/containerd/typeurl v1.0.2 go-module (+5 duplicates) -github.com/containerd/typeurl/v2 v2.1.1 go-module +github.com/containerd/ttrpc v1.2.4 go-module (+4 duplicates) +github.com/containerd/ttrpc v1.2.5 go-module +github.com/containerd/typeurl v1.0.2 go-module (+1 duplicate) +github.com/containerd/typeurl/v2 v2.1.1 go-module (+5 duplicates) github.com/containerd/zfs v1.1.0 go-module -github.com/containernetworking/cni v1.1.1 go-module (+1 duplicate) -github.com/containernetworking/cni v1.1.2 go-module -github.com/containernetworking/plugins v1.1.1 go-module +github.com/containernetworking/cni v1.1.2 go-module (+2 duplicates) +github.com/containernetworking/plugins v1.2.0 go-module github.com/containernetworking/plugins v1.4.0 go-module github.com/containers/ocicrypt v1.1.10 go-module -github.com/coreos/go-systemd/v22 v22.3.2 go-module (+4 duplicates) -github.com/coreos/go-systemd/v22 v22.5.0 go-module -github.com/cpuguy83/go-md2man/v2 v2.0.0 go-module (+1 duplicate) +github.com/coreos/go-systemd/v22 v22.3.2 go-module +github.com/coreos/go-systemd/v22 v22.5.0 go-module (+4 duplicates) github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module github.com/cpuguy83/go-md2man/v2 v2.0.2 go-module github.com/cyphar/filepath-securejoin v0.2.4 go-module (+1 duplicate) @@ -241,47 +236,46 @@ github.com/davecgh/go-spew v1 github.com/deckarep/golang-set/v2 v2.3.0 go-module github.com/dimchansky/utfbom v1.1.1 go-module github.com/distribution/distribution/v3 v3.0.0-20210316161203-a01c71e2477e go-module -github.com/distribution/reference v0.5.0 go-module +github.com/distribution/reference v0.6.0 go-module github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v26.1.4 go-module +github.com/docker/cli/cmd/docker v27.0.1 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v26.1.4 go-module (+1 duplicate) +github.com/docker/docker v27.0.1 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module github.com/docker/go-connections v0.5.0 go-module github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module (+4 duplicates) github.com/docker/go-metrics v0.0.1 go-module (+2 duplicates) -github.com/docker/go-units v0.4.0 go-module (+5 duplicates) -github.com/docker/go-units v0.5.0 go-module +github.com/docker/go-units v0.4.0 go-module (+1 duplicate) +github.com/docker/go-units v0.5.0 go-module (+4 duplicates) github.com/docker/libtrust v0.0.0-20150526203908-9cbd2a1374f4 go-module github.com/dustin/go-humanize v1.0.0 go-module github.com/elliotchance/orderedmap v1.4.0 go-module (+1 duplicate) -github.com/emicklei/go-restful v2.16.0+incompatible go-module github.com/emicklei/go-restful/v3 v3.10.1 go-module github.com/fatih/color v1.13.0 go-module (+1 duplicate) github.com/felixge/httpsnoop v1.0.2 go-module +github.com/felixge/httpsnoop v1.0.3 go-module (+1 duplicate) github.com/felixge/httpsnoop v1.0.4 go-module github.com/fernet/fernet-go v0.0.0-20211208181803-9f70042a33ee go-module github.com/fluent/fluent-logger-golang v1.9.0 go-module -github.com/fsnotify/fsnotify v1.4.9 go-module -github.com/fsnotify/fsnotify v1.6.0 go-module +github.com/fsnotify/fsnotify v1.6.0 go-module (+1 duplicate) github.com/fsnotify/fsnotify v1.7.0 go-module (+2 duplicates) github.com/fvbommel/sortorder v1.0.1 go-module github.com/go-jose/go-jose/v3 v3.0.3 go-module github.com/go-logr/logr v1.2.2 go-module -github.com/go-logr/logr v1.3.0 go-module (+1 duplicate) -github.com/go-logr/stdr v1.2.2 go-module (+2 duplicates) +github.com/go-logr/logr v1.2.4 go-module (+1 duplicate) +github.com/go-logr/logr v1.3.0 go-module +github.com/go-logr/stdr v1.2.2 go-module (+3 duplicates) github.com/goccy/go-yaml v1.9.5 go-module (+1 duplicate) -github.com/godbus/dbus/v5 v5.0.6 go-module (+4 duplicates) -github.com/godbus/dbus/v5 v5.1.0 go-module +github.com/godbus/dbus/v5 v5.0.6 go-module +github.com/godbus/dbus/v5 v5.1.0 go-module (+4 duplicates) github.com/gofrs/flock v0.8.0 go-module github.com/gofrs/flock v0.8.1 go-module -github.com/gogo/googleapis v1.3.2 go-module (+1 duplicate) github.com/gogo/googleapis v1.4.1 go-module (+1 duplicate) github.com/gogo/protobuf v1.3.2 go-module (+6 duplicates) github.com/golang-jwt/jwt/v4 v4.5.0 go-module @@ -293,7 +287,8 @@ github.com/golang/protobuf v1 github.com/google/btree v1.1.2 go-module github.com/google/certificate-transparency-go v1.1.4 go-module github.com/google/go-cmp v0.5.7 go-module -github.com/google/go-cmp v0.6.0 go-module (+1 duplicate) +github.com/google/go-cmp v0.5.9 go-module (+4 duplicates) +github.com/google/go-cmp v0.6.0 go-module github.com/google/gofuzz v1.2.0 go-module (+1 duplicate) github.com/google/s2a-go v0.1.4 go-module github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module (+1 duplicate) @@ -303,15 +298,15 @@ github.com/googleapis/enterprise-certificate-proxy v0 github.com/googleapis/gax-go/v2 v2.12.0 go-module github.com/gorilla/mux v1.8.0 go-module github.com/gorilla/mux v1.8.1 go-module -github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module (+2 duplicates) +github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module (+1 duplicate) github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module (+1 duplicate) -github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module (+1 duplicate) -github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 go-module -github.com/hashicorp/errwrap v1.1.0 go-module (+5 duplicates) +github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module +github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 go-module (+1 duplicate) +github.com/hashicorp/errwrap v1.1.0 go-module (+6 duplicates) github.com/hashicorp/go-immutable-radix v1.3.1 go-module github.com/hashicorp/go-memdb v1.3.2 go-module github.com/hashicorp/go-msgpack v0.5.5 go-module -github.com/hashicorp/go-multierror v1.1.1 go-module (+5 duplicates) +github.com/hashicorp/go-multierror v1.1.1 go-module (+6 duplicates) github.com/hashicorp/go-sockaddr v1.0.2 go-module github.com/hashicorp/go-version v1.3.0 go-module github.com/hashicorp/golang-lru v0.5.4 go-module @@ -319,15 +314,16 @@ github.com/hashicorp/memberlist v0 github.com/hashicorp/serf v0.8.5 go-module github.com/imdario/mergo v0.3.12 go-module github.com/in-toto/in-toto-golang v0.5.0 go-module -github.com/intel/goresctrl v0.2.0 go-module +github.com/intel/goresctrl v0.3.0 go-module (+1 duplicate) github.com/ishidawataru/sctp v0.0.0-20230406120618-7ff4192f6ff2 go-module (+1 duplicate) github.com/jinzhu/copier v0.3.5 go-module (+1 duplicate) github.com/jmoiron/sqlx v1.3.3 go-module github.com/json-iterator/go v1.1.12 go-module (+1 duplicate) github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module github.com/klauspost/compress v1.15.0 go-module -github.com/klauspost/compress v1.15.9 go-module (+3 duplicates) +github.com/klauspost/compress v1.16.0 go-module (+3 duplicates) github.com/klauspost/compress v1.17.4 go-module +github.com/klauspost/cpuid/v2 v2.0.4 go-module (+1 duplicate) github.com/magiconair/properties v1.8.6 go-module (+1 duplicate) github.com/mattn/go-colorable v0.1.12 go-module (+2 duplicates) github.com/mattn/go-isatty v0.0.14 go-module (+2 duplicates) @@ -338,27 +334,28 @@ github.com/mgutz/ansi v0 github.com/miekg/dns v1.1.57 go-module github.com/miekg/pkcs11 v1.1.1 go-module github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module (+1 duplicate) +github.com/minio/sha256-simd v1.0.0 go-module (+1 duplicate) github.com/mistifyio/go-zfs/v3 v3.0.1 go-module (+1 duplicate) github.com/mitchellh/copystructure v1.2.0 go-module github.com/mitchellh/hashstructure/v2 v2.0.2 go-module github.com/mitchellh/mapstructure v1.4.3 go-module github.com/mitchellh/reflectwalk v1.0.2 go-module github.com/moby/buildkit v0.10.0-rc2.0.20220308185020-fdecd0ae108b go-module -github.com/moby/buildkit v0.13.2 go-module +github.com/moby/buildkit v0.14.1 go-module github.com/moby/docker-image-spec v1.3.1 go-module github.com/moby/ipvs v1.1.0 go-module github.com/moby/locker v1.0.1 go-module (+3 duplicates) github.com/moby/patternmatcher v0.6.0 go-module github.com/moby/pubsub v1.0.0 go-module github.com/moby/spdystream v0.2.0 go-module -github.com/moby/swarmkit/v2 v2.0.0-20240412154004-f3ffc0881d0e go-module +github.com/moby/swarmkit/v2 v2.0.0-20240611172349-ea1a7cec35cb go-module github.com/moby/sys/mount v0.3.3 go-module github.com/moby/sys/mountinfo v0.5.0 go-module github.com/moby/sys/mountinfo v0.6.2 go-module (+4 duplicates) github.com/moby/sys/mountinfo v0.7.1 go-module github.com/moby/sys/sequential v0.5.0 go-module -github.com/moby/sys/signal v0.6.0 go-module (+2 duplicates) -github.com/moby/sys/signal v0.7.0 go-module +github.com/moby/sys/signal v0.6.0 go-module +github.com/moby/sys/signal v0.7.0 go-module (+2 duplicates) github.com/moby/sys/symlink v0.2.0 go-module (+2 duplicates) github.com/moby/sys/user v0.1.0 go-module (+4 duplicates) github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 go-module @@ -367,71 +364,73 @@ github.com/modern-go/concurrent v0 github.com/modern-go/reflect2 v1.0.2 go-module (+1 duplicate) github.com/morikuni/aec v1.0.0 go-module (+1 duplicate) github.com/mrunalp/fileutils v0.5.1 go-module -github.com/opencontainers/go-digest v1.0.0 go-module (+6 duplicates) +github.com/opencontainers/go-digest v1.0.0 go-module (+5 duplicates) github.com/opencontainers/image-spec v1.0.2 go-module github.com/opencontainers/image-spec v1.1.0 go-module (+4 duplicates) github.com/opencontainers/runc v1.1.0 go-module -github.com/opencontainers/runc v1.1.12 go-module -github.com/opencontainers/runc v1.1.12-0-g51d5e94 go-module -github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module (+5 duplicates) +github.com/opencontainers/runc v1.1.13 go-module +github.com/opencontainers/runc v1.1.13-0-g58aa920 go-module +github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module +github.com/opencontainers/runtime-spec v1.1.0 go-module (+4 duplicates) github.com/opencontainers/runtime-spec v1.2.0 go-module (+3 duplicates) -github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module (+3 duplicates) +github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module (+4 duplicates) github.com/opencontainers/selinux v1.10.0 go-module -github.com/opencontainers/selinux v1.10.1 go-module (+1 duplicate) -github.com/opencontainers/selinux v1.11.0 go-module +github.com/opencontainers/selinux v1.11.0 go-module (+2 duplicates) github.com/package-url/packageurl-go v0.1.1-0.20220428063043-89078438f170 go-module github.com/pelletier/go-toml v1.9.4 go-module github.com/pelletier/go-toml v1.9.5 go-module (+5 duplicates) github.com/philhofer/fwd v1.1.2 go-module github.com/pkg/errors v0.9.1 go-module (+6 duplicates) github.com/pmezard/go-difflib v1.0.0 go-module -github.com/prometheus/client_golang v1.11.1 go-module github.com/prometheus/client_golang v1.12.1 go-module +github.com/prometheus/client_golang v1.14.0 go-module github.com/prometheus/client_golang v1.17.0 go-module -github.com/prometheus/client_model v0.2.0 go-module (+1 duplicate) +github.com/prometheus/client_model v0.2.0 go-module +github.com/prometheus/client_model v0.3.0 go-module github.com/prometheus/client_model v0.5.0 go-module -github.com/prometheus/common v0.30.0 go-module github.com/prometheus/common v0.32.1 go-module +github.com/prometheus/common v0.37.0 go-module github.com/prometheus/common v0.44.0 go-module github.com/prometheus/procfs v0.12.0 go-module -github.com/prometheus/procfs v0.7.3 go-module (+1 duplicate) +github.com/prometheus/procfs v0.7.3 go-module +github.com/prometheus/procfs v0.8.0 go-module github.com/qri-io/jsonpointer v0.1.0 go-module github.com/qri-io/jsonschema v0.1.1 go-module github.com/rootless-containers/rootlesskit/v2 v2.0.2 go-module -github.com/russross/blackfriday/v2 v2.0.1 go-module (+2 duplicates) +github.com/russross/blackfriday/v2 v2.0.1 go-module github.com/russross/blackfriday/v2 v2.1.0 go-module github.com/sanathkr/go-yaml v0.0.0-20170819195128-ed9d249f429b go-module github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 go-module github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 go-module github.com/secure-systems-lab/go-securesystemslib v0.4.0 go-module github.com/shibumi/go-pathspec v1.3.0 go-module -github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module (+2 duplicates) +github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module github.com/sirupsen/logrus v1.8.1 go-module (+1 duplicate) github.com/sirupsen/logrus v1.9.3 go-module (+9 duplicates) github.com/spdx/tools-golang v0.5.3 go-module github.com/spf13/cobra v1.4.0 go-module (+2 duplicates) -github.com/spf13/cobra v1.8.0 go-module +github.com/spf13/cobra v1.8.1 go-module github.com/spf13/pflag v1.0.5 go-module (+4 duplicates) github.com/stefanberger/go-pkcs11uri v0.0.0-20230803200340-78284954bff6 go-module github.com/stretchr/testify v1.8.4 go-module -github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module (+4 duplicates) -github.com/tchap/go-patricia v2.2.6+incompatible go-module +github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module (+5 duplicates) +github.com/tchap/go-patricia/v2 v2.3.1 go-module github.com/theupdateframework/notary v0.6.1 go-module github.com/timtadh/data-structures v0.5.3 go-module (+1 duplicate) github.com/timtadh/lexmachine v0.2.2 go-module (+1 duplicate) github.com/tinylib/msgp v1.1.8 go-module github.com/tonistiigi/fsutil v0.0.0-20220315205639-9ed612626da3 go-module github.com/tonistiigi/fsutil v0.0.0-20240424095704-91a3fc46842c go-module -github.com/tonistiigi/go-actions-cache v0.0.0-20240227172821-a0b64f338598 go-module +github.com/tonistiigi/go-actions-cache v0.0.0-20240320205438-9794bdbb2fb4 go-module github.com/tonistiigi/go-archvariant v1.0.0 go-module github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module (+1 duplicate) github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f go-module -github.com/urfave/cli v1.22.1 go-module (+2 duplicates) +github.com/urfave/cli v1.22.1 go-module +github.com/urfave/cli v1.22.12 go-module (+1 duplicate) github.com/urfave/cli/v2 v2.27.1 go-module github.com/vbatts/tar-split v0.11.5 go-module github.com/vishvananda/netlink v1.1.0 go-module -github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5 go-module -github.com/vishvananda/netlink v1.2.1-beta.2 go-module +github.com/vishvananda/netlink v1.2.1-beta.2 go-module (+1 duplicate) github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df go-module github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f go-module github.com/vishvananda/netns v0.0.4 go-module @@ -446,8 +445,8 @@ glob 10 gnupg 2.2.27-3ubuntu2.1 deb gnupg-l10n 2.2.27-3ubuntu2.1 deb gnupg-utils 2.2.27-3ubuntu2.1 deb +go.etcd.io/bbolt v1.3.10 go-module go.etcd.io/bbolt v1.3.7 go-module -go.etcd.io/bbolt v1.3.9 go-module go.etcd.io/etcd/client/pkg/v3 v3.5.6 go-module go.etcd.io/etcd/pkg/v3 v3.5.6 go-module go.etcd.io/etcd/raft/v3 v3.5.6 go-module @@ -455,80 +454,86 @@ go.etcd.io/etcd/server/v3 v3 go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module go.opencensus.io v0.24.0 go-module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.29.0 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.0 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.45.0 go-module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 go-module go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.29.0 go-module go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.46.1 go-module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.29.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 go-module (+1 duplicate) go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 go-module -go.opentelemetry.io/otel v1.21.0 go-module (+1 duplicate) +go.opentelemetry.io/otel v1.19.0 go-module (+1 duplicate) +go.opentelemetry.io/otel v1.21.0 go-module go.opentelemetry.io/otel v1.4.1 go-module -go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.42.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.42.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v0.42.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.3.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.4.1 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.19.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.21.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.3.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.19.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.21.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.3.0 go-module -go.opentelemetry.io/otel/exporters/prometheus v0.42.0 go-module go.opentelemetry.io/otel/internal/metric v0.27.0 go-module go.opentelemetry.io/otel/metric v0.27.0 go-module -go.opentelemetry.io/otel/metric v1.21.0 go-module (+1 duplicate) -go.opentelemetry.io/otel/sdk v1.21.0 go-module (+1 duplicate) +go.opentelemetry.io/otel/metric v1.19.0 go-module (+1 duplicate) +go.opentelemetry.io/otel/metric v1.21.0 go-module +go.opentelemetry.io/otel/sdk v1.19.0 go-module +go.opentelemetry.io/otel/sdk v1.21.0 go-module go.opentelemetry.io/otel/sdk v1.4.1 go-module go.opentelemetry.io/otel/sdk/metric v1.21.0 go-module -go.opentelemetry.io/otel/trace v1.21.0 go-module (+1 duplicate) +go.opentelemetry.io/otel/trace v1.19.0 go-module (+1 duplicate) +go.opentelemetry.io/otel/trace v1.21.0 go-module go.opentelemetry.io/otel/trace v1.4.1 go-module -go.opentelemetry.io/proto/otlp v0.11.0 go-module go.opentelemetry.io/proto/otlp v0.12.0 go-module -go.opentelemetry.io/proto/otlp v1.0.0 go-module +go.opentelemetry.io/proto/otlp v1.0.0 go-module (+1 duplicate) go.uber.org/atomic v1.9.0 go-module go.uber.org/multierr v1.8.0 go-module go.uber.org/zap v1.21.0 go-module golang.org/x/crypto v0.0.0-20211202192323-5770296d904e go-module -golang.org/x/crypto v0.21.0 go-module (+1 duplicate) +golang.org/x/crypto v0.21.0 go-module +golang.org/x/crypto v0.22.0 go-module golang.org/x/exp v0.0.0-20231006140011-7918f672742d go-module +golang.org/x/mod v0.12.0 go-module golang.org/x/mod v0.17.0 go-module (+3 duplicates) golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module (+1 duplicate) golang.org/x/net v0.0.0-20211216030914-fe4d6282115f go-module golang.org/x/net v0.23.0 go-module (+2 duplicates) -golang.org/x/net v0.8.0 go-module +golang.org/x/net v0.24.0 go-module (+1 duplicate) golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 go-module golang.org/x/oauth2 v0.11.0 go-module (+1 duplicate) golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module -golang.org/x/sync v0.3.0 go-module (+3 duplicates) +golang.org/x/sync v0.3.0 go-module (+4 duplicates) golang.org/x/sync v0.5.0 go-module golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module (+1 duplicate) golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module -golang.org/x/sys v0.18.0 go-module (+6 duplicates) -golang.org/x/sys v0.19.0 go-module (+2 duplicates) -golang.org/x/sys v0.6.0 go-module +golang.org/x/sys v0.18.0 go-module (+4 duplicates) +golang.org/x/sys v0.19.0 go-module (+5 duplicates) golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module golang.org/x/term v0.18.0 go-module -golang.org/x/text v0.14.0 go-module (+2 duplicates) +golang.org/x/text v0.14.0 go-module (+3 duplicates) golang.org/x/text v0.3.7 go-module (+2 duplicates) -golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module (+1 duplicate) +golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module +golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 go-module golang.org/x/time v0.3.0 go-module golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module (+1 duplicate) google.golang.org/api v0.128.0 go-module -google.golang.org/appengine v1.6.7 go-module -google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63 go-module (+4 duplicates) +google.golang.org/appengine v1.6.8 go-module google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa go-module +google.golang.org/genproto v0.0.0-20230920204549-e6e6cdab5c13 go-module (+4 duplicates) google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b go-module +google.golang.org/genproto/googleapis/api v0.0.0-20230913181813-007df8e322eb go-module google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b go-module +google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 go-module (+4 duplicates) google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b go-module google.golang.org/grpc v1.44.0 go-module google.golang.org/grpc v1.59.0 go-module (+5 duplicates) google.golang.org/protobuf v1.27.1 go-module (+1 duplicate) google.golang.org/protobuf v1.33.0 go-module (+5 duplicates) gopd 1.0.1 npm -gopkg.in/inf.v0 v0.9.1 go-module (+1 duplicate) +gopkg.in/inf.v0 v0.9.1 go-module (+2 duplicates) gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module (+1 duplicate) -gopkg.in/yaml.v2 v2.4.0 go-module (+5 duplicates) +gopkg.in/yaml.v2 v2.4.0 go-module (+6 duplicates) gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b go-module (+1 duplicate) gopkg.in/yaml.v3 v3.0.1 go-module (+1 duplicate) gpg 2.2.27-3ubuntu2.1 deb @@ -580,18 +585,18 @@ json-stringify-nice 1. jsonparse 1.3.1 npm just-diff 6.0.2 npm just-diff-apply 5.5.0 npm -k8s.io/api v0.22.5 go-module +k8s.io/api v0.26.2 go-module k8s.io/apimachinery v0.22.4 go-module -k8s.io/apimachinery v0.22.5 go-module -k8s.io/apiserver v0.22.5 go-module +k8s.io/apimachinery v0.26.2 go-module (+1 duplicate) +k8s.io/apiserver v0.26.2 go-module k8s.io/client-go v0.22.4 go-module -k8s.io/client-go v0.22.5 go-module -k8s.io/component-base v0.22.5 go-module -k8s.io/cri-api v0.25.0 go-module -k8s.io/klog/v2 v2.30.0 go-module (+1 duplicate) -k8s.io/klog/v2 v2.90.1 go-module -k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b go-module +k8s.io/client-go v0.26.2 go-module +k8s.io/component-base v0.26.2 go-module +k8s.io/cri-api v0.27.1 go-module +k8s.io/klog/v2 v2.30.0 go-module +k8s.io/klog/v2 v2.90.1 go-module (+1 duplicate) k8s.io/utils v0.0.0-20211116205334-6203023598ed go-module +k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 go-module kasm-wizard 0.0.1 npm libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.12 deb @@ -828,10 +833,11 @@ shebang-command 2. shebang-regex 3.0.0 npm side-channel 1.0.6 npm signal-exit 4.1.0 npm -sigs.k8s.io/structured-merge-diff/v4 v4.1.2 go-module +sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 go-module sigs.k8s.io/structured-merge-diff/v4 v4.2.1 go-module -sigs.k8s.io/yaml v1.2.0 go-module (+1 duplicate) -sigs.k8s.io/yaml v1.3.0 go-module (+3 duplicates) +sigs.k8s.io/structured-merge-diff/v4 v4.2.3 go-module +sigs.k8s.io/yaml v1.2.0 go-module +sigs.k8s.io/yaml v1.3.0 go-module (+5 duplicates) sigstore 2.3.0 npm smart-buffer 4.2.0 npm socket.io 4.7.5 npm @@ -863,8 +869,8 @@ supports-color 9. systeminformation 5.22.11 npm sysvinit-utils 3.01-1ubuntu1 deb tags.cncf.io/container-device-interface v0.7.1 go-module (+2 duplicates) -tags.cncf.io/container-device-interface v0.7.2 go-module -tags.cncf.io/container-device-interface/specs-go v0.7.0 go-module (+3 duplicates) +tags.cncf.io/container-device-interface v0.7.2 go-module (+1 duplicate) +tags.cncf.io/container-device-interface/specs-go v0.7.0 go-module (+4 duplicates) tar 1.34+dfsg-1ubuntu0.1.22.04.2 deb tar 6.2.1 npm tar-fs 2.0.1 npm From b334e6c82341a4664355f6e7ee0bccdfa3d0a434 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 2 Jul 2024 21:42:50 +0000 Subject: [PATCH 228/337] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ef79cda..4ee111c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.14.8 npm +@types/node 20.14.9 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -112,8 +112,8 @@ destroy 1. diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:27.0.1-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:27.0.1-1~ubuntu.22.04~jammy deb +docker-ce 5:27.0.3-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:27.0.3-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -239,12 +239,12 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.6.0 go-module github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v27.0.1 go-module +github.com/docker/cli/cmd/docker v27.0.3 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v27.0.1 go-module (+1 duplicate) +github.com/docker/docker v27.0.3 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -780,7 +780,7 @@ object-assign 4. object-inspect 1.13.2 npm on-finished 2.4.1 npm once 1.4.0 npm -openssl 3.0.2-0ubuntu1.15 deb +openssl 3.0.2-0ubuntu1.16 deb p-map 4.0.0 npm pacote 18.0.3 npm parse-conflict-json 3.0.1 npm From 004ad84efa0c8916c75b75f459245453667fb475 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 5 Jul 2024 03:41:36 +0000 Subject: [PATCH 229/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4ee111c..9b07094 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -702,7 +702,7 @@ libsmartcols1 2. libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.3 deb -libssl3 3.0.2-0ubuntu1.15 deb +libssl3 3.0.2-0ubuntu1.16 deb libstdc++6 12.3.0-1ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.12 deb libtasn1-6 4.18.0-4build1 deb From bd2cb954ea2105bf0fc8d6221cfbd33000cfd482 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 6 Jul 2024 10:39:27 +0000 Subject: [PATCH 230/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9b07094..b93d3ef 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.14.9 npm +@types/node 20.14.10 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 61b647d58772f5fe2d8e2603ccbe90751b272df3 Mon Sep 17 00:00:00 2001 From: thelamer <ryankuba@gmail.com> Date: Mon, 8 Jul 2024 20:37:37 -0400 Subject: [PATCH 231/337] update develop to be functional for 1.16 --- Dockerfile | 3 +- Dockerfile.aarch64 | 3 +- root/etc/docker/daemon.json | 8 ++++++ .../s6-overlay/s6-rc.d/init-config-kasm/run | 8 ++++++ root/gpuinfo.sh | 28 ++++++++++++++++++- 5 files changed, 47 insertions(+), 3 deletions(-) create mode 100644 root/etc/docker/daemon.json diff --git a/Dockerfile b/Dockerfile index b7355a2..9ccc70b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,16 +34,17 @@ RUN \ containerd.io \ docker-ce \ docker-ce-cli \ - drm-info \ e2fsprogs \ fuse-overlayfs \ g++ \ gcc \ + iproute2 \ iptables \ jq \ lsof \ make \ nodejs \ + nvidia-container-toolkit \ nvidia-docker2 \ openssl \ pigz \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index acf4a4d..162b3b7 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -34,16 +34,17 @@ RUN \ containerd.io \ docker-ce \ docker-ce-cli \ - drm-info \ e2fsprogs \ fuse-overlayfs \ g++ \ gcc \ + iproute2 \ iptables \ jq \ lsof \ make \ nodejs \ + nvidia-container-toolkit \ nvidia-docker2 \ openssl \ pigz \ diff --git a/root/etc/docker/daemon.json b/root/etc/docker/daemon.json new file mode 100644 index 0000000..c561d62 --- /dev/null +++ b/root/etc/docker/daemon.json @@ -0,0 +1,8 @@ +{ + "runtimes": { + "nvidia": { + "args": [], + "path": "nvidia-container-runtime" + } + } +} diff --git a/root/etc/s6-overlay/s6-rc.d/init-config-kasm/run b/root/etc/s6-overlay/s6-rc.d/init-config-kasm/run index 8874fb8..95d4ae2 100755 --- a/root/etc/s6-overlay/s6-rc.d/init-config-kasm/run +++ b/root/etc/s6-overlay/s6-rc.d/init-config-kasm/run @@ -18,3 +18,11 @@ if [ ! -f "/opt/kasm/certs/kasm_wizard.crt" ]; then -out /opt/kasm/certs/kasm_wizard.crt \ -subj "/C=US/ST=VA/L=None/O=None/OU=DoFu/CN=$(hostname)/emailAddress=none@none.none" fi + +# Create plugin directory +if [ ! -d "/opt/docker-plugins" ]; then + mkdir -p /opt/docker-plugins + ln -s /opt/docker-plugins /var/lib/docker-plugins + mkdir -p /var/lib/docker-plugins/rclone/config + mkdir -p /var/lib/docker-plugins/rclone/cache +fi diff --git a/root/gpuinfo.sh b/root/gpuinfo.sh index 984df4e..234731e 100755 --- a/root/gpuinfo.sh +++ b/root/gpuinfo.sh @@ -1,2 +1,28 @@ #! /bin/bash -drm_info -j 2>/dev/null| jq -c 'with_entries(.value |= .driver.desc)' + +# Get list of drm devices +IFS=$'\n' +CARDS=$(ls -la /sys/class/drm/renderD*/device/driver 2>/dev/null | awk '{print $11}' | awk -F/ '{print $NF}') +if [ -z "$CARDS" ]; then + echo '{}' + exit 0 +fi +for CARD in ${CARDS}; do + LAST_CARD=${CARD} +done + +# Add them to the json string +JSON='{' +COUNTER=0 +for CARD in $CARDS; do + JSON="${JSON}\"/dev/dri/card$COUNTER\":\"${CARD^^}\"" + if [ ${CARD} == ${LAST_CARD} ]; then + JSON="${JSON}}" + else + JSON="${JSON}," + fi + COUNTER=$(( COUNTER + 1 )) +done + +# Print json string +echo $JSON From 462c8250c9bdce12229378fe2077042b34fa85c2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 Jul 2024 00:42:40 +0000 Subject: [PATCH 232/337] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b93d3ef..ecee076 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -117,7 +117,6 @@ docker-ce-cli 5: docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb -drm-info 2.2.0-2 deb e2fsprogs 1.46.5-2ubuntu1.1 deb eastasianwidth 0.2.0 npm ee-first 1.1.1 npm @@ -569,6 +568,7 @@ init-system-helpers 1. ip-address 9.0.5 npm ip-regex 5.0.0 npm ipaddr.js 1.9.1 npm +iproute2 5.15.0-1ubuntu2 deb iptables 1.8.7-1ubuntu5.2 deb is-cidr 5.0.5 npm is-core-module 2.13.1 npm @@ -605,6 +605,7 @@ libattr1 1: libaudit-common 1:3.0.7-1build1 deb libaudit1 1:3.0.7-1build1 deb libblkid1 2.37.2-4ubuntu3.4 deb +libbpf0 1:0.5.0-1ubuntu22.04.1 deb libbrotli1 1.0.9-2build6 deb libbsd0 0.11.5-1 deb libbz2-1.0 1.0.8-5build1 deb @@ -612,15 +613,15 @@ libc-bin 2. libc6 2.35-0ubuntu3.8 deb libcap-ng0 0.7.9-2.2build3 deb libcap2 1:2.44-1ubuntu0.22.04.1 deb +libcap2-bin 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb libcrypt1 1:4.4.27-1 deb libcurl4 7.81.0-1ubuntu1.16 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb -libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb -libdrm2 2.4.113-2~ubuntu0.22.04.1 deb libedit2 3.1-20210910-1build1 deb +libelf1 0.186-1build1 deb libexpat1 2.4.7-1ubuntu0.3 deb libext2fs2 1.46.5-2ubuntu1.1 deb libffi8 3.4.2-4 deb @@ -638,7 +639,6 @@ libinih1 53 libip4tc2 1.8.7-1ubuntu5.2 deb libip6tc2 1.8.7-1ubuntu5.2 deb libjq1 1.6-2.1ubuntu3 deb -libjson-c5 0.15-3~ubuntu1.22.04.2 deb libk5crypto3 1.19.2-2ubuntu0.3 deb libkeyutils1 1.6.1-2ubuntu3 deb libkrb5-3 1.19.2-2ubuntu0.3 deb @@ -759,7 +759,7 @@ netcat 1. netcat-openbsd 1.218-4ubuntu1 deb node-gyp 10.1.0 npm node-pty 0.10.1 npm -nodejs 18.20.3-1nodesource1 deb +nodejs 18.20.4-1nodesource1 deb nopt 7.2.0 npm normalize-package-data 6.0.0 npm npm 10.7.0 npm From eeee9de950fab0704d18a9b5d2cf0e6674732ab2 Mon Sep 17 00:00:00 2001 From: thelamer <ryankuba@gmail.com> Date: Mon, 8 Jul 2024 21:09:05 -0400 Subject: [PATCH 233/337] need to check for the symlink to facilitate destruction and creation --- root/etc/s6-overlay/s6-rc.d/init-config-kasm/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/etc/s6-overlay/s6-rc.d/init-config-kasm/run b/root/etc/s6-overlay/s6-rc.d/init-config-kasm/run index 95d4ae2..f696272 100755 --- a/root/etc/s6-overlay/s6-rc.d/init-config-kasm/run +++ b/root/etc/s6-overlay/s6-rc.d/init-config-kasm/run @@ -20,7 +20,7 @@ if [ ! -f "/opt/kasm/certs/kasm_wizard.crt" ]; then fi # Create plugin directory -if [ ! -d "/opt/docker-plugins" ]; then +if [ ! -L "/var/lib/docker-plugins" ]; then mkdir -p /opt/docker-plugins ln -s /opt/docker-plugins /var/lib/docker-plugins mkdir -p /var/lib/docker-plugins/rclone/config From 156dab2729b47f6faf4f1e90697a098da1c0e3bb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 Jul 2024 21:42:16 +0000 Subject: [PATCH 234/337] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ecee076..7a7516d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -686,8 +686,8 @@ libpcre3 2: libprocps8 2:3.3.17-6ubuntu2.1 deb libpsl5 0.21.0-1.2build2 deb libpython3-stdlib 3.10.6-1~22.04 deb -libpython3.10-minimal 3.10.12-1~22.04.3 deb -libpython3.10-stdlib 3.10.12-1~22.04.3 deb +libpython3.10-minimal 3.10.12-1~22.04.4 deb +libpython3.10-stdlib 3.10.12-1~22.04.4 deb libreadline8 8.1.2-1 deb librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb @@ -807,8 +807,8 @@ publicsuffix 20 pump 3.0.0 npm python3 3.10.6-1~22.04 deb python3-minimal 3.10.6-1~22.04 deb -python3.10 3.10.12-1~22.04.3 deb -python3.10-minimal 3.10.12-1~22.04.3 deb +python3.10 3.10.12-1~22.04.4 deb +python3.10-minimal 3.10.12-1~22.04.4 deb qrcode-terminal 0.12.0 npm qs 6.11.0 npm range-parser 1.2.1 npm From 1932a6bfc253c69fb72e48f5f0bafde4a459f62e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 10 Jul 2024 20:38:56 +0000 Subject: [PATCH 235/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7a7516d..d42f314 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -882,7 +882,7 @@ treeverse 3. tuf-js 2.2.0 npm tweetnacl 0.14.5 npm type-is 1.6.18 npm -tzdata 2024a-0ubuntu0.22.04 deb +tzdata 2024a-0ubuntu0.22.04.1 deb ubuntu-keyring 2021.03.26 deb uidmap 1:4.8.1-2ubuntu2.2 deb undici-types 5.26.5 npm From f96a50b2e89f7e5532f065b632614dab0e34fd11 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Jul 2024 05:36:40 +0000 Subject: [PATCH 236/337] Bot Updating Templated Files --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index bd3865f..0e1331f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -245,7 +245,7 @@ pipeline { -v ${WORKSPACE}:/mnt \ -e AWS_ACCESS_KEY_ID=\"${S3_KEY}\" \ -e AWS_SECRET_ACCESS_KEY=\"${S3_SECRET}\" \ - ghcr.io/linuxserver/baseimage-alpine:3.19 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\ + ghcr.io/linuxserver/baseimage-alpine:3.20 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\ apk add --no-cache python3 && \ python3 -m venv /lsiopy && \ pip install --no-cache-dir -U pip && \ @@ -352,7 +352,7 @@ pipeline { fi echo "Starting Stage 4 - External repo updates: Docs, Unraid Template and Readme Sync to Docker Hub" mkdir -p ${TEMPDIR}/docs - git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/docs/docker-documentation + git clone --depth=1 https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/docs/docker-documentation if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md ${TEMPDIR}/docs/docker-documentation/docs/images/ cd ${TEMPDIR}/docs/docker-documentation @@ -669,7 +669,7 @@ pipeline { set -e docker pull ghcr.io/linuxserver/ci:latest if [ "${MULTIARCH}" == "true" ]; then - docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} --platform=arm64 docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} fi docker run --rm \ @@ -760,7 +760,7 @@ pipeline { echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin if [ "${CI}" == "false" ]; then - docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} --platform=arm64 docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} fi for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do From 6c7e9cf7f2b79949186a8bcb4ee345e5dcb2b989 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Jul 2024 05:38:00 +0000 Subject: [PATCH 237/337] Bot Updating Templated Files --- .github/workflows/permissions.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/permissions.yml b/.github/workflows/permissions.yml index 1447bc5..02e1bdb 100755 --- a/.github/workflows/permissions.yml +++ b/.github/workflows/permissions.yml @@ -5,6 +5,8 @@ on: - '**/run' - '**/finish' - '**/check' + - 'root/migrations/*' + jobs: permission_check: uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1 From d118fd922c9419584badce4ab7d365eb1fe42c0d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Jul 2024 05:42:41 +0000 Subject: [PATCH 238/337] Bot Updating Package Versions --- package_versions.txt | 1821 +++++++++++++++++++++--------------------- 1 file changed, 912 insertions(+), 909 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d42f314..5adf0f4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,909 +1,912 @@ -NAME VERSION TYPE -1to2 1.0.0 npm -@balena/dockerignore 1.0.2 npm -@isaacs/cliui 8.0.2 npm -@isaacs/string-locale-compare 1.1.0 npm -@npmcli/agent 2.2.2 npm -@npmcli/arborist 7.5.1 npm -@npmcli/config 8.3.1 npm -@npmcli/fs 3.1.0 npm -@npmcli/git 5.0.6 npm -@npmcli/installed-package-contents 2.1.0 npm -@npmcli/map-workspaces 3.0.6 npm -@npmcli/metavuln-calculator 7.1.0 npm -@npmcli/name-from-folder 2.0.0 npm -@npmcli/node-gyp 3.0.0 npm -@npmcli/package-json 5.1.0 npm -@npmcli/promise-spawn 7.0.1 npm -@npmcli/query 3.1.0 npm -@npmcli/redact 2.0.0 npm -@npmcli/run-script 8.1.0 npm -@pkgjs/parseargs 0.11.0 npm -@sigstore/bundle 2.3.1 npm -@sigstore/core 1.1.0 npm -@sigstore/protobuf-specs 0.3.1 npm -@sigstore/sign 2.3.0 npm -@sigstore/tuf 2.3.2 npm -@sigstore/verify 1.2.0 npm -@socket.io/component-emitter 3.1.2 npm -@tufjs/canonical-json 2.0.0 npm -@tufjs/models 2.0.0 npm -@types/cookie 0.4.1 npm -@types/cors 2.8.17 npm -@types/node 20.14.10 npm -abbrev 2.0.0 npm -accepts 1.3.8 npm -adduser 3.118ubuntu5 deb -agent-base 7.1.1 npm -aggregate-error 3.1.0 npm -ansi-regex 5.0.1 npm -ansi-regex 6.0.1 npm (+1 duplicate) -ansi-styles 4.3.0 npm -ansi-styles 6.2.1 npm -aproba 2.0.0 npm -apt 2.4.12 deb -apt-transport-https 2.4.12 deb -apt-utils 2.4.12 deb -archy 1.0.0 npm -argparse 2.0.1 npm -array-flatten 1.1.1 npm -asn1 0.2.6 npm -balanced-match 1.0.2 npm -base-files 12ubuntu4.6 deb -base-passwd 3.5.52build1 deb -base64-js 1.5.1 npm -base64id 2.0.0 npm -bash 5.1-6ubuntu1.1 deb -bcrypt-pbkdf 1.0.2 npm -bin-links 4.0.3 npm -binary-extensions 2.3.0 npm -bl 4.1.0 npm -body-parser 1.20.2 npm -brace-expansion 2.0.1 npm -bsdutils 1:2.37.2-4ubuntu3.4 deb -btrfs-progs 5.16.2-1 deb -buffer 5.7.1 npm -buildcheck 0.0.6 npm -builtins 5.1.0 npm -bytes 3.1.2 npm -ca-certificates 20230311ubuntu0.22.04.1 deb -cacache 18.0.2 npm -call-bind 1.0.7 npm -catatonit 0.1.7-1 deb -chalk 5.3.0 npm -chownr 1.1.4 npm -chownr 2.0.0 npm -ci-info 4.0.0 npm -cidr-regex 4.0.5 npm -clean-stack 2.2.0 npm -cli-columns 4.0.0 npm -cloud.google.com/go/compute/metadata v0.2.3 go-module -cloud.google.com/go/logging v1.8.1 go-module -cloud.google.com/go/longrunning v0.5.2 go-module -cmd-shim 6.0.2 npm -code.cloudfoundry.org/clock v1.1.0 go-module -color-convert 2.0.1 npm -color-name 1.1.4 npm -common-ancestor-path 1.0.1 npm -containerd.io 1.7.18-1 deb -content-disposition 0.5.4 npm -content-type 1.0.5 npm -cookie 0.4.2 npm -cookie 0.6.0 npm -cookie-signature 1.0.6 npm -corepack 0.28.0 npm -coreutils 8.32-4.1ubuntu1.2 deb -cors 2.8.5 npm -cpu-features 0.0.10 npm -cron 3.0pl1-137ubuntu3 deb -cross-spawn 7.0.3 npm -cssesc 3.0.0 npm -curl 7.81.0-1ubuntu1.16 deb -dario.cat/mergo v1.0.0 go-module (+1 duplicate) -dash 0.5.11+git20210903+057cd650a4ed-3build1 deb -debconf 1.5.79ubuntu1 deb -debianutils 5.5-1ubuntu2 deb -debug 2.6.9 npm (+3 duplicates) -debug 4.3.4 npm -debug 4.3.5 npm -define-data-property 1.1.4 npm -depd 2.0.0 npm -destroy 1.2.0 npm -diff 5.2.0 npm -diffutils 1:3.8-0ubuntu2 deb -dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:27.0.3-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:27.0.3-1~ubuntu.22.04~jammy deb -docker-modem 3.0.8 npm -dockerode 3.3.5 npm -dpkg 1.21.1ubuntu2.3 deb -e2fsprogs 1.46.5-2ubuntu1.1 deb -eastasianwidth 0.2.0 npm -ee-first 1.1.1 npm -emoji-regex 8.0.0 npm -emoji-regex 9.2.2 npm (+1 duplicate) -encodeurl 1.0.2 npm -encoding 0.1.13 npm -end-of-stream 1.4.4 npm -engine.io 6.5.5 npm -engine.io-parser 5.2.2 npm -env-paths 2.2.1 npm -err-code 2.0.3 npm -es-define-property 1.0.0 npm -es-errors 1.3.0 npm -escape-html 1.0.3 npm -etag 1.8.1 npm -exponential-backoff 3.1.1 npm -express 4.19.2 npm -fastest-levenshtein 1.0.16 npm -finalhandler 1.2.0 npm -findutils 4.8.0-1ubuntu3 deb -foreground-child 3.1.1 npm -forwarded 0.2.0 npm -fresh 0.5.2 npm -fs-constants 1.0.0 npm -fs-minipass 2.1.0 npm -fs-minipass 3.0.3 npm -function-bind 1.1.2 npm (+1 duplicate) -fuse-overlayfs 1.7.1-1 deb -fuse3 3.10.5-1build1 deb -gcc-12-base 12.3.0-1ubuntu1~22.04 deb -get-intrinsic 1.2.4 npm -github.com/AlecAivazis/survey/v2 v2.3.2 go-module -github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module -github.com/Masterminds/semver v1.5.0 go-module -github.com/Microsoft/hcsshim v0.11.5 go-module (+2 duplicates) -github.com/NVIDIA/go-nvlib v0.2.0 go-module (+2 duplicates) -github.com/NVIDIA/go-nvml v0.12.0-3 go-module (+2 duplicates) -github.com/NVIDIA/nvidia-container-toolkit v1.15.0 go-module (+2 duplicates) -github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module -github.com/a8m/envsubst v1.3.0 go-module (+1 duplicate) -github.com/agext/levenshtein v1.2.3 go-module -github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412 go-module -github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092 go-module -github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 go-module -github.com/armon/go-metrics v0.4.1 go-module -github.com/aws/aws-sdk-go-v2 v1.24.1 go-module -github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.5.4 go-module -github.com/aws/aws-sdk-go-v2/config v1.26.6 go-module -github.com/aws/aws-sdk-go-v2/credentials v1.16.16 go-module -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.11 go-module -github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.10 go-module -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.10 go-module -github.com/aws/aws-sdk-go-v2/internal/ini v1.7.3 go-module -github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.32.0 go-module -github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.4 go-module -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.10 go-module -github.com/aws/aws-sdk-go-v2/service/sso v1.18.7 go-module -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.21.7 go-module -github.com/aws/aws-sdk-go-v2/service/sts v1.26.7 go-module -github.com/aws/smithy-go v1.19.0 go-module -github.com/beorn7/perks v1.0.1 go-module (+2 duplicates) -github.com/bits-and-blooms/bitset v1.13.0 go-module -github.com/blang/semver/v4 v4.0.0 go-module -github.com/buger/goterm v1.0.4 go-module -github.com/cenkalti/backoff/v4 v4.2.1 go-module (+1 duplicate) -github.com/cespare/xxhash/v2 v2.1.2 go-module -github.com/cespare/xxhash/v2 v2.2.0 go-module (+1 duplicate) -github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module -github.com/cilium/ebpf v0.12.3 go-module -github.com/cilium/ebpf v0.7.0 go-module -github.com/cilium/ebpf v0.9.1 go-module (+3 duplicates) -github.com/cloudflare/cfssl v1.6.4 go-module -github.com/cnabio/cnab-go v0.10.0-beta1 go-module -github.com/cnabio/cnab-to-oci v0.3.1-beta1 go-module -github.com/compose-spec/compose-go v1.2.4 go-module -github.com/container-storage-interface/spec v1.5.0 go-module -github.com/containerd/aufs v1.0.0 go-module -github.com/containerd/btrfs/v2 v2.0.0 go-module -github.com/containerd/cgroups v1.1.0 go-module (+1 duplicate) -github.com/containerd/cgroups/v3 v3.0.2 go-module (+3 duplicates) -github.com/containerd/cgroups/v3 v3.0.3 go-module -github.com/containerd/console v1.0.3 go-module (+6 duplicates) -github.com/containerd/console v1.0.4 go-module -github.com/containerd/containerd v1.6.2 go-module -github.com/containerd/containerd v1.7.18 go-module (+5 duplicates) -github.com/containerd/continuity v0.2.2 go-module -github.com/containerd/continuity v0.4.2 go-module (+4 duplicates) -github.com/containerd/continuity v0.4.3 go-module -github.com/containerd/errdefs v0.1.0 go-module (+5 duplicates) -github.com/containerd/fifo v1.1.0 go-module (+5 duplicates) -github.com/containerd/go-cni v1.1.9 go-module (+2 duplicates) -github.com/containerd/go-runc v1.0.0 go-module (+4 duplicates) -github.com/containerd/go-runc v1.1.0 go-module -github.com/containerd/imgcrypt v1.1.8 go-module -github.com/containerd/log v0.1.0 go-module (+6 duplicates) -github.com/containerd/nri v0.6.1 go-module -github.com/containerd/nydus-snapshotter v0.13.7 go-module -github.com/containerd/stargz-snapshotter/estargz v0.15.1 go-module -github.com/containerd/ttrpc v1.1.0 go-module -github.com/containerd/ttrpc v1.2.4 go-module (+4 duplicates) -github.com/containerd/ttrpc v1.2.5 go-module -github.com/containerd/typeurl v1.0.2 go-module (+1 duplicate) -github.com/containerd/typeurl/v2 v2.1.1 go-module (+5 duplicates) -github.com/containerd/zfs v1.1.0 go-module -github.com/containernetworking/cni v1.1.2 go-module (+2 duplicates) -github.com/containernetworking/plugins v1.2.0 go-module -github.com/containernetworking/plugins v1.4.0 go-module -github.com/containers/ocicrypt v1.1.10 go-module -github.com/coreos/go-systemd/v22 v22.3.2 go-module -github.com/coreos/go-systemd/v22 v22.5.0 go-module (+4 duplicates) -github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module -github.com/cpuguy83/go-md2man/v2 v2.0.2 go-module -github.com/cyphar/filepath-securejoin v0.2.4 go-module (+1 duplicate) -github.com/davecgh/go-spew v1.1.1 go-module (+2 duplicates) -github.com/deckarep/golang-set/v2 v2.3.0 go-module -github.com/dimchansky/utfbom v1.1.1 go-module -github.com/distribution/distribution/v3 v3.0.0-20210316161203-a01c71e2477e go-module -github.com/distribution/reference v0.6.0 go-module -github.com/docker/buildx v0.8.1 go-module -github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v27.0.3 go-module -github.com/docker/compose/v2 v2.5.0 go-module -github.com/docker/distribution v2.8.0+incompatible go-module -github.com/docker/distribution v2.8.3+incompatible go-module -github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v27.0.3 go-module (+1 duplicate) -github.com/docker/docker-credential-helpers v0.6.4 go-module -github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module -github.com/docker/go-connections v0.4.0 go-module -github.com/docker/go-connections v0.5.0 go-module -github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module (+4 duplicates) -github.com/docker/go-metrics v0.0.1 go-module (+2 duplicates) -github.com/docker/go-units v0.4.0 go-module (+1 duplicate) -github.com/docker/go-units v0.5.0 go-module (+4 duplicates) -github.com/docker/libtrust v0.0.0-20150526203908-9cbd2a1374f4 go-module -github.com/dustin/go-humanize v1.0.0 go-module -github.com/elliotchance/orderedmap v1.4.0 go-module (+1 duplicate) -github.com/emicklei/go-restful/v3 v3.10.1 go-module -github.com/fatih/color v1.13.0 go-module (+1 duplicate) -github.com/felixge/httpsnoop v1.0.2 go-module -github.com/felixge/httpsnoop v1.0.3 go-module (+1 duplicate) -github.com/felixge/httpsnoop v1.0.4 go-module -github.com/fernet/fernet-go v0.0.0-20211208181803-9f70042a33ee go-module -github.com/fluent/fluent-logger-golang v1.9.0 go-module -github.com/fsnotify/fsnotify v1.6.0 go-module (+1 duplicate) -github.com/fsnotify/fsnotify v1.7.0 go-module (+2 duplicates) -github.com/fvbommel/sortorder v1.0.1 go-module -github.com/go-jose/go-jose/v3 v3.0.3 go-module -github.com/go-logr/logr v1.2.2 go-module -github.com/go-logr/logr v1.2.4 go-module (+1 duplicate) -github.com/go-logr/logr v1.3.0 go-module -github.com/go-logr/stdr v1.2.2 go-module (+3 duplicates) -github.com/goccy/go-yaml v1.9.5 go-module (+1 duplicate) -github.com/godbus/dbus/v5 v5.0.6 go-module -github.com/godbus/dbus/v5 v5.1.0 go-module (+4 duplicates) -github.com/gofrs/flock v0.8.0 go-module -github.com/gofrs/flock v0.8.1 go-module -github.com/gogo/googleapis v1.4.1 go-module (+1 duplicate) -github.com/gogo/protobuf v1.3.2 go-module (+6 duplicates) -github.com/golang-jwt/jwt/v4 v4.5.0 go-module -github.com/golang/gddo v0.0.0-20190904175337-72a348e765d2 go-module -github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da go-module -github.com/golang/mock v1.6.0 go-module -github.com/golang/protobuf v1.5.2 go-module -github.com/golang/protobuf v1.5.4 go-module (+5 duplicates) -github.com/google/btree v1.1.2 go-module -github.com/google/certificate-transparency-go v1.1.4 go-module -github.com/google/go-cmp v0.5.7 go-module -github.com/google/go-cmp v0.5.9 go-module (+4 duplicates) -github.com/google/go-cmp v0.6.0 go-module -github.com/google/gofuzz v1.2.0 go-module (+1 duplicate) -github.com/google/s2a-go v0.1.4 go-module -github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module (+1 duplicate) -github.com/google/uuid v1.3.1 go-module (+1 duplicate) -github.com/google/uuid v1.6.0 go-module (+3 duplicates) -github.com/googleapis/enterprise-certificate-proxy v0.2.4 go-module -github.com/googleapis/gax-go/v2 v2.12.0 go-module -github.com/gorilla/mux v1.8.0 go-module -github.com/gorilla/mux v1.8.1 go-module -github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module (+1 duplicate) -github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module (+1 duplicate) -github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module -github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 go-module (+1 duplicate) -github.com/hashicorp/errwrap v1.1.0 go-module (+6 duplicates) -github.com/hashicorp/go-immutable-radix v1.3.1 go-module -github.com/hashicorp/go-memdb v1.3.2 go-module -github.com/hashicorp/go-msgpack v0.5.5 go-module -github.com/hashicorp/go-multierror v1.1.1 go-module (+6 duplicates) -github.com/hashicorp/go-sockaddr v1.0.2 go-module -github.com/hashicorp/go-version v1.3.0 go-module -github.com/hashicorp/golang-lru v0.5.4 go-module -github.com/hashicorp/memberlist v0.4.0 go-module -github.com/hashicorp/serf v0.8.5 go-module -github.com/imdario/mergo v0.3.12 go-module -github.com/in-toto/in-toto-golang v0.5.0 go-module -github.com/intel/goresctrl v0.3.0 go-module (+1 duplicate) -github.com/ishidawataru/sctp v0.0.0-20230406120618-7ff4192f6ff2 go-module (+1 duplicate) -github.com/jinzhu/copier v0.3.5 go-module (+1 duplicate) -github.com/jmoiron/sqlx v1.3.3 go-module -github.com/json-iterator/go v1.1.12 go-module (+1 duplicate) -github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module -github.com/klauspost/compress v1.15.0 go-module -github.com/klauspost/compress v1.16.0 go-module (+3 duplicates) -github.com/klauspost/compress v1.17.4 go-module -github.com/klauspost/cpuid/v2 v2.0.4 go-module (+1 duplicate) -github.com/magiconair/properties v1.8.6 go-module (+1 duplicate) -github.com/mattn/go-colorable v0.1.12 go-module (+2 duplicates) -github.com/mattn/go-isatty v0.0.14 go-module (+2 duplicates) -github.com/mattn/go-shellwords v1.0.12 go-module -github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 go-module -github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module (+1 duplicate) -github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module -github.com/miekg/dns v1.1.57 go-module -github.com/miekg/pkcs11 v1.1.1 go-module -github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module (+1 duplicate) -github.com/minio/sha256-simd v1.0.0 go-module (+1 duplicate) -github.com/mistifyio/go-zfs/v3 v3.0.1 go-module (+1 duplicate) -github.com/mitchellh/copystructure v1.2.0 go-module -github.com/mitchellh/hashstructure/v2 v2.0.2 go-module -github.com/mitchellh/mapstructure v1.4.3 go-module -github.com/mitchellh/reflectwalk v1.0.2 go-module -github.com/moby/buildkit v0.10.0-rc2.0.20220308185020-fdecd0ae108b go-module -github.com/moby/buildkit v0.14.1 go-module -github.com/moby/docker-image-spec v1.3.1 go-module -github.com/moby/ipvs v1.1.0 go-module -github.com/moby/locker v1.0.1 go-module (+3 duplicates) -github.com/moby/patternmatcher v0.6.0 go-module -github.com/moby/pubsub v1.0.0 go-module -github.com/moby/spdystream v0.2.0 go-module -github.com/moby/swarmkit/v2 v2.0.0-20240611172349-ea1a7cec35cb go-module -github.com/moby/sys/mount v0.3.3 go-module -github.com/moby/sys/mountinfo v0.5.0 go-module -github.com/moby/sys/mountinfo v0.6.2 go-module (+4 duplicates) -github.com/moby/sys/mountinfo v0.7.1 go-module -github.com/moby/sys/sequential v0.5.0 go-module -github.com/moby/sys/signal v0.6.0 go-module -github.com/moby/sys/signal v0.7.0 go-module (+2 duplicates) -github.com/moby/sys/symlink v0.2.0 go-module (+2 duplicates) -github.com/moby/sys/user v0.1.0 go-module (+4 duplicates) -github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 go-module -github.com/moby/term v0.5.0 go-module -github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module (+1 duplicate) -github.com/modern-go/reflect2 v1.0.2 go-module (+1 duplicate) -github.com/morikuni/aec v1.0.0 go-module (+1 duplicate) -github.com/mrunalp/fileutils v0.5.1 go-module -github.com/opencontainers/go-digest v1.0.0 go-module (+5 duplicates) -github.com/opencontainers/image-spec v1.0.2 go-module -github.com/opencontainers/image-spec v1.1.0 go-module (+4 duplicates) -github.com/opencontainers/runc v1.1.0 go-module -github.com/opencontainers/runc v1.1.13 go-module -github.com/opencontainers/runc v1.1.13-0-g58aa920 go-module -github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module -github.com/opencontainers/runtime-spec v1.1.0 go-module (+4 duplicates) -github.com/opencontainers/runtime-spec v1.2.0 go-module (+3 duplicates) -github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module (+4 duplicates) -github.com/opencontainers/selinux v1.10.0 go-module -github.com/opencontainers/selinux v1.11.0 go-module (+2 duplicates) -github.com/package-url/packageurl-go v0.1.1-0.20220428063043-89078438f170 go-module -github.com/pelletier/go-toml v1.9.4 go-module -github.com/pelletier/go-toml v1.9.5 go-module (+5 duplicates) -github.com/philhofer/fwd v1.1.2 go-module -github.com/pkg/errors v0.9.1 go-module (+6 duplicates) -github.com/pmezard/go-difflib v1.0.0 go-module -github.com/prometheus/client_golang v1.12.1 go-module -github.com/prometheus/client_golang v1.14.0 go-module -github.com/prometheus/client_golang v1.17.0 go-module -github.com/prometheus/client_model v0.2.0 go-module -github.com/prometheus/client_model v0.3.0 go-module -github.com/prometheus/client_model v0.5.0 go-module -github.com/prometheus/common v0.32.1 go-module -github.com/prometheus/common v0.37.0 go-module -github.com/prometheus/common v0.44.0 go-module -github.com/prometheus/procfs v0.12.0 go-module -github.com/prometheus/procfs v0.7.3 go-module -github.com/prometheus/procfs v0.8.0 go-module -github.com/qri-io/jsonpointer v0.1.0 go-module -github.com/qri-io/jsonschema v0.1.1 go-module -github.com/rootless-containers/rootlesskit/v2 v2.0.2 go-module -github.com/russross/blackfriday/v2 v2.0.1 go-module -github.com/russross/blackfriday/v2 v2.1.0 go-module -github.com/sanathkr/go-yaml v0.0.0-20170819195128-ed9d249f429b go-module -github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 go-module -github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 go-module -github.com/secure-systems-lab/go-securesystemslib v0.4.0 go-module -github.com/shibumi/go-pathspec v1.3.0 go-module -github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module -github.com/sirupsen/logrus v1.8.1 go-module (+1 duplicate) -github.com/sirupsen/logrus v1.9.3 go-module (+9 duplicates) -github.com/spdx/tools-golang v0.5.3 go-module -github.com/spf13/cobra v1.4.0 go-module (+2 duplicates) -github.com/spf13/cobra v1.8.1 go-module -github.com/spf13/pflag v1.0.5 go-module (+4 duplicates) -github.com/stefanberger/go-pkcs11uri v0.0.0-20230803200340-78284954bff6 go-module -github.com/stretchr/testify v1.8.4 go-module -github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module (+5 duplicates) -github.com/tchap/go-patricia/v2 v2.3.1 go-module -github.com/theupdateframework/notary v0.6.1 go-module -github.com/timtadh/data-structures v0.5.3 go-module (+1 duplicate) -github.com/timtadh/lexmachine v0.2.2 go-module (+1 duplicate) -github.com/tinylib/msgp v1.1.8 go-module -github.com/tonistiigi/fsutil v0.0.0-20220315205639-9ed612626da3 go-module -github.com/tonistiigi/fsutil v0.0.0-20240424095704-91a3fc46842c go-module -github.com/tonistiigi/go-actions-cache v0.0.0-20240320205438-9794bdbb2fb4 go-module -github.com/tonistiigi/go-archvariant v1.0.0 go-module -github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module (+1 duplicate) -github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f go-module -github.com/urfave/cli v1.22.1 go-module -github.com/urfave/cli v1.22.12 go-module (+1 duplicate) -github.com/urfave/cli/v2 v2.27.1 go-module -github.com/vbatts/tar-split v0.11.5 go-module -github.com/vishvananda/netlink v1.1.0 go-module -github.com/vishvananda/netlink v1.2.1-beta.2 go-module (+1 duplicate) -github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df go-module -github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f go-module -github.com/vishvananda/netns v0.0.4 go-module -github.com/weppos/publicsuffix-go v0.15.1-0.20210511084619-b1f36a2d6c0b go-module -github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb go-module -github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module -github.com/xeipuuv/gojsonschema v1.2.0 go-module -github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 go-module -github.com/zmap/zcrypto v0.0.0-20210511125630-18f1e0152cfc go-module -github.com/zmap/zlint/v3 v3.1.0 go-module -glob 10.3.12 npm -gnupg 2.2.27-3ubuntu2.1 deb -gnupg-l10n 2.2.27-3ubuntu2.1 deb -gnupg-utils 2.2.27-3ubuntu2.1 deb -go.etcd.io/bbolt v1.3.10 go-module -go.etcd.io/bbolt v1.3.7 go-module -go.etcd.io/etcd/client/pkg/v3 v3.5.6 go-module -go.etcd.io/etcd/pkg/v3 v3.5.6 go-module -go.etcd.io/etcd/raft/v3 v3.5.6 go-module -go.etcd.io/etcd/server/v3 v3.5.6 go-module -go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module -go.opencensus.io v0.24.0 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.29.0 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.45.0 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.29.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.46.1 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.29.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 go-module (+1 duplicate) -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 go-module -go.opentelemetry.io/otel v1.19.0 go-module (+1 duplicate) -go.opentelemetry.io/otel v1.21.0 go-module -go.opentelemetry.io/otel v1.4.1 go-module -go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.42.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.42.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v0.42.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.4.1 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.19.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.21.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.19.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.21.0 go-module -go.opentelemetry.io/otel/internal/metric v0.27.0 go-module -go.opentelemetry.io/otel/metric v0.27.0 go-module -go.opentelemetry.io/otel/metric v1.19.0 go-module (+1 duplicate) -go.opentelemetry.io/otel/metric v1.21.0 go-module -go.opentelemetry.io/otel/sdk v1.19.0 go-module -go.opentelemetry.io/otel/sdk v1.21.0 go-module -go.opentelemetry.io/otel/sdk v1.4.1 go-module -go.opentelemetry.io/otel/sdk/metric v1.21.0 go-module -go.opentelemetry.io/otel/trace v1.19.0 go-module (+1 duplicate) -go.opentelemetry.io/otel/trace v1.21.0 go-module -go.opentelemetry.io/otel/trace v1.4.1 go-module -go.opentelemetry.io/proto/otlp v0.12.0 go-module -go.opentelemetry.io/proto/otlp v1.0.0 go-module (+1 duplicate) -go.uber.org/atomic v1.9.0 go-module -go.uber.org/multierr v1.8.0 go-module -go.uber.org/zap v1.21.0 go-module -golang.org/x/crypto v0.0.0-20211202192323-5770296d904e go-module -golang.org/x/crypto v0.21.0 go-module -golang.org/x/crypto v0.22.0 go-module -golang.org/x/exp v0.0.0-20231006140011-7918f672742d go-module -golang.org/x/mod v0.12.0 go-module -golang.org/x/mod v0.17.0 go-module (+3 duplicates) -golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module (+1 duplicate) -golang.org/x/net v0.0.0-20211216030914-fe4d6282115f go-module -golang.org/x/net v0.23.0 go-module (+2 duplicates) -golang.org/x/net v0.24.0 go-module (+1 duplicate) -golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 go-module -golang.org/x/oauth2 v0.11.0 go-module (+1 duplicate) -golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module -golang.org/x/sync v0.3.0 go-module (+4 duplicates) -golang.org/x/sync v0.5.0 go-module -golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module (+1 duplicate) -golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module -golang.org/x/sys v0.18.0 go-module (+4 duplicates) -golang.org/x/sys v0.19.0 go-module (+5 duplicates) -golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module -golang.org/x/term v0.18.0 go-module -golang.org/x/text v0.14.0 go-module (+3 duplicates) -golang.org/x/text v0.3.7 go-module (+2 duplicates) -golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module -golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 go-module -golang.org/x/time v0.3.0 go-module -golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module (+1 duplicate) -google.golang.org/api v0.128.0 go-module -google.golang.org/appengine v1.6.8 go-module -google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa go-module -google.golang.org/genproto v0.0.0-20230920204549-e6e6cdab5c13 go-module (+4 duplicates) -google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b go-module -google.golang.org/genproto/googleapis/api v0.0.0-20230913181813-007df8e322eb go-module -google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b go-module -google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 go-module (+4 duplicates) -google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b go-module -google.golang.org/grpc v1.44.0 go-module -google.golang.org/grpc v1.59.0 go-module (+5 duplicates) -google.golang.org/protobuf v1.27.1 go-module (+1 duplicate) -google.golang.org/protobuf v1.33.0 go-module (+5 duplicates) -gopd 1.0.1 npm -gopkg.in/inf.v0 v0.9.1 go-module (+2 duplicates) -gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module (+1 duplicate) -gopkg.in/yaml.v2 v2.4.0 go-module (+6 duplicates) -gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b go-module (+1 duplicate) -gopkg.in/yaml.v3 v3.0.1 go-module (+1 duplicate) -gpg 2.2.27-3ubuntu2.1 deb -gpg-agent 2.2.27-3ubuntu2.1 deb -gpg-wks-client 2.2.27-3ubuntu2.1 deb -gpg-wks-server 2.2.27-3ubuntu2.1 deb -gpgconf 2.2.27-3ubuntu2.1 deb -gpgsm 2.2.27-3ubuntu2.1 deb -gpgv 2.2.27-3ubuntu2.1 deb -graceful-fs 4.2.11 npm -grep 3.7-1build1 deb -gzip 1.10-4ubuntu4.1 deb -has-property-descriptors 1.0.2 npm -has-proto 1.0.3 npm -has-symbols 1.0.3 npm -hasown 2.0.2 npm (+1 duplicate) -hosted-git-info 7.0.1 npm -hostname 3.23ubuntu2 deb -http-cache-semantics 4.1.1 npm -http-errors 2.0.0 npm -http-proxy-agent 7.0.2 npm -https-proxy-agent 7.0.4 npm -iconv-lite 0.4.24 npm -iconv-lite 0.6.3 npm -ieee754 1.2.1 npm -ignore-walk 6.0.4 npm -imurmurhash 0.1.4 npm -indent-string 4.0.0 npm -inherits 2.0.4 npm -ini 4.1.2 npm -init-package-json 6.0.2 npm -init-system-helpers 1.62 deb -ip-address 9.0.5 npm -ip-regex 5.0.0 npm -ipaddr.js 1.9.1 npm -iproute2 5.15.0-1ubuntu2 deb -iptables 1.8.7-1ubuntu5.2 deb -is-cidr 5.0.5 npm -is-core-module 2.13.1 npm -is-fullwidth-code-point 3.0.0 npm -is-lambda 1.0.1 npm -isexe 2.0.0 npm -isexe 3.1.1 npm -jackspeak 2.3.6 npm -jq 1.6-2.1ubuntu3 deb -js-yaml 4.1.0 npm -jsbn 1.1.0 npm -json-parse-even-better-errors 3.0.1 npm -json-stringify-nice 1.1.4 npm -jsonparse 1.3.1 npm -just-diff 6.0.2 npm -just-diff-apply 5.5.0 npm -k8s.io/api v0.26.2 go-module -k8s.io/apimachinery v0.22.4 go-module -k8s.io/apimachinery v0.26.2 go-module (+1 duplicate) -k8s.io/apiserver v0.26.2 go-module -k8s.io/client-go v0.22.4 go-module -k8s.io/client-go v0.26.2 go-module -k8s.io/component-base v0.26.2 go-module -k8s.io/cri-api v0.27.1 go-module -k8s.io/klog/v2 v2.30.0 go-module -k8s.io/klog/v2 v2.90.1 go-module (+1 duplicate) -k8s.io/utils v0.0.0-20211116205334-6203023598ed go-module -k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 go-module -kasm-wizard 0.0.1 npm -libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.12 deb -libassuan0 2.5.5-1build1 deb -libattr1 1:2.5.1-1build1 deb -libaudit-common 1:3.0.7-1build1 deb -libaudit1 1:3.0.7-1build1 deb -libblkid1 2.37.2-4ubuntu3.4 deb -libbpf0 1:0.5.0-1ubuntu22.04.1 deb -libbrotli1 1.0.9-2build6 deb -libbsd0 0.11.5-1 deb -libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.8 deb -libc6 2.35-0ubuntu3.8 deb -libcap-ng0 0.7.9-2.2build3 deb -libcap2 1:2.44-1ubuntu0.22.04.1 deb -libcap2-bin 1:2.44-1ubuntu0.22.04.1 deb -libcom-err2 1.46.5-2ubuntu1.1 deb -libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.16 deb -libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb -libdebconfclient0 0.261ubuntu1 deb -libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb -libedit2 3.1-20210910-1build1 deb -libelf1 0.186-1build1 deb -libexpat1 2.4.7-1ubuntu0.3 deb -libext2fs2 1.46.5-2ubuntu1.1 deb -libffi8 3.4.2-4 deb -libfuse3-3 3.10.5-1build1 deb -libgcc-s1 12.3.0-1ubuntu1~22.04 deb -libgcrypt20 1.9.4-3ubuntu3 deb -libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.5 deb -libgpg-error0 1.43-3 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.3 deb -libhogweed6 3.7.3-1build2 deb -libicu70 70.1-2 deb -libidn2-0 2.3.2-2build1 deb -libinih1 53-1ubuntu3 deb -libip4tc2 1.8.7-1ubuntu5.2 deb -libip6tc2 1.8.7-1ubuntu5.2 deb -libjq1 1.6-2.1ubuntu3 deb -libk5crypto3 1.19.2-2ubuntu0.3 deb -libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.3 deb -libkrb5support0 1.19.2-2ubuntu0.3 deb -libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.17+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.17+dfsg-0ubuntu0.22.04.1 deb -liblz4-1 1.9.3-2build2 deb -liblzma5 5.2.5-2ubuntu1 deb -liblzo2-2 2.10-2build3 deb -libmd0 1.0.4-1build1 deb -libmnl0 1.0.4-3build2 deb -libmount1 2.37.2-4ubuntu3.4 deb -libmpdec3 2.5.1-2build2 deb -libncurses6 6.3-2ubuntu0.1 deb -libncursesw6 6.3-2ubuntu0.1 deb -libnetfilter-conntrack3 1.0.9-1 deb -libnettle8 3.7.3-1build2 deb -libnfnetlink0 1.0.1-3build3 deb -libnftnl11 1.2.1-1build1 deb -libnghttp2-14 1.43.0-1ubuntu0.2 deb -libnpmaccess 8.0.5 npm -libnpmdiff 6.1.1 npm -libnpmexec 8.1.0 npm -libnpmfund 5.0.9 npm -libnpmhook 10.0.4 npm -libnpmorg 6.0.5 npm -libnpmpack 7.0.1 npm -libnpmpublish 9.0.7 npm -libnpmsearch 7.0.4 npm -libnpmteam 6.0.4 npm -libnpmversion 6.0.1 npm -libnpth0 1.6-3build2 deb -libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.15.0-1 deb -libnvidia-container1 1.15.0-1 deb -libonig5 6.9.7.1-2build1 deb -libp11-kit0 0.24.0-6build1 deb -libpam-modules 1.4.0-11ubuntu2.4 deb -libpam-modules-bin 1.4.0-11ubuntu2.4 deb -libpam-runtime 1.4.0-11ubuntu2.4 deb -libpam0g 1.4.0-11ubuntu2.4 deb -libpcre2-8-0 10.39-3ubuntu0.1 deb -libpcre3 2:8.39-13ubuntu0.22.04.1 deb -libprocps8 2:3.3.17-6ubuntu2.1 deb -libpsl5 0.21.0-1.2build2 deb -libpython3-stdlib 3.10.6-1~22.04 deb -libpython3.10-minimal 3.10.12-1~22.04.4 deb -libpython3.10-stdlib 3.10.12-1~22.04.4 deb -libreadline8 8.1.2-1 deb -librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb -libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libseccomp2 2.5.3-2ubuntu2 deb -libselinux1 3.3-1build2 deb -libsemanage-common 3.3-1build2 deb -libsemanage2 3.3-1build2 deb -libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3.4 deb -libsqlite3-0 3.37.2-2ubuntu0.3 deb -libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2ubuntu0.22.04.3 deb -libssl3 3.0.2-0ubuntu1.16 deb -libstdc++6 12.3.0-1ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.12 deb -libtasn1-6 4.18.0-4build1 deb -libtinfo6 6.3-2ubuntu0.1 deb -libtirpc-common 1.3.2-2ubuntu0.1 deb -libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.12 deb -libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3.4 deb -libxtables12 1.8.7-1ubuntu5.2 deb -libxxhash0 0.8.1-1 deb -libzstd1 1.4.8+dfsg-3build1 deb -locales 2.35-0ubuntu3.8 deb -lodash 4.17.21 npm -login 1:4.8.1-2ubuntu2.2 deb -logsave 1.46.5-2ubuntu1.1 deb -lru-cache 10.2.2 npm -lru-cache 6.0.0 npm -lsb-base 11.1.0ubuntu4 deb -lsof 4.93.2+dfsg-1.1build2 deb -make-fetch-happen 13.0.1 npm -mawk 1.3.4.20200120-3 deb -media-typer 0.3.0 npm -media-types 7.0.0 deb -merge-descriptors 1.0.1 npm -methods 1.1.2 npm -mime 1.6.0 npm -mime-db 1.52.0 npm -mime-types 2.1.35 npm -minimatch 9.0.4 npm -minipass 3.3.6 npm (+5 duplicates) -minipass 5.0.0 npm -minipass 7.0.4 npm -minipass-collect 2.0.1 npm -minipass-fetch 3.0.4 npm -minipass-flush 1.0.5 npm -minipass-json-stream 1.0.1 npm -minipass-pipeline 1.2.4 npm -minipass-sized 1.0.3 npm -minizlib 2.1.2 npm -mkdirp 1.0.4 npm -mkdirp-classic 0.5.3 npm -mount 2.37.2-4ubuntu3.4 deb -ms 2.0.0 npm (+3 duplicates) -ms 2.1.2 npm (+1 duplicate) -ms 2.1.3 npm (+1 duplicate) -mute-stream 1.0.0 npm -nan 2.20.0 npm -ncurses-base 6.3-2ubuntu0.1 deb -ncurses-bin 6.3-2ubuntu0.1 deb -negotiator 0.6.3 npm (+1 duplicate) -netbase 6.3 deb -netcat 1.218-4ubuntu1 deb -netcat-openbsd 1.218-4ubuntu1 deb -node-gyp 10.1.0 npm -node-pty 0.10.1 npm -nodejs 18.20.4-1nodesource1 deb -nopt 7.2.0 npm -normalize-package-data 6.0.0 npm -npm 10.7.0 npm -npm-audit-report 5.0.0 npm -npm-bundled 3.0.0 npm -npm-install-checks 6.3.0 npm -npm-normalize-package-bin 3.0.1 npm -npm-package-arg 11.0.2 npm -npm-packlist 8.0.2 npm -npm-pick-manifest 9.0.0 npm -npm-profile 9.0.2 npm -npm-registry-fetch 17.0.0 npm -npm-user-validate 2.0.0 npm -nvidia-container-toolkit 1.15.0-1 deb -nvidia-container-toolkit-base 1.15.0-1 deb -nvidia-docker2 2.14.0-1 deb -object-assign 4.1.1 npm -object-inspect 1.13.2 npm -on-finished 2.4.1 npm -once 1.4.0 npm -openssl 3.0.2-0ubuntu1.16 deb -p-map 4.0.0 npm -pacote 18.0.3 npm -parse-conflict-json 3.0.1 npm -parseurl 1.3.3 npm -passwd 1:4.8.1-2ubuntu2.2 deb -path-key 3.1.1 npm -path-scurry 1.10.2 npm -path-to-regexp 0.1.7 npm -perl-base 5.34.0-3ubuntu1.3 deb -pigz 2.6-1 deb -pinentry-curses 1.1.1-1build2 deb -postcss-selector-parser 6.0.16 npm -proc-log 3.0.0 npm -proc-log 4.2.0 npm -procps 2:3.3.17-6ubuntu2.1 deb -proggy 2.0.0 npm -promise-all-reject-late 1.0.1 npm -promise-call-limit 3.0.1 npm -promise-inflight 1.0.1 npm -promise-retry 2.0.1 npm -promzard 1.0.1 npm -proxy-addr 2.0.7 npm -publicsuffix 20211207.1025-1 deb -pump 3.0.0 npm -python3 3.10.6-1~22.04 deb -python3-minimal 3.10.6-1~22.04 deb -python3.10 3.10.12-1~22.04.4 deb -python3.10-minimal 3.10.12-1~22.04.4 deb -qrcode-terminal 0.12.0 npm -qs 6.11.0 npm -range-parser 1.2.1 npm -raw-body 2.5.2 npm -read 3.0.1 npm -read-cmd-shim 4.0.0 npm -read-package-json-fast 3.0.2 npm -readable-stream 3.6.2 npm -readline-common 8.1.2-1 deb -resenje.org/singleflight v0.4.1 go-module -retry 0.12.0 npm -safe-buffer 5.2.1 npm -safer-buffer 2.1.2 npm (+1 duplicate) -sed 4.8-1ubuntu2 deb -semver 7.6.0 npm -send 0.18.0 npm -sensible-utils 0.0.17 deb -serve-static 1.15.0 npm -set-function-length 1.2.2 npm -setprototypeof 1.2.0 npm -shebang-command 2.0.0 npm -shebang-regex 3.0.0 npm -side-channel 1.0.6 npm -signal-exit 4.1.0 npm -sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 go-module -sigs.k8s.io/structured-merge-diff/v4 v4.2.1 go-module -sigs.k8s.io/structured-merge-diff/v4 v4.2.3 go-module -sigs.k8s.io/yaml v1.2.0 go-module -sigs.k8s.io/yaml v1.3.0 go-module (+5 duplicates) -sigstore 2.3.0 npm -smart-buffer 4.2.0 npm -socket.io 4.7.5 npm -socket.io-adapter 2.5.5 npm -socket.io-parser 4.2.4 npm -socks 2.8.3 npm -socks-proxy-agent 8.0.3 npm -spdx-correct 3.2.0 npm -spdx-exceptions 2.5.0 npm -spdx-expression-parse 3.0.1 npm (+1 duplicate) -spdx-expression-parse 4.0.0 npm -spdx-license-ids 3.0.17 npm -split-ca 1.0.1 npm -sprintf-js 1.1.3 npm -ssh2 1.15.0 npm -ssri 10.0.5 npm -statuses 2.0.1 npm -stdlib go1.17.9 go-module -stdlib go1.18.1 go-module (+1 duplicate) -stdlib go1.21.11 go-module (+8 duplicates) -stdlib go1.22.1 go-module (+2 duplicates) -string-width 4.2.3 npm (+1 duplicate) -string-width 5.1.2 npm (+1 duplicate) -string_decoder 1.3.0 npm -strip-ansi 6.0.1 npm (+1 duplicate) -strip-ansi 7.1.0 npm (+1 duplicate) -sudo 1.9.9-1ubuntu2.4 deb -supports-color 9.4.0 npm -systeminformation 5.22.11 npm -sysvinit-utils 3.01-1ubuntu1 deb -tags.cncf.io/container-device-interface v0.7.1 go-module (+2 duplicates) -tags.cncf.io/container-device-interface v0.7.2 go-module (+1 duplicate) -tags.cncf.io/container-device-interface/specs-go v0.7.0 go-module (+4 duplicates) -tar 1.34+dfsg-1ubuntu0.1.22.04.2 deb -tar 6.2.1 npm -tar-fs 2.0.1 npm -tar-stream 2.2.0 npm -text-table 0.2.0 npm -tiny-relative-date 1.3.0 npm -toidentifier 1.0.1 npm -treeverse 3.0.0 npm -tuf-js 2.2.0 npm -tweetnacl 0.14.5 npm -type-is 1.6.18 npm -tzdata 2024a-0ubuntu0.22.04.1 deb -ubuntu-keyring 2021.03.26 deb -uidmap 1:4.8.1-2ubuntu2.2 deb -undici-types 5.26.5 npm -unique-filename 3.0.0 npm -unique-slug 4.0.0 npm -unpipe 1.0.0 npm -usrmerge 25ubuntu2 deb -util-deprecate 1.0.2 npm (+1 duplicate) -util-linux 2.37.2-4ubuntu3.4 deb -utils-merge 1.0.1 npm -validate-npm-package-license 3.0.4 npm -validate-npm-package-name 5.0.0 npm -vary 1.1.2 npm -walk-up-path 3.0.1 npm -which 2.0.2 npm -which 4.0.0 npm -wrap-ansi 7.0.0 npm -wrap-ansi 8.1.0 npm -wrappy 1.0.2 npm -write-file-atomic 5.0.1 npm -ws 8.17.1 npm -xfsprogs 5.13.0-1ubuntu2 deb -yallist 4.0.0 npm -zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb +NAME VERSION TYPE +1to2 1.0.0 npm +@balena/dockerignore 1.0.2 npm +@isaacs/cliui 8.0.2 npm +@isaacs/string-locale-compare 1.1.0 npm +@npmcli/agent 2.2.2 npm +@npmcli/arborist 7.5.1 npm +@npmcli/config 8.3.1 npm +@npmcli/fs 3.1.0 npm +@npmcli/git 5.0.6 npm +@npmcli/installed-package-contents 2.1.0 npm +@npmcli/map-workspaces 3.0.6 npm +@npmcli/metavuln-calculator 7.1.0 npm +@npmcli/name-from-folder 2.0.0 npm +@npmcli/node-gyp 3.0.0 npm +@npmcli/package-json 5.1.0 npm +@npmcli/promise-spawn 7.0.1 npm +@npmcli/query 3.1.0 npm +@npmcli/redact 2.0.0 npm +@npmcli/run-script 8.1.0 npm +@pkgjs/parseargs 0.11.0 npm +@sigstore/bundle 2.3.1 npm +@sigstore/core 1.1.0 npm +@sigstore/protobuf-specs 0.3.1 npm +@sigstore/sign 2.3.0 npm +@sigstore/tuf 2.3.2 npm +@sigstore/verify 1.2.0 npm +@socket.io/component-emitter 3.1.2 npm +@tufjs/canonical-json 2.0.0 npm +@tufjs/models 2.0.0 npm +@types/cookie 0.4.1 npm +@types/cors 2.8.17 npm +@types/node 20.14.10 npm +abbrev 2.0.0 npm +accepts 1.3.8 npm +adduser 3.118ubuntu5 deb +agent-base 7.1.1 npm +aggregate-error 3.1.0 npm +ansi-regex 5.0.1 npm +ansi-regex 6.0.1 npm (+1 duplicate) +ansi-styles 4.3.0 npm +ansi-styles 6.2.1 npm +aproba 2.0.0 npm +apt 2.4.12 deb +apt-transport-https 2.4.12 deb +apt-utils 2.4.12 deb +archy 1.0.0 npm +argparse 2.0.1 npm +array-flatten 1.1.1 npm +asn1 0.2.6 npm +balanced-match 1.0.2 npm +base-files 12ubuntu4.6 deb +base-passwd 3.5.52build1 deb +base64-js 1.5.1 npm +base64id 2.0.0 npm +bash 5.1-6ubuntu1.1 deb +bcrypt-pbkdf 1.0.2 npm +bin-links 4.0.3 npm +binary-extensions 2.3.0 npm +bl 4.1.0 npm +body-parser 1.20.2 npm +brace-expansion 2.0.1 npm +bsdutils 1:2.37.2-4ubuntu3.4 deb +btrfs-progs 5.16.2-1 deb +buffer 5.7.1 npm +buildcheck 0.0.6 npm +builtins 5.1.0 npm +bytes 3.1.2 npm +ca-certificates 20230311ubuntu0.22.04.1 deb +cacache 18.0.2 npm +call-bind 1.0.7 npm +catatonit 0.1.7-1 deb +chalk 5.3.0 npm +chownr 1.1.4 npm +chownr 2.0.0 npm +ci-info 4.0.0 npm +cidr-regex 4.0.5 npm +clean-stack 2.2.0 npm +cli-columns 4.0.0 npm +cloud.google.com/go/compute/metadata v0.2.3 go-module +cloud.google.com/go/logging v1.8.1 go-module +cloud.google.com/go/longrunning v0.5.2 go-module +cmd-shim 6.0.2 npm +code.cloudfoundry.org/clock v1.1.0 go-module +color-convert 2.0.1 npm +color-name 1.1.4 npm +common-ancestor-path 1.0.1 npm +containerd.io 1.7.18-1 deb +content-disposition 0.5.4 npm +content-type 1.0.5 npm +cookie 0.4.2 npm +cookie 0.6.0 npm +cookie-signature 1.0.6 npm +corepack 0.28.0 npm +coreutils 8.32-4.1ubuntu1.2 deb +cors 2.8.5 npm +cpu-features 0.0.10 npm +cron 3.0pl1-137ubuntu3 deb +cross-spawn 7.0.3 npm +cssesc 3.0.0 npm +curl 7.81.0-1ubuntu1.16 deb +dario.cat/mergo v1.0.0 go-module (+1 duplicate) +dash 0.5.11+git20210903+057cd650a4ed-3build1 deb +debconf 1.5.79ubuntu1 deb +debianutils 5.5-1ubuntu2 deb +debug 2.6.9 npm (+3 duplicates) +debug 4.3.4 npm +debug 4.3.5 npm +define-data-property 1.1.4 npm +depd 2.0.0 npm +destroy 1.2.0 npm +diff 5.2.0 npm +diffutils 1:3.8-0ubuntu2 deb +dirmngr 2.2.27-3ubuntu2.1 deb +docker-ce 5:27.0.3-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:27.0.3-1~ubuntu.22.04~jammy deb +docker-modem 3.0.8 npm +dockerode 3.3.5 npm +dpkg 1.21.1ubuntu2.3 deb +e2fsprogs 1.46.5-2ubuntu1.1 deb +eastasianwidth 0.2.0 npm +ee-first 1.1.1 npm +emoji-regex 8.0.0 npm +emoji-regex 9.2.2 npm (+1 duplicate) +encodeurl 1.0.2 npm +encoding 0.1.13 npm +end-of-stream 1.4.4 npm +engine.io 6.5.5 npm +engine.io-parser 5.2.3 npm +env-paths 2.2.1 npm +err-code 2.0.3 npm +es-define-property 1.0.0 npm +es-errors 1.3.0 npm +escape-html 1.0.3 npm +etag 1.8.1 npm +exponential-backoff 3.1.1 npm +express 4.19.2 npm +fastest-levenshtein 1.0.16 npm +finalhandler 1.2.0 npm +findutils 4.8.0-1ubuntu3 deb +foreground-child 3.1.1 npm +forwarded 0.2.0 npm +fresh 0.5.2 npm +fs-constants 1.0.0 npm +fs-minipass 2.1.0 npm +fs-minipass 3.0.3 npm +function-bind 1.1.2 npm (+1 duplicate) +fuse-overlayfs 1.7.1-1 deb +fuse3 3.10.5-1build1 deb +gcc-12-base 12.3.0-1ubuntu1~22.04 deb +get-intrinsic 1.2.4 npm +github.com/AlecAivazis/survey/v2 v2.3.2 go-module +github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module +github.com/Masterminds/semver v1.5.0 go-module +github.com/Microsoft/hcsshim v0.11.5 go-module (+2 duplicates) +github.com/NVIDIA/go-nvlib v0.6.0 go-module (+3 duplicates) +github.com/NVIDIA/go-nvml v0.12.4-0 go-module (+3 duplicates) +github.com/NVIDIA/nvidia-container-toolkit v1.16.0 go-module (+3 duplicates) +github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module +github.com/a8m/envsubst v1.3.0 go-module (+1 duplicate) +github.com/agext/levenshtein v1.2.3 go-module +github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412 go-module +github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092 go-module +github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 go-module +github.com/armon/go-metrics v0.4.1 go-module +github.com/aws/aws-sdk-go-v2 v1.24.1 go-module +github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.5.4 go-module +github.com/aws/aws-sdk-go-v2/config v1.26.6 go-module +github.com/aws/aws-sdk-go-v2/credentials v1.16.16 go-module +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.11 go-module +github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.10 go-module +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.10 go-module +github.com/aws/aws-sdk-go-v2/internal/ini v1.7.3 go-module +github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.32.0 go-module +github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.4 go-module +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.10 go-module +github.com/aws/aws-sdk-go-v2/service/sso v1.18.7 go-module +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.21.7 go-module +github.com/aws/aws-sdk-go-v2/service/sts v1.26.7 go-module +github.com/aws/smithy-go v1.19.0 go-module +github.com/beorn7/perks v1.0.1 go-module (+2 duplicates) +github.com/bits-and-blooms/bitset v1.13.0 go-module +github.com/blang/semver/v4 v4.0.0 go-module +github.com/buger/goterm v1.0.4 go-module +github.com/cenkalti/backoff/v4 v4.2.1 go-module (+1 duplicate) +github.com/cespare/xxhash/v2 v2.1.2 go-module +github.com/cespare/xxhash/v2 v2.2.0 go-module (+1 duplicate) +github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module +github.com/cilium/ebpf v0.12.3 go-module +github.com/cilium/ebpf v0.7.0 go-module +github.com/cilium/ebpf v0.9.1 go-module (+3 duplicates) +github.com/cloudflare/cfssl v1.6.4 go-module +github.com/cnabio/cnab-go v0.10.0-beta1 go-module +github.com/cnabio/cnab-to-oci v0.3.1-beta1 go-module +github.com/compose-spec/compose-go v1.2.4 go-module +github.com/container-storage-interface/spec v1.5.0 go-module +github.com/containerd/aufs v1.0.0 go-module +github.com/containerd/btrfs/v2 v2.0.0 go-module +github.com/containerd/cgroups v1.1.0 go-module (+1 duplicate) +github.com/containerd/cgroups/v3 v3.0.2 go-module (+3 duplicates) +github.com/containerd/cgroups/v3 v3.0.3 go-module +github.com/containerd/console v1.0.3 go-module (+6 duplicates) +github.com/containerd/console v1.0.4 go-module +github.com/containerd/containerd v1.6.2 go-module +github.com/containerd/containerd v1.7.18 go-module (+5 duplicates) +github.com/containerd/continuity v0.2.2 go-module +github.com/containerd/continuity v0.4.2 go-module (+4 duplicates) +github.com/containerd/continuity v0.4.3 go-module +github.com/containerd/errdefs v0.1.0 go-module (+5 duplicates) +github.com/containerd/fifo v1.1.0 go-module (+5 duplicates) +github.com/containerd/go-cni v1.1.9 go-module (+2 duplicates) +github.com/containerd/go-runc v1.0.0 go-module (+4 duplicates) +github.com/containerd/go-runc v1.1.0 go-module +github.com/containerd/imgcrypt v1.1.8 go-module +github.com/containerd/log v0.1.0 go-module (+6 duplicates) +github.com/containerd/nri v0.6.1 go-module +github.com/containerd/nydus-snapshotter v0.13.7 go-module +github.com/containerd/stargz-snapshotter/estargz v0.15.1 go-module +github.com/containerd/ttrpc v1.1.0 go-module +github.com/containerd/ttrpc v1.2.4 go-module (+4 duplicates) +github.com/containerd/ttrpc v1.2.5 go-module +github.com/containerd/typeurl v1.0.2 go-module (+1 duplicate) +github.com/containerd/typeurl/v2 v2.1.1 go-module (+5 duplicates) +github.com/containerd/zfs v1.1.0 go-module +github.com/containernetworking/cni v1.1.2 go-module (+2 duplicates) +github.com/containernetworking/plugins v1.2.0 go-module +github.com/containernetworking/plugins v1.4.0 go-module +github.com/containers/ocicrypt v1.1.10 go-module +github.com/coreos/go-systemd/v22 v22.3.2 go-module +github.com/coreos/go-systemd/v22 v22.5.0 go-module (+4 duplicates) +github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module +github.com/cpuguy83/go-md2man/v2 v2.0.4 go-module (+1 duplicate) +github.com/cyphar/filepath-securejoin v0.2.4 go-module (+1 duplicate) +github.com/davecgh/go-spew v1.1.1 go-module (+2 duplicates) +github.com/deckarep/golang-set/v2 v2.3.0 go-module +github.com/dimchansky/utfbom v1.1.1 go-module +github.com/distribution/distribution/v3 v3.0.0-20210316161203-a01c71e2477e go-module +github.com/distribution/reference v0.6.0 go-module +github.com/docker/buildx v0.8.1 go-module +github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module +github.com/docker/cli/cmd/docker v27.0.3 go-module +github.com/docker/compose/v2 v2.5.0 go-module +github.com/docker/distribution v2.8.0+incompatible go-module +github.com/docker/distribution v2.8.3+incompatible go-module +github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module +github.com/docker/docker v27.0.3 go-module (+1 duplicate) +github.com/docker/docker-credential-helpers v0.6.4 go-module +github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module +github.com/docker/go-connections v0.4.0 go-module +github.com/docker/go-connections v0.5.0 go-module +github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module (+4 duplicates) +github.com/docker/go-metrics v0.0.1 go-module (+2 duplicates) +github.com/docker/go-units v0.4.0 go-module (+1 duplicate) +github.com/docker/go-units v0.5.0 go-module (+4 duplicates) +github.com/docker/libtrust v0.0.0-20150526203908-9cbd2a1374f4 go-module +github.com/dustin/go-humanize v1.0.0 go-module +github.com/elliotchance/orderedmap v1.4.0 go-module (+1 duplicate) +github.com/emicklei/go-restful/v3 v3.10.1 go-module +github.com/fatih/color v1.13.0 go-module (+1 duplicate) +github.com/felixge/httpsnoop v1.0.2 go-module +github.com/felixge/httpsnoop v1.0.3 go-module (+1 duplicate) +github.com/felixge/httpsnoop v1.0.4 go-module +github.com/fernet/fernet-go v0.0.0-20211208181803-9f70042a33ee go-module +github.com/fluent/fluent-logger-golang v1.9.0 go-module +github.com/fsnotify/fsnotify v1.6.0 go-module (+1 duplicate) +github.com/fsnotify/fsnotify v1.7.0 go-module (+3 duplicates) +github.com/fvbommel/sortorder v1.0.1 go-module +github.com/go-jose/go-jose/v3 v3.0.3 go-module +github.com/go-logr/logr v1.2.2 go-module +github.com/go-logr/logr v1.2.4 go-module (+1 duplicate) +github.com/go-logr/logr v1.3.0 go-module +github.com/go-logr/stdr v1.2.2 go-module (+3 duplicates) +github.com/goccy/go-yaml v1.9.5 go-module (+1 duplicate) +github.com/godbus/dbus/v5 v5.0.6 go-module +github.com/godbus/dbus/v5 v5.1.0 go-module (+4 duplicates) +github.com/gofrs/flock v0.8.0 go-module +github.com/gofrs/flock v0.8.1 go-module +github.com/gogo/googleapis v1.4.1 go-module (+1 duplicate) +github.com/gogo/protobuf v1.3.2 go-module (+6 duplicates) +github.com/golang-jwt/jwt/v4 v4.5.0 go-module +github.com/golang/gddo v0.0.0-20190904175337-72a348e765d2 go-module +github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da go-module +github.com/golang/mock v1.6.0 go-module +github.com/golang/protobuf v1.5.2 go-module +github.com/golang/protobuf v1.5.4 go-module (+5 duplicates) +github.com/google/btree v1.1.2 go-module +github.com/google/certificate-transparency-go v1.1.4 go-module +github.com/google/go-cmp v0.5.7 go-module +github.com/google/go-cmp v0.5.9 go-module (+4 duplicates) +github.com/google/go-cmp v0.6.0 go-module +github.com/google/gofuzz v1.2.0 go-module (+1 duplicate) +github.com/google/s2a-go v0.1.4 go-module +github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module (+1 duplicate) +github.com/google/uuid v1.3.1 go-module (+1 duplicate) +github.com/google/uuid v1.6.0 go-module (+4 duplicates) +github.com/googleapis/enterprise-certificate-proxy v0.2.4 go-module +github.com/googleapis/gax-go/v2 v2.12.0 go-module +github.com/gorilla/mux v1.8.0 go-module +github.com/gorilla/mux v1.8.1 go-module +github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module (+1 duplicate) +github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module (+1 duplicate) +github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module +github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 go-module (+1 duplicate) +github.com/hashicorp/errwrap v1.1.0 go-module (+6 duplicates) +github.com/hashicorp/go-immutable-radix v1.3.1 go-module +github.com/hashicorp/go-memdb v1.3.2 go-module +github.com/hashicorp/go-msgpack v0.5.5 go-module +github.com/hashicorp/go-multierror v1.1.1 go-module (+6 duplicates) +github.com/hashicorp/go-sockaddr v1.0.2 go-module +github.com/hashicorp/go-version v1.3.0 go-module +github.com/hashicorp/golang-lru v0.5.4 go-module +github.com/hashicorp/memberlist v0.4.0 go-module +github.com/hashicorp/serf v0.8.5 go-module +github.com/imdario/mergo v0.3.12 go-module +github.com/in-toto/in-toto-golang v0.5.0 go-module +github.com/intel/goresctrl v0.3.0 go-module (+1 duplicate) +github.com/ishidawataru/sctp v0.0.0-20230406120618-7ff4192f6ff2 go-module (+1 duplicate) +github.com/jinzhu/copier v0.3.5 go-module (+1 duplicate) +github.com/jmoiron/sqlx v1.3.3 go-module +github.com/json-iterator/go v1.1.12 go-module (+1 duplicate) +github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module +github.com/klauspost/compress v1.15.0 go-module +github.com/klauspost/compress v1.16.0 go-module (+3 duplicates) +github.com/klauspost/compress v1.17.4 go-module +github.com/klauspost/cpuid/v2 v2.0.4 go-module (+1 duplicate) +github.com/magiconair/properties v1.8.6 go-module (+1 duplicate) +github.com/mattn/go-colorable v0.1.12 go-module (+2 duplicates) +github.com/mattn/go-isatty v0.0.14 go-module (+2 duplicates) +github.com/mattn/go-shellwords v1.0.12 go-module +github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 go-module +github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module (+1 duplicate) +github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module +github.com/miekg/dns v1.1.57 go-module +github.com/miekg/pkcs11 v1.1.1 go-module +github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module (+1 duplicate) +github.com/minio/sha256-simd v1.0.0 go-module (+1 duplicate) +github.com/mistifyio/go-zfs/v3 v3.0.1 go-module (+1 duplicate) +github.com/mitchellh/copystructure v1.2.0 go-module +github.com/mitchellh/hashstructure/v2 v2.0.2 go-module +github.com/mitchellh/mapstructure v1.4.3 go-module +github.com/mitchellh/reflectwalk v1.0.2 go-module +github.com/moby/buildkit v0.10.0-rc2.0.20220308185020-fdecd0ae108b go-module +github.com/moby/buildkit v0.14.1 go-module +github.com/moby/docker-image-spec v1.3.1 go-module +github.com/moby/ipvs v1.1.0 go-module +github.com/moby/locker v1.0.1 go-module (+3 duplicates) +github.com/moby/patternmatcher v0.6.0 go-module +github.com/moby/pubsub v1.0.0 go-module +github.com/moby/spdystream v0.2.0 go-module +github.com/moby/swarmkit/v2 v2.0.0-20240611172349-ea1a7cec35cb go-module +github.com/moby/sys/mount v0.3.3 go-module +github.com/moby/sys/mountinfo v0.5.0 go-module +github.com/moby/sys/mountinfo v0.6.2 go-module (+4 duplicates) +github.com/moby/sys/mountinfo v0.7.1 go-module +github.com/moby/sys/sequential v0.5.0 go-module +github.com/moby/sys/signal v0.6.0 go-module +github.com/moby/sys/signal v0.7.0 go-module (+2 duplicates) +github.com/moby/sys/symlink v0.2.0 go-module (+2 duplicates) +github.com/moby/sys/user v0.1.0 go-module (+4 duplicates) +github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 go-module +github.com/moby/term v0.5.0 go-module +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module (+1 duplicate) +github.com/modern-go/reflect2 v1.0.2 go-module (+1 duplicate) +github.com/morikuni/aec v1.0.0 go-module (+1 duplicate) +github.com/mrunalp/fileutils v0.5.1 go-module +github.com/opencontainers/go-digest v1.0.0 go-module (+5 duplicates) +github.com/opencontainers/image-spec v1.0.2 go-module +github.com/opencontainers/image-spec v1.1.0 go-module (+4 duplicates) +github.com/opencontainers/runc v1.1.0 go-module +github.com/opencontainers/runc v1.1.13 go-module +github.com/opencontainers/runc v1.1.13-0-g58aa920 go-module +github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module +github.com/opencontainers/runtime-spec v1.1.0 go-module (+4 duplicates) +github.com/opencontainers/runtime-spec v1.2.0 go-module (+4 duplicates) +github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module (+5 duplicates) +github.com/opencontainers/selinux v1.10.0 go-module +github.com/opencontainers/selinux v1.11.0 go-module (+2 duplicates) +github.com/package-url/packageurl-go v0.1.1-0.20220428063043-89078438f170 go-module +github.com/pelletier/go-toml v1.9.4 go-module +github.com/pelletier/go-toml v1.9.5 go-module (+6 duplicates) +github.com/philhofer/fwd v1.1.2 go-module +github.com/pkg/errors v0.9.1 go-module (+6 duplicates) +github.com/pmezard/go-difflib v1.0.0 go-module +github.com/prometheus/client_golang v1.12.1 go-module +github.com/prometheus/client_golang v1.14.0 go-module +github.com/prometheus/client_golang v1.17.0 go-module +github.com/prometheus/client_model v0.2.0 go-module +github.com/prometheus/client_model v0.3.0 go-module +github.com/prometheus/client_model v0.5.0 go-module +github.com/prometheus/common v0.32.1 go-module +github.com/prometheus/common v0.37.0 go-module +github.com/prometheus/common v0.44.0 go-module +github.com/prometheus/procfs v0.12.0 go-module +github.com/prometheus/procfs v0.7.3 go-module +github.com/prometheus/procfs v0.8.0 go-module +github.com/qri-io/jsonpointer v0.1.0 go-module +github.com/qri-io/jsonschema v0.1.1 go-module +github.com/rootless-containers/rootlesskit/v2 v2.0.2 go-module +github.com/russross/blackfriday/v2 v2.0.1 go-module +github.com/russross/blackfriday/v2 v2.1.0 go-module (+1 duplicate) +github.com/sanathkr/go-yaml v0.0.0-20170819195128-ed9d249f429b go-module +github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 go-module +github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 go-module +github.com/secure-systems-lab/go-securesystemslib v0.4.0 go-module +github.com/shibumi/go-pathspec v1.3.0 go-module +github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module +github.com/sirupsen/logrus v1.8.1 go-module (+1 duplicate) +github.com/sirupsen/logrus v1.9.3 go-module (+10 duplicates) +github.com/spdx/tools-golang v0.5.3 go-module +github.com/spf13/cobra v1.4.0 go-module (+2 duplicates) +github.com/spf13/cobra v1.8.1 go-module +github.com/spf13/pflag v1.0.5 go-module (+4 duplicates) +github.com/stefanberger/go-pkcs11uri v0.0.0-20230803200340-78284954bff6 go-module +github.com/stretchr/testify v1.8.4 go-module +github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module (+6 duplicates) +github.com/tchap/go-patricia/v2 v2.3.1 go-module +github.com/theupdateframework/notary v0.6.1 go-module +github.com/timtadh/data-structures v0.5.3 go-module (+1 duplicate) +github.com/timtadh/lexmachine v0.2.2 go-module (+1 duplicate) +github.com/tinylib/msgp v1.1.8 go-module +github.com/tonistiigi/fsutil v0.0.0-20220315205639-9ed612626da3 go-module +github.com/tonistiigi/fsutil v0.0.0-20240424095704-91a3fc46842c go-module +github.com/tonistiigi/go-actions-cache v0.0.0-20240320205438-9794bdbb2fb4 go-module +github.com/tonistiigi/go-archvariant v1.0.0 go-module +github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module (+1 duplicate) +github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f go-module +github.com/urfave/cli v1.22.1 go-module +github.com/urfave/cli v1.22.12 go-module (+1 duplicate) +github.com/urfave/cli/v2 v2.27.2 go-module (+1 duplicate) +github.com/vbatts/tar-split v0.11.5 go-module +github.com/vishvananda/netlink v1.1.0 go-module +github.com/vishvananda/netlink v1.2.1-beta.2 go-module (+1 duplicate) +github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df go-module +github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f go-module +github.com/vishvananda/netns v0.0.4 go-module +github.com/weppos/publicsuffix-go v0.15.1-0.20210511084619-b1f36a2d6c0b go-module +github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb go-module +github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module +github.com/xeipuuv/gojsonschema v1.2.0 go-module +github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 go-module (+1 duplicate) +github.com/zmap/zcrypto v0.0.0-20210511125630-18f1e0152cfc go-module +github.com/zmap/zlint/v3 v3.1.0 go-module +glob 10.3.12 npm +gnupg 2.2.27-3ubuntu2.1 deb +gnupg-l10n 2.2.27-3ubuntu2.1 deb +gnupg-utils 2.2.27-3ubuntu2.1 deb +go.etcd.io/bbolt v1.3.10 go-module +go.etcd.io/bbolt v1.3.7 go-module +go.etcd.io/etcd/client/pkg/v3 v3.5.6 go-module +go.etcd.io/etcd/pkg/v3 v3.5.6 go-module +go.etcd.io/etcd/raft/v3 v3.5.6 go-module +go.etcd.io/etcd/server/v3 v3.5.6 go-module +go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module +go.opencensus.io v0.24.0 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.29.0 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.45.0 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.29.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.46.1 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.29.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 go-module (+1 duplicate) +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 go-module +go.opentelemetry.io/otel v1.19.0 go-module (+1 duplicate) +go.opentelemetry.io/otel v1.21.0 go-module +go.opentelemetry.io/otel v1.4.1 go-module +go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.42.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.42.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v0.42.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.4.1 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.19.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.21.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.19.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.21.0 go-module +go.opentelemetry.io/otel/internal/metric v0.27.0 go-module +go.opentelemetry.io/otel/metric v0.27.0 go-module +go.opentelemetry.io/otel/metric v1.19.0 go-module (+1 duplicate) +go.opentelemetry.io/otel/metric v1.21.0 go-module +go.opentelemetry.io/otel/sdk v1.19.0 go-module +go.opentelemetry.io/otel/sdk v1.21.0 go-module +go.opentelemetry.io/otel/sdk v1.4.1 go-module +go.opentelemetry.io/otel/sdk/metric v1.21.0 go-module +go.opentelemetry.io/otel/trace v1.19.0 go-module (+1 duplicate) +go.opentelemetry.io/otel/trace v1.21.0 go-module +go.opentelemetry.io/otel/trace v1.4.1 go-module +go.opentelemetry.io/proto/otlp v0.12.0 go-module +go.opentelemetry.io/proto/otlp v1.0.0 go-module (+1 duplicate) +go.uber.org/atomic v1.9.0 go-module +go.uber.org/multierr v1.8.0 go-module +go.uber.org/zap v1.21.0 go-module +golang.org/x/crypto v0.0.0-20211202192323-5770296d904e go-module +golang.org/x/crypto v0.21.0 go-module +golang.org/x/crypto v0.22.0 go-module +golang.org/x/exp v0.0.0-20231006140011-7918f672742d go-module +golang.org/x/mod v0.12.0 go-module +golang.org/x/mod v0.17.0 go-module +golang.org/x/mod v0.19.0 go-module (+3 duplicates) +golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module (+1 duplicate) +golang.org/x/net v0.0.0-20211216030914-fe4d6282115f go-module +golang.org/x/net v0.23.0 go-module (+2 duplicates) +golang.org/x/net v0.24.0 go-module (+1 duplicate) +golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 go-module +golang.org/x/oauth2 v0.11.0 go-module (+1 duplicate) +golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module +golang.org/x/sync v0.3.0 go-module (+4 duplicates) +golang.org/x/sync v0.5.0 go-module +golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module (+1 duplicate) +golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module +golang.org/x/sys v0.18.0 go-module (+4 duplicates) +golang.org/x/sys v0.19.0 go-module (+2 duplicates) +golang.org/x/sys v0.22.0 go-module (+3 duplicates) +golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module +golang.org/x/term v0.18.0 go-module +golang.org/x/text v0.14.0 go-module (+3 duplicates) +golang.org/x/text v0.3.7 go-module (+2 duplicates) +golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module +golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 go-module +golang.org/x/time v0.3.0 go-module +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module (+1 duplicate) +google.golang.org/api v0.128.0 go-module +google.golang.org/appengine v1.6.8 go-module +google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa go-module +google.golang.org/genproto v0.0.0-20230920204549-e6e6cdab5c13 go-module (+4 duplicates) +google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b go-module +google.golang.org/genproto/googleapis/api v0.0.0-20230913181813-007df8e322eb go-module +google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b go-module +google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 go-module (+4 duplicates) +google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b go-module +google.golang.org/grpc v1.44.0 go-module +google.golang.org/grpc v1.59.0 go-module (+5 duplicates) +google.golang.org/protobuf v1.27.1 go-module (+1 duplicate) +google.golang.org/protobuf v1.33.0 go-module (+5 duplicates) +gopd 1.0.1 npm +gopkg.in/inf.v0 v0.9.1 go-module (+2 duplicates) +gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module (+1 duplicate) +gopkg.in/yaml.v2 v2.4.0 go-module (+7 duplicates) +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b go-module (+1 duplicate) +gopkg.in/yaml.v3 v3.0.1 go-module (+1 duplicate) +gpg 2.2.27-3ubuntu2.1 deb +gpg-agent 2.2.27-3ubuntu2.1 deb +gpg-wks-client 2.2.27-3ubuntu2.1 deb +gpg-wks-server 2.2.27-3ubuntu2.1 deb +gpgconf 2.2.27-3ubuntu2.1 deb +gpgsm 2.2.27-3ubuntu2.1 deb +gpgv 2.2.27-3ubuntu2.1 deb +graceful-fs 4.2.11 npm +grep 3.7-1build1 deb +gzip 1.10-4ubuntu4.1 deb +has-property-descriptors 1.0.2 npm +has-proto 1.0.3 npm +has-symbols 1.0.3 npm +hasown 2.0.2 npm (+1 duplicate) +hosted-git-info 7.0.1 npm +hostname 3.23ubuntu2 deb +http-cache-semantics 4.1.1 npm +http-errors 2.0.0 npm +http-proxy-agent 7.0.2 npm +https-proxy-agent 7.0.4 npm +iconv-lite 0.4.24 npm +iconv-lite 0.6.3 npm +ieee754 1.2.1 npm +ignore-walk 6.0.4 npm +imurmurhash 0.1.4 npm +indent-string 4.0.0 npm +inherits 2.0.4 npm +ini 4.1.2 npm +init-package-json 6.0.2 npm +init-system-helpers 1.62 deb +ip-address 9.0.5 npm +ip-regex 5.0.0 npm +ipaddr.js 1.9.1 npm +iproute2 5.15.0-1ubuntu2 deb +iptables 1.8.7-1ubuntu5.2 deb +is-cidr 5.0.5 npm +is-core-module 2.13.1 npm +is-fullwidth-code-point 3.0.0 npm +is-lambda 1.0.1 npm +isexe 2.0.0 npm +isexe 3.1.1 npm +jackspeak 2.3.6 npm +jq 1.6-2.1ubuntu3 deb +js-yaml 4.1.0 npm +jsbn 1.1.0 npm +json-parse-even-better-errors 3.0.1 npm +json-stringify-nice 1.1.4 npm +jsonparse 1.3.1 npm +just-diff 6.0.2 npm +just-diff-apply 5.5.0 npm +k8s.io/api v0.26.2 go-module +k8s.io/apimachinery v0.22.4 go-module +k8s.io/apimachinery v0.26.2 go-module (+1 duplicate) +k8s.io/apiserver v0.26.2 go-module +k8s.io/client-go v0.22.4 go-module +k8s.io/client-go v0.26.2 go-module +k8s.io/component-base v0.26.2 go-module +k8s.io/cri-api v0.27.1 go-module +k8s.io/klog/v2 v2.30.0 go-module +k8s.io/klog/v2 v2.90.1 go-module (+1 duplicate) +k8s.io/utils v0.0.0-20211116205334-6203023598ed go-module +k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 go-module +kasm-wizard 0.0.1 npm +libacl1 2.3.1-1 deb +libapt-pkg6.0 2.4.12 deb +libassuan0 2.5.5-1build1 deb +libattr1 1:2.5.1-1build1 deb +libaudit-common 1:3.0.7-1build1 deb +libaudit1 1:3.0.7-1build1 deb +libblkid1 2.37.2-4ubuntu3.4 deb +libbpf0 1:0.5.0-1ubuntu22.04.1 deb +libbrotli1 1.0.9-2build6 deb +libbsd0 0.11.5-1 deb +libbz2-1.0 1.0.8-5build1 deb +libc-bin 2.35-0ubuntu3.8 deb +libc6 2.35-0ubuntu3.8 deb +libcap-ng0 0.7.9-2.2build3 deb +libcap2 1:2.44-1ubuntu0.22.04.1 deb +libcap2-bin 1:2.44-1ubuntu0.22.04.1 deb +libcom-err2 1.46.5-2ubuntu1.1 deb +libcrypt1 1:4.4.27-1 deb +libcurl4 7.81.0-1ubuntu1.16 deb +libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb +libdebconfclient0 0.261ubuntu1 deb +libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb +libedit2 3.1-20210910-1build1 deb +libelf1 0.186-1build1 deb +libexpat1 2.4.7-1ubuntu0.3 deb +libext2fs2 1.46.5-2ubuntu1.1 deb +libffi8 3.4.2-4 deb +libfuse3-3 3.10.5-1build1 deb +libgcc-s1 12.3.0-1ubuntu1~22.04 deb +libgcrypt20 1.9.4-3ubuntu3 deb +libgmp10 2:6.2.1+dfsg-3ubuntu1 deb +libgnutls30 3.7.3-4ubuntu1.5 deb +libgpg-error0 1.43-3 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.3 deb +libhogweed6 3.7.3-1build2 deb +libicu70 70.1-2 deb +libidn2-0 2.3.2-2build1 deb +libinih1 53-1ubuntu3 deb +libip4tc2 1.8.7-1ubuntu5.2 deb +libip6tc2 1.8.7-1ubuntu5.2 deb +libjq1 1.6-2.1ubuntu3 deb +libk5crypto3 1.19.2-2ubuntu0.3 deb +libkeyutils1 1.6.1-2ubuntu3 deb +libkrb5-3 1.19.2-2ubuntu0.3 deb +libkrb5support0 1.19.2-2ubuntu0.3 deb +libksba8 1.6.0-2ubuntu0.2 deb +libldap-2.5-0 2.5.17+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.17+dfsg-0ubuntu0.22.04.1 deb +liblz4-1 1.9.3-2build2 deb +liblzma5 5.2.5-2ubuntu1 deb +liblzo2-2 2.10-2build3 deb +libmd0 1.0.4-1build1 deb +libmnl0 1.0.4-3build2 deb +libmount1 2.37.2-4ubuntu3.4 deb +libmpdec3 2.5.1-2build2 deb +libncurses6 6.3-2ubuntu0.1 deb +libncursesw6 6.3-2ubuntu0.1 deb +libnetfilter-conntrack3 1.0.9-1 deb +libnettle8 3.7.3-1build2 deb +libnfnetlink0 1.0.1-3build3 deb +libnftnl11 1.2.1-1build1 deb +libnghttp2-14 1.43.0-1ubuntu0.2 deb +libnpmaccess 8.0.5 npm +libnpmdiff 6.1.1 npm +libnpmexec 8.1.0 npm +libnpmfund 5.0.9 npm +libnpmhook 10.0.4 npm +libnpmorg 6.0.5 npm +libnpmpack 7.0.1 npm +libnpmpublish 9.0.7 npm +libnpmsearch 7.0.4 npm +libnpmteam 6.0.4 npm +libnpmversion 6.0.1 npm +libnpth0 1.6-3build2 deb +libnsl2 1.3.0-2build2 deb +libnvidia-container-tools 1.16.0-1 deb +libnvidia-container1 1.16.0-1 deb +libonig5 6.9.7.1-2build1 deb +libp11-kit0 0.24.0-6build1 deb +libpam-modules 1.4.0-11ubuntu2.4 deb +libpam-modules-bin 1.4.0-11ubuntu2.4 deb +libpam-runtime 1.4.0-11ubuntu2.4 deb +libpam0g 1.4.0-11ubuntu2.4 deb +libpcre2-8-0 10.39-3ubuntu0.1 deb +libpcre3 2:8.39-13ubuntu0.22.04.1 deb +libprocps8 2:3.3.17-6ubuntu2.1 deb +libpsl5 0.21.0-1.2build2 deb +libpython3-stdlib 3.10.6-1~22.04 deb +libpython3.10-minimal 3.10.12-1~22.04.4 deb +libpython3.10-stdlib 3.10.12-1~22.04.4 deb +libreadline8 8.1.2-1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb +libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb +libseccomp2 2.5.3-2ubuntu2 deb +libselinux1 3.3-1build2 deb +libsemanage-common 3.3-1build2 deb +libsemanage2 3.3-1build2 deb +libsepol2 3.3-1build1 deb +libsmartcols1 2.37.2-4ubuntu3.4 deb +libsqlite3-0 3.37.2-2ubuntu0.3 deb +libss2 1.46.5-2ubuntu1.1 deb +libssh-4 0.9.6-2ubuntu0.22.04.3 deb +libssl3 3.0.2-0ubuntu1.16 deb +libstdc++6 12.3.0-1ubuntu1~22.04 deb +libsystemd0 249.11-0ubuntu3.12 deb +libtasn1-6 4.18.0-4build1 deb +libtinfo6 6.3-2ubuntu0.1 deb +libtirpc-common 1.3.2-2ubuntu0.1 deb +libtirpc3 1.3.2-2ubuntu0.1 deb +libudev1 249.11-0ubuntu3.12 deb +libunistring2 1.0-1 deb +libuuid1 2.37.2-4ubuntu3.4 deb +libxtables12 1.8.7-1ubuntu5.2 deb +libxxhash0 0.8.1-1 deb +libzstd1 1.4.8+dfsg-3build1 deb +locales 2.35-0ubuntu3.8 deb +lodash 4.17.21 npm +login 1:4.8.1-2ubuntu2.2 deb +logsave 1.46.5-2ubuntu1.1 deb +lru-cache 10.2.2 npm +lru-cache 6.0.0 npm +lsb-base 11.1.0ubuntu4 deb +lsof 4.93.2+dfsg-1.1build2 deb +make-fetch-happen 13.0.1 npm +mawk 1.3.4.20200120-3 deb +media-typer 0.3.0 npm +media-types 7.0.0 deb +merge-descriptors 1.0.1 npm +methods 1.1.2 npm +mime 1.6.0 npm +mime-db 1.52.0 npm +mime-types 2.1.35 npm +minimatch 9.0.4 npm +minipass 3.3.6 npm (+5 duplicates) +minipass 5.0.0 npm +minipass 7.0.4 npm +minipass-collect 2.0.1 npm +minipass-fetch 3.0.4 npm +minipass-flush 1.0.5 npm +minipass-json-stream 1.0.1 npm +minipass-pipeline 1.2.4 npm +minipass-sized 1.0.3 npm +minizlib 2.1.2 npm +mkdirp 1.0.4 npm +mkdirp-classic 0.5.3 npm +mount 2.37.2-4ubuntu3.4 deb +ms 2.0.0 npm (+3 duplicates) +ms 2.1.2 npm (+1 duplicate) +ms 2.1.3 npm (+1 duplicate) +mute-stream 1.0.0 npm +nan 2.20.0 npm +ncurses-base 6.3-2ubuntu0.1 deb +ncurses-bin 6.3-2ubuntu0.1 deb +negotiator 0.6.3 npm (+1 duplicate) +netbase 6.3 deb +netcat 1.218-4ubuntu1 deb +netcat-openbsd 1.218-4ubuntu1 deb +node-gyp 10.1.0 npm +node-pty 0.10.1 npm +nodejs 18.20.4-1nodesource1 deb +nopt 7.2.0 npm +normalize-package-data 6.0.0 npm +npm 10.7.0 npm +npm-audit-report 5.0.0 npm +npm-bundled 3.0.0 npm +npm-install-checks 6.3.0 npm +npm-normalize-package-bin 3.0.1 npm +npm-package-arg 11.0.2 npm +npm-packlist 8.0.2 npm +npm-pick-manifest 9.0.0 npm +npm-profile 9.0.2 npm +npm-registry-fetch 17.0.0 npm +npm-user-validate 2.0.0 npm +nvidia-container-toolkit 1.16.0-1 deb +nvidia-container-toolkit-base 1.16.0-1 deb +nvidia-docker2 2.14.0-1 deb +object-assign 4.1.1 npm +object-inspect 1.13.2 npm +on-finished 2.4.1 npm +once 1.4.0 npm +openssl 3.0.2-0ubuntu1.16 deb +p-map 4.0.0 npm +pacote 18.0.3 npm +parse-conflict-json 3.0.1 npm +parseurl 1.3.3 npm +passwd 1:4.8.1-2ubuntu2.2 deb +path-key 3.1.1 npm +path-scurry 1.10.2 npm +path-to-regexp 0.1.7 npm +perl-base 5.34.0-3ubuntu1.3 deb +pigz 2.6-1 deb +pinentry-curses 1.1.1-1build2 deb +postcss-selector-parser 6.0.16 npm +proc-log 3.0.0 npm +proc-log 4.2.0 npm +procps 2:3.3.17-6ubuntu2.1 deb +proggy 2.0.0 npm +promise-all-reject-late 1.0.1 npm +promise-call-limit 3.0.1 npm +promise-inflight 1.0.1 npm +promise-retry 2.0.1 npm +promzard 1.0.1 npm +proxy-addr 2.0.7 npm +publicsuffix 20211207.1025-1 deb +pump 3.0.0 npm +python3 3.10.6-1~22.04 deb +python3-minimal 3.10.6-1~22.04 deb +python3.10 3.10.12-1~22.04.4 deb +python3.10-minimal 3.10.12-1~22.04.4 deb +qrcode-terminal 0.12.0 npm +qs 6.11.0 npm +range-parser 1.2.1 npm +raw-body 2.5.2 npm +read 3.0.1 npm +read-cmd-shim 4.0.0 npm +read-package-json-fast 3.0.2 npm +readable-stream 3.6.2 npm +readline-common 8.1.2-1 deb +resenje.org/singleflight v0.4.1 go-module +retry 0.12.0 npm +safe-buffer 5.2.1 npm +safer-buffer 2.1.2 npm (+1 duplicate) +sed 4.8-1ubuntu2 deb +semver 7.6.0 npm +send 0.18.0 npm +sensible-utils 0.0.17 deb +serve-static 1.15.0 npm +set-function-length 1.2.2 npm +setprototypeof 1.2.0 npm +shebang-command 2.0.0 npm +shebang-regex 3.0.0 npm +side-channel 1.0.6 npm +signal-exit 4.1.0 npm +sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 go-module +sigs.k8s.io/structured-merge-diff/v4 v4.2.1 go-module +sigs.k8s.io/structured-merge-diff/v4 v4.2.3 go-module +sigs.k8s.io/yaml v1.2.0 go-module +sigs.k8s.io/yaml v1.3.0 go-module (+6 duplicates) +sigstore 2.3.0 npm +smart-buffer 4.2.0 npm +socket.io 4.7.5 npm +socket.io-adapter 2.5.5 npm +socket.io-parser 4.2.4 npm +socks 2.8.3 npm +socks-proxy-agent 8.0.3 npm +spdx-correct 3.2.0 npm +spdx-exceptions 2.5.0 npm +spdx-expression-parse 3.0.1 npm (+1 duplicate) +spdx-expression-parse 4.0.0 npm +spdx-license-ids 3.0.17 npm +split-ca 1.0.1 npm +sprintf-js 1.1.3 npm +ssh2 1.15.0 npm +ssri 10.0.5 npm +statuses 2.0.1 npm +stdlib go1.17.9 go-module +stdlib go1.18.1 go-module (+1 duplicate) +stdlib go1.21.11 go-module (+8 duplicates) +stdlib go1.22.5 go-module (+3 duplicates) +string-width 4.2.3 npm (+1 duplicate) +string-width 5.1.2 npm (+1 duplicate) +string_decoder 1.3.0 npm +strip-ansi 6.0.1 npm (+1 duplicate) +strip-ansi 7.1.0 npm (+1 duplicate) +sudo 1.9.9-1ubuntu2.4 deb +supports-color 9.4.0 npm +systeminformation 5.22.11 npm +sysvinit-utils 3.01-1ubuntu1 deb +tags.cncf.io/container-device-interface v0.7.2 go-module (+1 duplicate) +tags.cncf.io/container-device-interface v0.8.0 go-module (+3 duplicates) +tags.cncf.io/container-device-interface/specs-go v0.7.0 go-module (+1 duplicate) +tags.cncf.io/container-device-interface/specs-go v0.8.0 go-module (+3 duplicates) +tar 1.34+dfsg-1ubuntu0.1.22.04.2 deb +tar 6.2.1 npm +tar-fs 2.0.1 npm +tar-stream 2.2.0 npm +text-table 0.2.0 npm +tiny-relative-date 1.3.0 npm +toidentifier 1.0.1 npm +treeverse 3.0.0 npm +tuf-js 2.2.0 npm +tweetnacl 0.14.5 npm +type-is 1.6.18 npm +tzdata 2024a-0ubuntu0.22.04.1 deb +ubuntu-keyring 2021.03.26 deb +uidmap 1:4.8.1-2ubuntu2.2 deb +undici-types 5.26.5 npm +unique-filename 3.0.0 npm +unique-slug 4.0.0 npm +unpipe 1.0.0 npm +usrmerge 25ubuntu2 deb +util-deprecate 1.0.2 npm (+1 duplicate) +util-linux 2.37.2-4ubuntu3.4 deb +utils-merge 1.0.1 npm +validate-npm-package-license 3.0.4 npm +validate-npm-package-name 5.0.0 npm +vary 1.1.2 npm +walk-up-path 3.0.1 npm +which 2.0.2 npm +which 4.0.0 npm +wrap-ansi 7.0.0 npm +wrap-ansi 8.1.0 npm +wrappy 1.0.2 npm +write-file-atomic 5.0.1 npm +ws 8.17.1 npm +xfsprogs 5.13.0-1ubuntu2 deb +yallist 4.0.0 npm +zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From 33cad90ee766ccb4c1447188edfec1413afbe61a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Jul 2024 21:43:39 +0000 Subject: [PATCH 239/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5adf0f4..b7dd04e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.14.10 npm +@types/node 20.14.11 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 4bc46a7d8c89784d48d0ece69a3b183a0d518932 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 17 Jul 2024 15:45:35 +0000 Subject: [PATCH 240/337] Bot Updating Package Versions --- package_versions.txt | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b7dd04e..090b044 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -85,7 +85,7 @@ code.cloudfoundry.org/clock v1 color-convert 2.0.1 npm color-name 1.1.4 npm common-ancestor-path 1.0.1 npm -containerd.io 1.7.18-1 deb +containerd.io 1.7.19-1 deb content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.4.2 npm @@ -152,7 +152,8 @@ get-intrinsic 1. github.com/AlecAivazis/survey/v2 v2.3.2 go-module github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module github.com/Masterminds/semver v1.5.0 go-module -github.com/Microsoft/hcsshim v0.11.5 go-module (+2 duplicates) +github.com/Microsoft/hcsshim v0.11.5 go-module +github.com/Microsoft/hcsshim v0.11.7 go-module (+1 duplicate) github.com/NVIDIA/go-nvlib v0.6.0 go-module (+3 duplicates) github.com/NVIDIA/go-nvml v0.12.4-0 go-module (+3 duplicates) github.com/NVIDIA/nvidia-container-toolkit v1.16.0 go-module (+3 duplicates) @@ -202,7 +203,9 @@ github.com/containerd/cgroups/v3 v3 github.com/containerd/console v1.0.3 go-module (+6 duplicates) github.com/containerd/console v1.0.4 go-module github.com/containerd/containerd v1.6.2 go-module -github.com/containerd/containerd v1.7.18 go-module (+5 duplicates) +github.com/containerd/containerd v1.7.18 go-module +github.com/containerd/containerd v1.7.19 go-module (+4 duplicates) +github.com/containerd/containerd/api v1.7.19 go-module (+4 duplicates) github.com/containerd/continuity v0.2.2 go-module github.com/containerd/continuity v0.4.2 go-module (+4 duplicates) github.com/containerd/continuity v0.4.3 go-module @@ -215,10 +218,10 @@ github.com/containerd/imgcrypt v1 github.com/containerd/log v0.1.0 go-module (+6 duplicates) github.com/containerd/nri v0.6.1 go-module github.com/containerd/nydus-snapshotter v0.13.7 go-module +github.com/containerd/platforms v0.2.1 go-module (+3 duplicates) github.com/containerd/stargz-snapshotter/estargz v0.15.1 go-module github.com/containerd/ttrpc v1.1.0 go-module -github.com/containerd/ttrpc v1.2.4 go-module (+4 duplicates) -github.com/containerd/ttrpc v1.2.5 go-module +github.com/containerd/ttrpc v1.2.5 go-module (+5 duplicates) github.com/containerd/typeurl v1.0.2 go-module (+1 duplicate) github.com/containerd/typeurl/v2 v2.1.1 go-module (+5 duplicates) github.com/containerd/zfs v1.1.0 go-module @@ -235,7 +238,7 @@ github.com/davecgh/go-spew v1 github.com/deckarep/golang-set/v2 v2.3.0 go-module github.com/dimchansky/utfbom v1.1.1 go-module github.com/distribution/distribution/v3 v3.0.0-20210316161203-a01c71e2477e go-module -github.com/distribution/reference v0.6.0 go-module +github.com/distribution/reference v0.6.0 go-module (+2 duplicates) github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module github.com/docker/cli/cmd/docker v27.0.3 go-module @@ -320,7 +323,7 @@ github.com/jmoiron/sqlx v1 github.com/json-iterator/go v1.1.12 go-module (+1 duplicate) github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module github.com/klauspost/compress v1.15.0 go-module -github.com/klauspost/compress v1.16.0 go-module (+3 duplicates) +github.com/klauspost/compress v1.16.7 go-module (+3 duplicates) github.com/klauspost/compress v1.17.4 go-module github.com/klauspost/cpuid/v2 v2.0.4 go-module (+1 duplicate) github.com/magiconair/properties v1.8.6 go-module (+1 duplicate) @@ -444,8 +447,7 @@ glob 10 gnupg 2.2.27-3ubuntu2.1 deb gnupg-l10n 2.2.27-3ubuntu2.1 deb gnupg-utils 2.2.27-3ubuntu2.1 deb -go.etcd.io/bbolt v1.3.10 go-module -go.etcd.io/bbolt v1.3.7 go-module +go.etcd.io/bbolt v1.3.10 go-module (+1 duplicate) go.etcd.io/etcd/client/pkg/v3 v3.5.6 go-module go.etcd.io/etcd/pkg/v3 v3.5.6 go-module go.etcd.io/etcd/raft/v3 v3.5.6 go-module @@ -503,8 +505,7 @@ golang.org/x/net v0 golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 go-module golang.org/x/oauth2 v0.11.0 go-module (+1 duplicate) golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module -golang.org/x/sync v0.3.0 go-module (+4 duplicates) -golang.org/x/sync v0.5.0 go-module +golang.org/x/sync v0.5.0 go-module (+5 duplicates) golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module (+1 duplicate) golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module golang.org/x/sys v0.18.0 go-module (+4 duplicates) @@ -646,8 +647,8 @@ libkeyutils1 1. libkrb5-3 1.19.2-2ubuntu0.3 deb libkrb5support0 1.19.2-2ubuntu0.3 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.17+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.17+dfsg-0ubuntu0.22.04.1 deb +libldap-2.5-0 2.5.18+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.18+dfsg-0ubuntu0.22.04.1 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb liblzo2-2 2.10-2build3 deb @@ -859,7 +860,8 @@ ssri 10 statuses 2.0.1 npm stdlib go1.17.9 go-module stdlib go1.18.1 go-module (+1 duplicate) -stdlib go1.21.11 go-module (+8 duplicates) +stdlib go1.21.11 go-module (+2 duplicates) +stdlib go1.21.12 go-module (+5 duplicates) stdlib go1.22.5 go-module (+3 duplicates) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) From 9afce09b1f2b278fea625de3e00abcb8973a7f77 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 23 Jul 2024 20:38:42 +0000 Subject: [PATCH 241/337] Bot Updating Package Versions --- package_versions.txt | 81 ++++++++++++++++++++++++-------------------- 1 file changed, 44 insertions(+), 37 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 090b044..315c883 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.14.11 npm +@types/node 20.14.12 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -77,9 +77,9 @@ ci-info 4. cidr-regex 4.0.5 npm clean-stack 2.2.0 npm cli-columns 4.0.0 npm -cloud.google.com/go/compute/metadata v0.2.3 go-module -cloud.google.com/go/logging v1.8.1 go-module -cloud.google.com/go/longrunning v0.5.2 go-module +cloud.google.com/go/compute/metadata v0.3.0 go-module +cloud.google.com/go/logging v1.9.0 go-module +cloud.google.com/go/longrunning v0.5.4 go-module cmd-shim 6.0.2 npm code.cloudfoundry.org/clock v1.1.0 go-module color-convert 2.0.1 npm @@ -112,8 +112,8 @@ destroy 1. diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:27.0.3-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:27.0.3-1~ubuntu.22.04~jammy deb +docker-ce 5:27.1.0-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:27.1.0-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -152,8 +152,7 @@ get-intrinsic 1. github.com/AlecAivazis/survey/v2 v2.3.2 go-module github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module github.com/Masterminds/semver v1.5.0 go-module -github.com/Microsoft/hcsshim v0.11.5 go-module -github.com/Microsoft/hcsshim v0.11.7 go-module (+1 duplicate) +github.com/Microsoft/hcsshim v0.11.7 go-module (+2 duplicates) github.com/NVIDIA/go-nvlib v0.6.0 go-module (+3 duplicates) github.com/NVIDIA/go-nvml v0.12.4-0 go-module (+3 duplicates) github.com/NVIDIA/nvidia-container-toolkit v1.16.0 go-module (+3 duplicates) @@ -203,29 +202,31 @@ github.com/containerd/cgroups/v3 v3 github.com/containerd/console v1.0.3 go-module (+6 duplicates) github.com/containerd/console v1.0.4 go-module github.com/containerd/containerd v1.6.2 go-module -github.com/containerd/containerd v1.7.18 go-module github.com/containerd/containerd v1.7.19 go-module (+4 duplicates) -github.com/containerd/containerd/api v1.7.19 go-module (+4 duplicates) +github.com/containerd/containerd v1.7.20 go-module +github.com/containerd/containerd/api v1.7.19 go-module (+5 duplicates) github.com/containerd/continuity v0.2.2 go-module github.com/containerd/continuity v0.4.2 go-module (+4 duplicates) github.com/containerd/continuity v0.4.3 go-module github.com/containerd/errdefs v0.1.0 go-module (+5 duplicates) github.com/containerd/fifo v1.1.0 go-module (+5 duplicates) -github.com/containerd/go-cni v1.1.9 go-module (+2 duplicates) +github.com/containerd/go-cni v1.1.10 go-module +github.com/containerd/go-cni v1.1.9 go-module (+1 duplicate) github.com/containerd/go-runc v1.0.0 go-module (+4 duplicates) github.com/containerd/go-runc v1.1.0 go-module github.com/containerd/imgcrypt v1.1.8 go-module github.com/containerd/log v0.1.0 go-module (+6 duplicates) github.com/containerd/nri v0.6.1 go-module github.com/containerd/nydus-snapshotter v0.13.7 go-module -github.com/containerd/platforms v0.2.1 go-module (+3 duplicates) +github.com/containerd/platforms v0.2.1 go-module (+4 duplicates) github.com/containerd/stargz-snapshotter/estargz v0.15.1 go-module github.com/containerd/ttrpc v1.1.0 go-module github.com/containerd/ttrpc v1.2.5 go-module (+5 duplicates) github.com/containerd/typeurl v1.0.2 go-module (+1 duplicate) github.com/containerd/typeurl/v2 v2.1.1 go-module (+5 duplicates) github.com/containerd/zfs v1.1.0 go-module -github.com/containernetworking/cni v1.1.2 go-module (+2 duplicates) +github.com/containernetworking/cni v1.1.2 go-module (+1 duplicate) +github.com/containernetworking/cni v1.2.2 go-module github.com/containernetworking/plugins v1.2.0 go-module github.com/containernetworking/plugins v1.4.0 go-module github.com/containers/ocicrypt v1.1.10 go-module @@ -241,12 +242,12 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.6.0 go-module (+2 duplicates) github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v27.0.3 go-module +github.com/docker/cli/cmd/docker v27.1.0 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v27.0.3 go-module (+1 duplicate) +github.com/docker/docker v27.1.0 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -271,13 +272,13 @@ github.com/fvbommel/sortorder v1 github.com/go-jose/go-jose/v3 v3.0.3 go-module github.com/go-logr/logr v1.2.2 go-module github.com/go-logr/logr v1.2.4 go-module (+1 duplicate) -github.com/go-logr/logr v1.3.0 go-module +github.com/go-logr/logr v1.4.1 go-module github.com/go-logr/stdr v1.2.2 go-module (+3 duplicates) github.com/goccy/go-yaml v1.9.5 go-module (+1 duplicate) github.com/godbus/dbus/v5 v5.0.6 go-module github.com/godbus/dbus/v5 v5.1.0 go-module (+4 duplicates) +github.com/gofrs/flock v0.12.0 go-module github.com/gofrs/flock v0.8.0 go-module -github.com/gofrs/flock v0.8.1 go-module github.com/gogo/googleapis v1.4.1 go-module (+1 duplicate) github.com/gogo/protobuf v1.3.2 go-module (+6 duplicates) github.com/golang-jwt/jwt/v4 v4.5.0 go-module @@ -292,11 +293,11 @@ github.com/google/go-cmp v0 github.com/google/go-cmp v0.5.9 go-module (+4 duplicates) github.com/google/go-cmp v0.6.0 go-module github.com/google/gofuzz v1.2.0 go-module (+1 duplicate) -github.com/google/s2a-go v0.1.4 go-module +github.com/google/s2a-go v0.1.7 go-module github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module (+1 duplicate) github.com/google/uuid v1.3.1 go-module (+1 duplicate) github.com/google/uuid v1.6.0 go-module (+4 duplicates) -github.com/googleapis/enterprise-certificate-proxy v0.2.4 go-module +github.com/googleapis/enterprise-certificate-proxy v0.3.2 go-module github.com/googleapis/gax-go/v2 v2.12.0 go-module github.com/gorilla/mux v1.8.0 go-module github.com/gorilla/mux v1.8.1 go-module @@ -306,12 +307,14 @@ github.com/grpc-ecosystem/grpc-gateway v1 github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 go-module (+1 duplicate) github.com/hashicorp/errwrap v1.1.0 go-module (+6 duplicates) github.com/hashicorp/go-immutable-radix v1.3.1 go-module +github.com/hashicorp/go-immutable-radix/v2 v2.1.0 go-module github.com/hashicorp/go-memdb v1.3.2 go-module github.com/hashicorp/go-msgpack v0.5.5 go-module github.com/hashicorp/go-multierror v1.1.1 go-module (+6 duplicates) github.com/hashicorp/go-sockaddr v1.0.2 go-module github.com/hashicorp/go-version v1.3.0 go-module github.com/hashicorp/golang-lru v0.5.4 go-module +github.com/hashicorp/golang-lru/v2 v2.0.7 go-module github.com/hashicorp/memberlist v0.4.0 go-module github.com/hashicorp/serf v0.8.5 go-module github.com/imdario/mergo v0.3.12 go-module @@ -324,7 +327,7 @@ github.com/json-iterator/go v1 github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module github.com/klauspost/compress v1.15.0 go-module github.com/klauspost/compress v1.16.7 go-module (+3 duplicates) -github.com/klauspost/compress v1.17.4 go-module +github.com/klauspost/compress v1.17.9 go-module github.com/klauspost/cpuid/v2 v2.0.4 go-module (+1 duplicate) github.com/magiconair/properties v1.8.6 go-module (+1 duplicate) github.com/mattn/go-colorable v0.1.12 go-module (+2 duplicates) @@ -343,7 +346,7 @@ github.com/mitchellh/hashstructure/v2 v2 github.com/mitchellh/mapstructure v1.4.3 go-module github.com/mitchellh/reflectwalk v1.0.2 go-module github.com/moby/buildkit v0.10.0-rc2.0.20220308185020-fdecd0ae108b go-module -github.com/moby/buildkit v0.14.1 go-module +github.com/moby/buildkit v0.15.0 go-module github.com/moby/docker-image-spec v1.3.1 go-module github.com/moby/ipvs v1.1.0 go-module github.com/moby/locker v1.0.1 go-module (+3 duplicates) @@ -393,7 +396,7 @@ github.com/prometheus/client_model v0 github.com/prometheus/common v0.32.1 go-module github.com/prometheus/common v0.37.0 go-module github.com/prometheus/common v0.44.0 go-module -github.com/prometheus/procfs v0.12.0 go-module +github.com/prometheus/procfs v0.15.1 go-module github.com/prometheus/procfs v0.7.3 go-module github.com/prometheus/procfs v0.8.0 go-module github.com/qri-io/jsonpointer v0.1.0 go-module @@ -414,7 +417,7 @@ github.com/spf13/cobra v1 github.com/spf13/cobra v1.8.1 go-module github.com/spf13/pflag v1.0.5 go-module (+4 duplicates) github.com/stefanberger/go-pkcs11uri v0.0.0-20230803200340-78284954bff6 go-module -github.com/stretchr/testify v1.8.4 go-module +github.com/stretchr/testify v1.9.0 go-module github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module (+6 duplicates) github.com/tchap/go-patricia/v2 v2.3.1 go-module github.com/theupdateframework/notary v0.6.1 go-module @@ -423,8 +426,9 @@ github.com/timtadh/lexmachine v0 github.com/tinylib/msgp v1.1.8 go-module github.com/tonistiigi/fsutil v0.0.0-20220315205639-9ed612626da3 go-module github.com/tonistiigi/fsutil v0.0.0-20240424095704-91a3fc46842c go-module -github.com/tonistiigi/go-actions-cache v0.0.0-20240320205438-9794bdbb2fb4 go-module +github.com/tonistiigi/go-actions-cache v0.0.0-20240327122527-58651d5e11d6 go-module github.com/tonistiigi/go-archvariant v1.0.0 go-module +github.com/tonistiigi/go-csvvalue v0.0.0-20240710180619-ddb21b71c0b4 go-module github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module (+1 duplicate) github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f go-module github.com/urfave/cli v1.22.1 go-module @@ -493,7 +497,7 @@ go.uber.org/multierr v1 go.uber.org/zap v1.21.0 go-module golang.org/x/crypto v0.0.0-20211202192323-5770296d904e go-module golang.org/x/crypto v0.21.0 go-module -golang.org/x/crypto v0.22.0 go-module +golang.org/x/crypto v0.23.0 go-module golang.org/x/exp v0.0.0-20231006140011-7918f672742d go-module golang.org/x/mod v0.12.0 go-module golang.org/x/mod v0.17.0 go-module @@ -501,33 +505,37 @@ golang.org/x/mod v0 golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module (+1 duplicate) golang.org/x/net v0.0.0-20211216030914-fe4d6282115f go-module golang.org/x/net v0.23.0 go-module (+2 duplicates) -golang.org/x/net v0.24.0 go-module (+1 duplicate) +golang.org/x/net v0.24.0 go-module +golang.org/x/net v0.25.0 go-module golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 go-module -golang.org/x/oauth2 v0.11.0 go-module (+1 duplicate) +golang.org/x/oauth2 v0.11.0 go-module +golang.org/x/oauth2 v0.21.0 go-module golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module -golang.org/x/sync v0.5.0 go-module (+5 duplicates) +golang.org/x/sync v0.5.0 go-module (+4 duplicates) +golang.org/x/sync v0.7.0 go-module golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module (+1 duplicate) golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module golang.org/x/sys v0.18.0 go-module (+4 duplicates) -golang.org/x/sys v0.19.0 go-module (+2 duplicates) +golang.org/x/sys v0.19.0 go-module +golang.org/x/sys v0.21.0 go-module (+1 duplicate) golang.org/x/sys v0.22.0 go-module (+3 duplicates) golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module golang.org/x/term v0.18.0 go-module -golang.org/x/text v0.14.0 go-module (+3 duplicates) +golang.org/x/text v0.14.0 go-module (+2 duplicates) +golang.org/x/text v0.15.0 go-module golang.org/x/text v0.3.7 go-module (+2 duplicates) golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 go-module golang.org/x/time v0.3.0 go-module golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module (+1 duplicate) -google.golang.org/api v0.128.0 go-module -google.golang.org/appengine v1.6.8 go-module +google.golang.org/api v0.149.0 go-module google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa go-module google.golang.org/genproto v0.0.0-20230920204549-e6e6cdab5c13 go-module (+4 duplicates) -google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b go-module +google.golang.org/genproto v0.0.0-20231211222908-989df2bf70f3 go-module google.golang.org/genproto/googleapis/api v0.0.0-20230913181813-007df8e322eb go-module -google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b go-module +google.golang.org/genproto/googleapis/api v0.0.0-20231120223509-83a465c0220f go-module google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 go-module (+4 duplicates) -google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b go-module +google.golang.org/genproto/googleapis/rpc v0.0.0-20231212172506-995d672761c0 go-module google.golang.org/grpc v1.44.0 go-module google.golang.org/grpc v1.59.0 go-module (+5 duplicates) google.golang.org/protobuf v1.27.1 go-module (+1 duplicate) @@ -860,8 +868,7 @@ ssri 10 statuses 2.0.1 npm stdlib go1.17.9 go-module stdlib go1.18.1 go-module (+1 duplicate) -stdlib go1.21.11 go-module (+2 duplicates) -stdlib go1.21.12 go-module (+5 duplicates) +stdlib go1.21.12 go-module (+8 duplicates) stdlib go1.22.5 go-module (+3 duplicates) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) From 7cd24c8c51f7f901da9ccc6ea8c0017167282ed1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 24 Jul 2024 04:42:58 +0000 Subject: [PATCH 242/337] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 315c883..d4f9896 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -112,8 +112,8 @@ destroy 1. diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:27.1.0-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:27.1.0-1~ubuntu.22.04~jammy deb +docker-ce 5:27.1.1-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:27.1.1-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -242,12 +242,12 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.6.0 go-module (+2 duplicates) github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v27.1.0 go-module +github.com/docker/cli/cmd/docker v27.1.1 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v27.1.0 go-module (+1 duplicate) +github.com/docker/docker v27.1.1 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module From 15fbd99ed99154eeef4c0efb9134fdbf0dad50cb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 27 Jul 2024 21:39:02 +0000 Subject: [PATCH 243/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d4f9896..5544398 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -105,7 +105,7 @@ debconf 1. debianutils 5.5-1ubuntu2 deb debug 2.6.9 npm (+3 duplicates) debug 4.3.4 npm -debug 4.3.5 npm +debug 4.3.6 npm define-data-property 1.1.4 npm depd 2.0.0 npm destroy 1.2.0 npm From 6493c641f062a017eb2da3e8cee568e7a90a00de Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 30 Jul 2024 01:51:25 +0000 Subject: [PATCH 244/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 5544398..f469773 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 20.14.12 npm +@types/node 22.0.0 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -897,7 +897,7 @@ type-is 1. tzdata 2024a-0ubuntu0.22.04.1 deb ubuntu-keyring 2021.03.26 deb uidmap 1:4.8.1-2ubuntu2.2 deb -undici-types 5.26.5 npm +undici-types 6.11.1 npm unique-filename 3.0.0 npm unique-slug 4.0.0 npm unpipe 1.0.0 npm From 0d4cc7a926511209edddf326c8809f8dc1421553 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 30 Jul 2024 21:42:34 +0000 Subject: [PATCH 245/337] Bot Updating Package Versions --- package_versions.txt | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index f469773..07a642e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -155,7 +155,7 @@ github.com/Masterminds/semver v1 github.com/Microsoft/hcsshim v0.11.7 go-module (+2 duplicates) github.com/NVIDIA/go-nvlib v0.6.0 go-module (+3 duplicates) github.com/NVIDIA/go-nvml v0.12.4-0 go-module (+3 duplicates) -github.com/NVIDIA/nvidia-container-toolkit v1.16.0 go-module (+3 duplicates) +github.com/NVIDIA/nvidia-container-toolkit v1.16.1 go-module (+3 duplicates) github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module github.com/a8m/envsubst v1.3.0 go-module (+1 duplicate) github.com/agext/levenshtein v1.2.3 go-module @@ -242,7 +242,7 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.6.0 go-module (+2 duplicates) github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v27.1.1 go-module +github.com/docker/cli/cmd/docker 27.1.1 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module @@ -684,8 +684,8 @@ libnpmteam 6. libnpmversion 6.0.1 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.16.0-1 deb -libnvidia-container1 1.16.0-1 deb +libnvidia-container-tools 1.16.1-1 deb +libnvidia-container1 1.16.1-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.4 deb @@ -697,8 +697,8 @@ libpcre3 2: libprocps8 2:3.3.17-6ubuntu2.1 deb libpsl5 0.21.0-1.2build2 deb libpython3-stdlib 3.10.6-1~22.04 deb -libpython3.10-minimal 3.10.12-1~22.04.4 deb -libpython3.10-stdlib 3.10.12-1~22.04.4 deb +libpython3.10-minimal 3.10.12-1~22.04.5 deb +libpython3.10-stdlib 3.10.12-1~22.04.5 deb libreadline8 8.1.2-1 deb librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb @@ -784,8 +784,8 @@ npm-pick-manifest 9. npm-profile 9.0.2 npm npm-registry-fetch 17.0.0 npm npm-user-validate 2.0.0 npm -nvidia-container-toolkit 1.16.0-1 deb -nvidia-container-toolkit-base 1.16.0-1 deb +nvidia-container-toolkit 1.16.1-1 deb +nvidia-container-toolkit-base 1.16.1-1 deb nvidia-docker2 2.14.0-1 deb object-assign 4.1.1 npm object-inspect 1.13.2 npm @@ -818,8 +818,8 @@ publicsuffix 20 pump 3.0.0 npm python3 3.10.6-1~22.04 deb python3-minimal 3.10.6-1~22.04 deb -python3.10 3.10.12-1~22.04.4 deb -python3.10-minimal 3.10.12-1~22.04.4 deb +python3.10 3.10.12-1~22.04.5 deb +python3.10-minimal 3.10.12-1~22.04.5 deb qrcode-terminal 0.12.0 npm qs 6.11.0 npm range-parser 1.2.1 npm From aacdddd5275b3e36b05122d615020b8c2dc063c3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 1 Aug 2024 18:44:28 +0000 Subject: [PATCH 246/337] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 07a642e..15ebece 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.0.0 npm +@types/node 22.0.2 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -655,8 +655,8 @@ libkeyutils1 1. libkrb5-3 1.19.2-2ubuntu0.3 deb libkrb5support0 1.19.2-2ubuntu0.3 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.18+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.18+dfsg-0ubuntu0.22.04.1 deb +libldap-2.5-0 2.5.18+dfsg-0ubuntu0.22.04.2 deb +libldap-common 2.5.18+dfsg-0ubuntu0.22.04.2 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb liblzo2-2 2.10-2build3 deb @@ -791,7 +791,7 @@ object-assign 4. object-inspect 1.13.2 npm on-finished 2.4.1 npm once 1.4.0 npm -openssl 3.0.2-0ubuntu1.16 deb +openssl 3.0.2-0ubuntu1.17 deb p-map 4.0.0 npm pacote 18.0.3 npm parse-conflict-json 3.0.1 npm @@ -877,7 +877,7 @@ strip-ansi 6. strip-ansi 7.1.0 npm (+1 duplicate) sudo 1.9.9-1ubuntu2.4 deb supports-color 9.4.0 npm -systeminformation 5.22.11 npm +systeminformation 5.23.2 npm sysvinit-utils 3.01-1ubuntu1 deb tags.cncf.io/container-device-interface v0.7.2 go-module (+1 duplicate) tags.cncf.io/container-device-interface v0.8.0 go-module (+3 duplicates) From 41fd7c23191a1597c49201487cb190ea743fb6ff Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 5 Aug 2024 21:39:03 +0000 Subject: [PATCH 247/337] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 15ebece..6db6e35 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.0.2 npm +@types/node 22.1.0 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -98,7 +98,7 @@ cpu-features 0. cron 3.0pl1-137ubuntu3 deb cross-spawn 7.0.3 npm cssesc 3.0.0 npm -curl 7.81.0-1ubuntu1.16 deb +curl 7.81.0-1ubuntu1.17 deb dario.cat/mergo v1.0.0 go-module (+1 duplicate) dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb @@ -627,7 +627,7 @@ libcap2 1: libcap2-bin 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.16 deb +libcurl4 7.81.0-1ubuntu1.17 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb @@ -877,7 +877,7 @@ strip-ansi 6. strip-ansi 7.1.0 npm (+1 duplicate) sudo 1.9.9-1ubuntu2.4 deb supports-color 9.4.0 npm -systeminformation 5.23.2 npm +systeminformation 5.23.3 npm sysvinit-utils 3.01-1ubuntu1 deb tags.cncf.io/container-device-interface v0.7.2 go-module (+1 duplicate) tags.cncf.io/container-device-interface v0.8.0 go-module (+3 duplicates) @@ -897,7 +897,7 @@ type-is 1. tzdata 2024a-0ubuntu0.22.04.1 deb ubuntu-keyring 2021.03.26 deb uidmap 1:4.8.1-2ubuntu2.2 deb -undici-types 6.11.1 npm +undici-types 6.13.0 npm unique-filename 3.0.0 npm unique-slug 4.0.0 npm unpipe 1.0.0 npm From 129f437aff2ce5bf963eb31a2480daff4668c212 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 6 Aug 2024 21:42:04 +0000 Subject: [PATCH 248/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6db6e35..8884e10 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -877,7 +877,7 @@ strip-ansi 6. strip-ansi 7.1.0 npm (+1 duplicate) sudo 1.9.9-1ubuntu2.4 deb supports-color 9.4.0 npm -systeminformation 5.23.3 npm +systeminformation 5.23.4 npm sysvinit-utils 3.01-1ubuntu1 deb tags.cncf.io/container-device-interface v0.7.2 go-module (+1 duplicate) tags.cncf.io/container-device-interface v0.8.0 go-module (+3 duplicates) From f37feb3ffd9bd0739fbc08a4dd499ae5c696d6ff Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 8 Aug 2024 18:48:41 +0000 Subject: [PATCH 249/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8884e10..cdfd873 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -713,7 +713,7 @@ libsmartcols1 2. libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.3 deb -libssl3 3.0.2-0ubuntu1.16 deb +libssl3 3.0.2-0ubuntu1.17 deb libstdc++6 12.3.0-1ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.12 deb libtasn1-6 4.18.0-4build1 deb From 261e95636d3da0044f37d040b3ca689ef682e82b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 10 Aug 2024 03:41:29 +0000 Subject: [PATCH 250/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index cdfd873..9012d88 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.1.0 npm +@types/node 22.2.0 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -242,7 +242,7 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.6.0 go-module (+2 duplicates) github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker 27.1.1 go-module +github.com/docker/cli/cmd/docker v27.1.1 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module From a5d67a05f522c136615ce05d378df4ba9401e39b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 13 Aug 2024 21:42:42 +0000 Subject: [PATCH 251/337] Bot Updating Package Versions --- package_versions.txt | 57 +++++++++++++++++++------------------------- 1 file changed, 24 insertions(+), 33 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9012d88..b5f6f51 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -85,7 +85,7 @@ code.cloudfoundry.org/clock v1 color-convert 2.0.1 npm color-name 1.1.4 npm common-ancestor-path 1.0.1 npm -containerd.io 1.7.19-1 deb +containerd.io 1.7.20-1 deb content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.4.2 npm @@ -112,8 +112,8 @@ destroy 1. diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:27.1.1-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:27.1.1-1~ubuntu.22.04~jammy deb +docker-ce 5:27.1.2-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:27.1.2-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -202,8 +202,7 @@ github.com/containerd/cgroups/v3 v3 github.com/containerd/console v1.0.3 go-module (+6 duplicates) github.com/containerd/console v1.0.4 go-module github.com/containerd/containerd v1.6.2 go-module -github.com/containerd/containerd v1.7.19 go-module (+4 duplicates) -github.com/containerd/containerd v1.7.20 go-module +github.com/containerd/containerd v1.7.20 go-module (+5 duplicates) github.com/containerd/containerd/api v1.7.19 go-module (+5 duplicates) github.com/containerd/continuity v0.2.2 go-module github.com/containerd/continuity v0.4.2 go-module (+4 duplicates) @@ -242,12 +241,12 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.6.0 go-module (+2 duplicates) github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v27.1.1 go-module +github.com/docker/cli/cmd/docker v27.1.2 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v27.1.1 go-module (+1 duplicate) +github.com/docker/docker v27.1.2 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -271,13 +270,13 @@ github.com/fsnotify/fsnotify v1 github.com/fvbommel/sortorder v1.0.1 go-module github.com/go-jose/go-jose/v3 v3.0.3 go-module github.com/go-logr/logr v1.2.2 go-module -github.com/go-logr/logr v1.2.4 go-module (+1 duplicate) +github.com/go-logr/logr v1.3.0 go-module (+1 duplicate) github.com/go-logr/logr v1.4.1 go-module github.com/go-logr/stdr v1.2.2 go-module (+3 duplicates) github.com/goccy/go-yaml v1.9.5 go-module (+1 duplicate) github.com/godbus/dbus/v5 v5.0.6 go-module github.com/godbus/dbus/v5 v5.1.0 go-module (+4 duplicates) -github.com/gofrs/flock v0.12.0 go-module +github.com/gofrs/flock v0.12.1 go-module github.com/gofrs/flock v0.8.0 go-module github.com/gogo/googleapis v1.4.1 go-module (+1 duplicate) github.com/gogo/protobuf v1.3.2 go-module (+6 duplicates) @@ -290,12 +289,11 @@ github.com/golang/protobuf v1 github.com/google/btree v1.1.2 go-module github.com/google/certificate-transparency-go v1.1.4 go-module github.com/google/go-cmp v0.5.7 go-module -github.com/google/go-cmp v0.5.9 go-module (+4 duplicates) -github.com/google/go-cmp v0.6.0 go-module +github.com/google/go-cmp v0.6.0 go-module (+5 duplicates) github.com/google/gofuzz v1.2.0 go-module (+1 duplicate) github.com/google/s2a-go v0.1.7 go-module github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module (+1 duplicate) -github.com/google/uuid v1.3.1 go-module (+1 duplicate) +github.com/google/uuid v1.4.0 go-module (+1 duplicate) github.com/google/uuid v1.6.0 go-module (+4 duplicates) github.com/googleapis/enterprise-certificate-proxy v0.3.2 go-module github.com/googleapis/gax-go/v2 v2.12.0 go-module @@ -346,7 +344,7 @@ github.com/mitchellh/hashstructure/v2 v2 github.com/mitchellh/mapstructure v1.4.3 go-module github.com/mitchellh/reflectwalk v1.0.2 go-module github.com/moby/buildkit v0.10.0-rc2.0.20220308185020-fdecd0ae108b go-module -github.com/moby/buildkit v0.15.0 go-module +github.com/moby/buildkit v0.15.1 go-module github.com/moby/docker-image-spec v1.3.1 go-module github.com/moby/ipvs v1.1.0 go-module github.com/moby/locker v1.0.1 go-module (+3 duplicates) @@ -362,7 +360,9 @@ github.com/moby/sys/sequential v0 github.com/moby/sys/signal v0.6.0 go-module github.com/moby/sys/signal v0.7.0 go-module (+2 duplicates) github.com/moby/sys/symlink v0.2.0 go-module (+2 duplicates) -github.com/moby/sys/user v0.1.0 go-module (+4 duplicates) +github.com/moby/sys/user v0.1.0 go-module (+3 duplicates) +github.com/moby/sys/user v0.3.0 go-module +github.com/moby/sys/userns v0.1.0 go-module github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 go-module github.com/moby/term v0.5.0 go-module github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module (+1 duplicate) @@ -459,15 +459,13 @@ go.etcd.io/etcd/server/v3 v3 go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module go.opencensus.io v0.24.0 go-module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.29.0 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.45.0 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 go-module (+1 duplicate) go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.29.0 go-module go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.46.1 go-module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.29.0 go-module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 go-module (+1 duplicate) go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 go-module -go.opentelemetry.io/otel v1.19.0 go-module (+1 duplicate) -go.opentelemetry.io/otel v1.21.0 go-module +go.opentelemetry.io/otel v1.21.0 go-module (+2 duplicates) go.opentelemetry.io/otel v1.4.1 go-module go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.42.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.42.0 go-module @@ -481,14 +479,11 @@ go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1 go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.21.0 go-module go.opentelemetry.io/otel/internal/metric v0.27.0 go-module go.opentelemetry.io/otel/metric v0.27.0 go-module -go.opentelemetry.io/otel/metric v1.19.0 go-module (+1 duplicate) -go.opentelemetry.io/otel/metric v1.21.0 go-module -go.opentelemetry.io/otel/sdk v1.19.0 go-module -go.opentelemetry.io/otel/sdk v1.21.0 go-module +go.opentelemetry.io/otel/metric v1.21.0 go-module (+2 duplicates) +go.opentelemetry.io/otel/sdk v1.21.0 go-module (+1 duplicate) go.opentelemetry.io/otel/sdk v1.4.1 go-module go.opentelemetry.io/otel/sdk/metric v1.21.0 go-module -go.opentelemetry.io/otel/trace v1.19.0 go-module (+1 duplicate) -go.opentelemetry.io/otel/trace v1.21.0 go-module +go.opentelemetry.io/otel/trace v1.21.0 go-module (+2 duplicates) go.opentelemetry.io/otel/trace v1.4.1 go-module go.opentelemetry.io/proto/otlp v0.12.0 go-module go.opentelemetry.io/proto/otlp v1.0.0 go-module (+1 duplicate) @@ -517,8 +512,7 @@ golang.org/x/sys v0 golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module golang.org/x/sys v0.18.0 go-module (+4 duplicates) golang.org/x/sys v0.19.0 go-module -golang.org/x/sys v0.21.0 go-module (+1 duplicate) -golang.org/x/sys v0.22.0 go-module (+3 duplicates) +golang.org/x/sys v0.22.0 go-module (+5 duplicates) golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module golang.org/x/term v0.18.0 go-module golang.org/x/text v0.14.0 go-module (+2 duplicates) @@ -530,12 +524,9 @@ golang.org/x/time v0 golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module (+1 duplicate) google.golang.org/api v0.149.0 go-module google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa go-module -google.golang.org/genproto v0.0.0-20230920204549-e6e6cdab5c13 go-module (+4 duplicates) -google.golang.org/genproto v0.0.0-20231211222908-989df2bf70f3 go-module -google.golang.org/genproto/googleapis/api v0.0.0-20230913181813-007df8e322eb go-module -google.golang.org/genproto/googleapis/api v0.0.0-20231120223509-83a465c0220f go-module -google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 go-module (+4 duplicates) -google.golang.org/genproto/googleapis/rpc v0.0.0-20231212172506-995d672761c0 go-module +google.golang.org/genproto v0.0.0-20231211222908-989df2bf70f3 go-module (+5 duplicates) +google.golang.org/genproto/googleapis/api v0.0.0-20231120223509-83a465c0220f go-module (+1 duplicate) +google.golang.org/genproto/googleapis/rpc v0.0.0-20231212172506-995d672761c0 go-module (+5 duplicates) google.golang.org/grpc v1.44.0 go-module google.golang.org/grpc v1.59.0 go-module (+5 duplicates) google.golang.org/protobuf v1.27.1 go-module (+1 duplicate) @@ -868,7 +859,7 @@ ssri 10 statuses 2.0.1 npm stdlib go1.17.9 go-module stdlib go1.18.1 go-module (+1 duplicate) -stdlib go1.21.12 go-module (+8 duplicates) +stdlib go1.21.13 go-module (+8 duplicates) stdlib go1.22.5 go-module (+3 duplicates) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) From 090fbc05ec173e6589c753631b23e2b604a477a1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 15 Aug 2024 04:41:55 +0000 Subject: [PATCH 252/337] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b5f6f51..24d0ce8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.2.0 npm +@types/node 22.3.0 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -633,7 +633,7 @@ libgcrypt20 1. libgmp10 2:6.2.1+dfsg-3ubuntu1 deb libgnutls30 3.7.3-4ubuntu1.5 deb libgpg-error0 1.43-3 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.3 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.4 deb libhogweed6 3.7.3-1build2 deb libicu70 70.1-2 deb libidn2-0 2.3.2-2build1 deb @@ -641,10 +641,10 @@ libinih1 53 libip4tc2 1.8.7-1ubuntu5.2 deb libip6tc2 1.8.7-1ubuntu5.2 deb libjq1 1.6-2.1ubuntu3 deb -libk5crypto3 1.19.2-2ubuntu0.3 deb +libk5crypto3 1.19.2-2ubuntu0.4 deb libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.3 deb -libkrb5support0 1.19.2-2ubuntu0.3 deb +libkrb5-3 1.19.2-2ubuntu0.4 deb +libkrb5support0 1.19.2-2ubuntu0.4 deb libksba8 1.6.0-2ubuntu0.2 deb libldap-2.5-0 2.5.18+dfsg-0ubuntu0.22.04.2 deb libldap-common 2.5.18+dfsg-0ubuntu0.22.04.2 deb @@ -888,7 +888,7 @@ type-is 1. tzdata 2024a-0ubuntu0.22.04.1 deb ubuntu-keyring 2021.03.26 deb uidmap 1:4.8.1-2ubuntu2.2 deb -undici-types 6.13.0 npm +undici-types 6.18.2 npm unique-filename 3.0.0 npm unique-slug 4.0.0 npm unpipe 1.0.0 npm From a2541956922ed1a719417e72dda5df341a4d0b20 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 20 Aug 2024 21:40:05 +0000 Subject: [PATCH 253/337] Bot Updating Templated Files --- Jenkinsfile | 58 +++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 50 insertions(+), 8 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0e1331f..f46d1d4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,6 +17,8 @@ pipeline { GITLAB_TOKEN=credentials('b6f0f1dd-6952-4cf6-95d1-9c06380283f0') GITLAB_NAMESPACE=credentials('gitlab-namespace-id') DOCKERHUB_TOKEN=credentials('docker-hub-ci-pat') + QUAYIO_API_TOKEN=credentials('quayio-repo-api-token') + GIT_SIGNING_KEY=credentials('484fbca6-9a4f-455e-b9e3-97ac98785f5f') BUILD_VERSION_ARG = 'KASM_VERSION' LS_USER = 'linuxserver' LS_REPO = 'docker-kasm' @@ -36,9 +38,23 @@ pipeline { CI_WEBPATH='' } stages { + stage("Set git config"){ + steps{ + sh '''#!/bin/bash + cat ${GIT_SIGNING_KEY} > /config/.ssh/id_sign + chmod 600 /config/.ssh/id_sign + ssh-keygen -y -f /config/.ssh/id_sign > /config/.ssh/id_sign.pub + echo "Using $(ssh-keygen -lf /config/.ssh/id_sign) to sign commits" + git config --global gpg.format ssh + git config --global user.signingkey /config/.ssh/id_sign + git config --global commit.gpgsign true + ''' + } + } // Setup all the basic environment variables needed for the build stage("Set ENV Variables base"){ steps{ + echo "Running on node: ${NODE_NAME}" sh '''#! /bin/bash containers=$(docker ps -aq) if [[ -n "${containers}" ]]; then @@ -442,10 +458,10 @@ pipeline { } } /* ####################### - GitLab Mirroring + GitLab Mirroring and Quay.io Repo Visibility ####################### */ - // Ping into Gitlab to mirror this repo and have a registry endpoint - stage("GitLab Mirror"){ + // Ping into Gitlab to mirror this repo and have a registry endpoint & mark this repo on Quay.io as public + stage("GitLab Mirror and Quay.io Visibility"){ when { environment name: 'EXIT_STATUS', value: '' } @@ -461,6 +477,8 @@ pipeline { "visibility":"public"}' ''' sh '''curl -H "Private-Token: ${GITLAB_TOKEN}" -X PUT "https://gitlab.com/api/v4/projects/Linuxserver.io%2F${LS_REPO}" \ -d "mirror=true&import_url=https://github.com/linuxserver/${LS_REPO}.git" ''' + sh '''curl -H "Content-Type: application/json" -H "Authorization: Bearer ${QUAYIO_API_TOKEN}" -X POST "https://quay.io/api/v1/repository${QUAYIMAGE/quay.io/}/changevisibility" \ + -d '{"visibility":"public"}' ||: ''' } } /* ############### @@ -555,7 +573,7 @@ pipeline { --provenance=false --sbom=false \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh "docker tag ${IMAGE}:arm64v8-${META_TAG} ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" - retry(5) { + retry_backoff(5,5) { sh "docker push ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" } sh '''#! /bin/bash @@ -711,7 +729,7 @@ pipeline { passwordVariable: 'QUAYPASS' ] ]) { - retry(5) { + retry_backoff(5,5) { sh '''#! /bin/bash set -e echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin @@ -729,7 +747,7 @@ pipeline { docker push ${PUSHIMAGE}:${META_TAG} docker push ${PUSHIMAGE}:${EXT_RELEASE_TAG} if [ -n "${SEMVER}" ]; then - docker push ${PUSHIMAGE}:${SEMVER} + docker push ${PUSHIMAGE}:${SEMVER} fi done ''' @@ -752,7 +770,7 @@ pipeline { passwordVariable: 'QUAYPASS' ] ]) { - retry(5) { + retry_backoff(5,5) { sh '''#! /bin/bash set -e echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin @@ -815,7 +833,7 @@ pipeline { "object": "'${COMMIT_SHA}'",\ "message": "Tagging Release '${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}' to develop",\ "type": "commit",\ - "tagger": {"name": "LinuxServer Jenkins","email": "jenkins@linuxserver.io","date": "'${GITHUB_DATE}'"}}' ''' + "tagger": {"name": "LinuxServer-CI","email": "ci@linuxserver.io","date": "'${GITHUB_DATE}'"}}' ''' echo "Pushing New release for Tag" sh '''#! /bin/bash echo "Updating to ${EXT_RELEASE_CLEAN}" > releasebody.json @@ -947,6 +965,13 @@ EOF ###################### */ post { always { + sh '''#!/bin/bash + rm -rf /config/.ssh/id_sign + rm -rf /config/.ssh/id_sign.pub + git config --global --unset gpg.format + git config --global --unset user.signingkey + git config --global --unset commit.gpgsign + ''' script{ if (env.EXIT_STATUS == "ABORTED"){ sh 'echo "build aborted"' @@ -976,3 +1001,20 @@ EOF } } } + +def retry_backoff(int max_attempts, int power_base, Closure c) { + int n = 0 + while (n < max_attempts) { + try { + c() + return + } catch (err) { + if ((n + 1) >= max_attempts) { + throw err + } + sleep(power_base ** n) + n++ + } + } + return +} From 5bb49a176225cb9f30f4a90277b62b2b5b897bcd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 20 Aug 2024 21:41:37 +0000 Subject: [PATCH 254/337] Bot Updating Templated Files --- .github/workflows/external_trigger.yml | 45 +++++++++---------- .../workflows/external_trigger_scheduler.yml | 24 +++++----- .github/workflows/package_trigger.yml | 22 ++++----- .../workflows/package_trigger_scheduler.yml | 18 ++++---- 4 files changed, 54 insertions(+), 55 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 810e939..21bc524 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -12,17 +12,20 @@ jobs: - name: External Trigger if: github.ref == 'refs/heads/develop' run: | + printf "# External trigger for docker-kasm\n\n" >> $GITHUB_STEP_SUMMARY if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP }}" ]; then - echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP is set; skipping trigger. ****" - echo "Github secret \`PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Github secret \`PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi - echo "**** External trigger running off of develop branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP\". ****" - echo "External trigger running off of develop branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP\`" >> $GITHUB_STEP_SUMMARY - echo "**** Retrieving external version ****" + echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY + echo "> External trigger running off of develop branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP\`" >> $GITHUB_STEP_SUMMARY + printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY EXT_RELEASE=$(curl -sX GET https://kasm-ci.s3.amazonaws.com/dev-version.txt) + echo "Type is \`custom_version_command\`" >> $GITHUB_STEP_SUMMARY if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then - echo "**** Can't retrieve external version, exiting ****" + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Can't retrieve external version, exiting" >> $GITHUB_STEP_SUMMARY FAILURE_REASON="Can't retrieve external version for kasm branch develop" GHA_TRIGGER_URL="https://github.com/linuxserver/docker-kasm/actions/runs/${{ github.run_id }}" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680, @@ -31,9 +34,8 @@ jobs: exit 1 fi EXT_RELEASE=$(echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g') - echo "**** External version: ${EXT_RELEASE} ****" - echo "External version: ${EXT_RELEASE}" >> $GITHUB_STEP_SUMMARY - echo "**** Retrieving last pushed version ****" + echo "External version: \`${EXT_RELEASE}\`" >> $GITHUB_STEP_SUMMARY + echo "Retrieving last pushed version" >> $GITHUB_STEP_SUMMARY image="linuxserver/kasm" tag="develop" token=$(curl -sX GET \ @@ -60,37 +62,34 @@ jobs: IMAGE_RELEASE=$(echo ${image_info} | jq -r '.Labels.build_version' | awk '{print $3}') IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}') if [ -z "${IMAGE_VERSION}" ]; then - echo "**** Can't retrieve last pushed version, exiting ****" + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "Can't retrieve last pushed version, exiting" >> $GITHUB_STEP_SUMMARY FAILURE_REASON="Can't retrieve last pushed version for kasm tag develop" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680, "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} exit 1 fi - echo "**** Last pushed version: ${IMAGE_VERSION} ****" - echo "Last pushed version: ${IMAGE_VERSION}" >> $GITHUB_STEP_SUMMARY + echo "Last pushed version: \`${IMAGE_VERSION}\`" >> $GITHUB_STEP_SUMMARY if [ "${EXT_RELEASE}" == "${IMAGE_VERSION}" ]; then - echo "**** Version ${EXT_RELEASE} already pushed, exiting ****" - echo "Version ${EXT_RELEASE} already pushed, exiting" >> $GITHUB_STEP_SUMMARY + echo "Version \`${EXT_RELEASE}\` already pushed, exiting" >> $GITHUB_STEP_SUMMARY exit 0 elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/lastBuild/api/json | jq -r '.building') == "true" ]; then - echo "**** New version ${EXT_RELEASE} found; but there already seems to be an active build on Jenkins; exiting ****" - echo "New version ${EXT_RELEASE} found; but there already seems to be an active build on Jenkins; exiting" >> $GITHUB_STEP_SUMMARY + echo "New version \`${EXT_RELEASE}\` found; but there already seems to be an active build on Jenkins; exiting" >> $GITHUB_STEP_SUMMARY exit 0 else - echo "**** New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build ****" - echo "New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build" >> $GITHUB_STEP_SUMMARY + printf "\n## Trigger new build\n\n" >> $GITHUB_STEP_SUMMARY + echo "New version \`${EXT_RELEASE}\` found; old version was \`${IMAGE_VERSION}\`. Triggering new build" >> $GITHUB_STEP_SUMMARY response=$(curl -iX POST \ https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/buildWithParameters?PACKAGE_CHECK=false \ --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") - echo "**** Jenkins job queue url: ${response%$'\r'} ****" - echo "**** Sleeping 10 seconds until job starts ****" + echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY + echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY sleep 10 buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') buildurl="${buildurl%$'\r'}" - echo "**** Jenkins job build url: ${buildurl} ****" - echo "Jenkins job build url: ${buildurl}" >> $GITHUB_STEP_SUMMARY - echo "**** Attempting to change the Jenkins job description ****" + echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY + echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY curl -iX POST \ "${buildurl}submitDescription" \ --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml index d78cb5e..c2580f6 100644 --- a/.github/workflows/external_trigger_scheduler.yml +++ b/.github/workflows/external_trigger_scheduler.yml @@ -15,31 +15,31 @@ jobs: - name: External Trigger Scheduler run: | - echo "**** Branches found: ****" - git for-each-ref --format='%(refname:short)' refs/remotes - for br in $(git for-each-ref --format='%(refname:short)' refs/remotes) + printf "# External trigger scheduler for docker-kasm\n\n" >> $GITHUB_STEP_SUMMARY + printf "Found the branches:\n\n%s\n" "$(git for-each-ref --format='- %(refname:lstrip=3)' refs/remotes)" >> $GITHUB_STEP_SUMMARY + for br in $(git for-each-ref --format='%(refname:lstrip=3)' refs/remotes) do - br=$(echo "$br" | sed 's|origin/||g') - echo "**** Evaluating branch ${br} ****" + if [[ "${br}" == "HEAD" ]]; then + printf "\nSkipping %s.\n" ${br} >> $GITHUB_STEP_SUMMARY + continue + fi + printf "\n## Evaluating \`%s\`\n\n" ${br} >> $GITHUB_STEP_SUMMARY ls_jenkins_vars=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/jenkins-vars.yml) ls_branch=$(echo "${ls_jenkins_vars}" | yq -r '.ls_branch') ls_trigger=$(echo "${ls_jenkins_vars}" | yq -r '.external_type') if [[ "${br}" == "${ls_branch}" ]] && [[ "${ls_trigger}" != "os" ]]; then - echo "**** Branch ${br} appears to be live and trigger is not os; checking workflow. ****" + echo "Branch appears to be live and trigger is not os; checking workflow." >> $GITHUB_STEP_SUMMARY if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/.github/workflows/external_trigger.yml > /dev/null 2>&1; then - echo "**** Workflow exists. Triggering external trigger workflow for branch ${br} ****." - echo "Triggering external trigger workflow for branch ${br}" >> $GITHUB_STEP_SUMMARY + echo "Triggering external trigger workflow for branch." >> $GITHUB_STEP_SUMMARY curl -iX POST \ -H "Authorization: token ${{ secrets.CR_PAT }}" \ -H "Accept: application/vnd.github.v3+json" \ -d "{\"ref\":\"refs/heads/${br}\"}" \ https://api.github.com/repos/linuxserver/docker-kasm/actions/workflows/external_trigger.yml/dispatches else - echo "**** Workflow doesn't exist; skipping trigger. ****" - echo "Skipping branch ${br} due to no external trigger workflow present." >> $GITHUB_STEP_SUMMARY + echo "Skipping branch due to no external trigger workflow present." >> $GITHUB_STEP_SUMMARY fi else - echo "**** ${br} is either a dev branch, or has no external version; skipping trigger. ****" - echo "Skipping branch ${br} due to being detected as dev branch or having no external version." >> $GITHUB_STEP_SUMMARY + echo "Skipping branch due to being detected as dev branch or having no external version." >> $GITHUB_STEP_SUMMARY fi done diff --git a/.github/workflows/package_trigger.yml b/.github/workflows/package_trigger.yml index 7b8f325..67181cd 100644 --- a/.github/workflows/package_trigger.yml +++ b/.github/workflows/package_trigger.yml @@ -12,29 +12,29 @@ jobs: - name: Package Trigger if: github.ref == 'refs/heads/develop' run: | + printf "# Package trigger for docker-kasm\n\n" >> $GITHUB_STEP_SUMMARY if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP }}" ]; then - echo "**** Github secret PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP is set; skipping trigger. ****" - echo "Github secret \`PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Github secret \`PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/lastBuild/api/json | jq -r '.building') == "true" ]; then - echo "**** There already seems to be an active build on Jenkins; skipping package trigger ****" - echo "There already seems to be an active build on Jenkins; skipping package trigger" >> $GITHUB_STEP_SUMMARY + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> There already seems to be an active build on Jenkins; skipping package trigger" >> $GITHUB_STEP_SUMMARY exit 0 fi - echo "**** Package trigger running off of develop branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP\". ****" - echo "Package trigger running off of develop branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP\`" >> $GITHUB_STEP_SUMMARY + echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY + echo "> Package trigger running off of develop branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP\`" >> $GITHUB_STEP_SUMMARY response=$(curl -iX POST \ https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/buildWithParameters?PACKAGE_CHECK=true \ --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") - echo "**** Jenkins job queue url: ${response%$'\r'} ****" - echo "**** Sleeping 10 seconds until job starts ****" + echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY + echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY sleep 10 buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') buildurl="${buildurl%$'\r'}" - echo "**** Jenkins job build url: ${buildurl} ****" - echo "Jenkins job build url: ${buildurl}" >> $GITHUB_STEP_SUMMARY - echo "**** Attempting to change the Jenkins job description ****" + echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY + echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY curl -iX POST \ "${buildurl}submitDescription" \ --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index 3b2278a..af9dcc5 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -15,17 +15,19 @@ jobs: - name: Package Trigger Scheduler run: | - echo "**** Branches found: ****" - git for-each-ref --format='%(refname:short)' refs/remotes - for br in $(git for-each-ref --format='%(refname:short)' refs/remotes) + printf "# Package trigger scheduler for docker-kasm\n\n" >> $GITHUB_STEP_SUMMARY + printf "Found the branches:\n\n%s\n" "$(git for-each-ref --format='- %(refname:lstrip=3)' refs/remotes)" >> $GITHUB_STEP_SUMMARY + for br in $(git for-each-ref --format='%(refname:lstrip=3)' refs/remotes) do - br=$(echo "$br" | sed 's|origin/||g') - echo "**** Evaluating branch ${br} ****" + if [[ "${br}" == "HEAD" ]]; then + printf "\nSkipping %s.\n" ${br} >> $GITHUB_STEP_SUMMARY + continue + fi + printf "\n## Evaluating \`%s\`\n\n" ${br} >> $GITHUB_STEP_SUMMARY ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/jenkins-vars.yml | yq -r '.ls_branch') if [ "${br}" == "${ls_branch}" ]; then - echo "**** Branch ${br} appears to be live; checking workflow. ****" + echo "Branch appears to be live; checking workflow." >> $GITHUB_STEP_SUMMARY if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/.github/workflows/package_trigger.yml > /dev/null 2>&1; then - echo "**** Workflow exists. Triggering package trigger workflow for branch ${br}. ****" echo "Triggering package trigger workflow for branch ${br}" >> $GITHUB_STEP_SUMMARY triggered_branches="${triggered_branches}${br} " curl -iX POST \ @@ -35,11 +37,9 @@ jobs: https://api.github.com/repos/linuxserver/docker-kasm/actions/workflows/package_trigger.yml/dispatches sleep 30 else - echo "**** Workflow doesn't exist; skipping trigger. ****" echo "Skipping branch ${br} due to no package trigger workflow present." >> $GITHUB_STEP_SUMMARY fi else - echo "**** ${br} appears to be a dev branch; skipping trigger. ****" echo "Skipping branch ${br} due to being detected as dev branch." >> $GITHUB_STEP_SUMMARY fi done From c7504da9a6f4b2b59caf9d532906a22154c9bf1b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 20 Aug 2024 21:45:52 +0000 Subject: [PATCH 255/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 24d0ce8..be2e15e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.3.0 npm +@types/node 22.4.1 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -888,7 +888,7 @@ type-is 1. tzdata 2024a-0ubuntu0.22.04.1 deb ubuntu-keyring 2021.03.26 deb uidmap 1:4.8.1-2ubuntu2.2 deb -undici-types 6.18.2 npm +undici-types 6.19.8 npm unique-filename 3.0.0 npm unique-slug 4.0.0 npm unpipe 1.0.0 npm From cdafc0a78549303099866c475c69f43d47f8e5c7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 21 Aug 2024 02:51:22 +0000 Subject: [PATCH 256/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index be2e15e..6675347 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.4.1 npm +@types/node 22.4.2 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From eb00aded51024a26c627e3431226d86ed63f0f51 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 23 Aug 2024 03:41:33 +0000 Subject: [PATCH 257/337] Bot Updating Package Versions --- package_versions.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6675347..fab1aea 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.4.2 npm +@types/node 22.5.0 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -117,7 +117,7 @@ docker-ce-cli 5: docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb -e2fsprogs 1.46.5-2ubuntu1.1 deb +e2fsprogs 1.46.5-2ubuntu1.2 deb eastasianwidth 0.2.0 npm ee-first 1.1.1 npm emoji-regex 8.0.0 npm @@ -625,7 +625,7 @@ libdevmapper1.02.1 2: libedit2 3.1-20210910-1build1 deb libelf1 0.186-1build1 deb libexpat1 2.4.7-1ubuntu0.3 deb -libext2fs2 1.46.5-2ubuntu1.1 deb +libext2fs2 1.46.5-2ubuntu1.2 deb libffi8 3.4.2-4 deb libfuse3-3 3.10.5-1build1 deb libgcc-s1 12.3.0-1ubuntu1~22.04 deb @@ -687,7 +687,7 @@ libpcre2-8-0 10 libpcre3 2:8.39-13ubuntu0.22.04.1 deb libprocps8 2:3.3.17-6ubuntu2.1 deb libpsl5 0.21.0-1.2build2 deb -libpython3-stdlib 3.10.6-1~22.04 deb +libpython3-stdlib 3.10.6-1~22.04.1 deb libpython3.10-minimal 3.10.12-1~22.04.5 deb libpython3.10-stdlib 3.10.12-1~22.04.5 deb libreadline8 8.1.2-1 deb @@ -807,8 +807,8 @@ promzard 1. proxy-addr 2.0.7 npm publicsuffix 20211207.1025-1 deb pump 3.0.0 npm -python3 3.10.6-1~22.04 deb -python3-minimal 3.10.6-1~22.04 deb +python3 3.10.6-1~22.04.1 deb +python3-minimal 3.10.6-1~22.04.1 deb python3.10 3.10.12-1~22.04.5 deb python3.10-minimal 3.10.12-1~22.04.5 deb qrcode-terminal 0.12.0 npm @@ -868,7 +868,7 @@ strip-ansi 6. strip-ansi 7.1.0 npm (+1 duplicate) sudo 1.9.9-1ubuntu2.4 deb supports-color 9.4.0 npm -systeminformation 5.23.4 npm +systeminformation 5.23.5 npm sysvinit-utils 3.01-1ubuntu1 deb tags.cncf.io/container-device-interface v0.7.2 go-module (+1 duplicate) tags.cncf.io/container-device-interface v0.8.0 go-module (+3 duplicates) From 9ed2ca4c25e9f9663c8961cbeea738eca02a17b1 Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Tue, 27 Aug 2024 20:01:12 +0100 Subject: [PATCH 258/337] DIsable webci due to lack of priv mode --- Jenkinsfile | 2 +- jenkins-vars.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f46d1d4..7d34667 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -29,7 +29,7 @@ pipeline { DIST_IMAGE = 'ubuntu' MULTIARCH='true' CI='true' - CI_WEB='true' + CI_WEB='false' CI_PORT='3000' CI_SSL='true' CI_DELAY='120' diff --git a/jenkins-vars.yml b/jenkins-vars.yml index c84e0a0..7c6b0bb 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -19,7 +19,7 @@ repo_vars: - DIST_IMAGE = 'ubuntu' - MULTIARCH='true' - CI='true' - - CI_WEB='true' + - CI_WEB='false' - CI_PORT='3000' - CI_SSL='true' - CI_DELAY='120' From 44ea47d8d921b7a83a396556f2c9fd0b8efd46e3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 27 Aug 2024 21:45:43 +0000 Subject: [PATCH 259/337] Bot Updating Package Versions --- package_versions.txt | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index fab1aea..682dff3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -85,7 +85,7 @@ code.cloudfoundry.org/clock v1 color-convert 2.0.1 npm color-name 1.1.4 npm common-ancestor-path 1.0.1 npm -containerd.io 1.7.20-1 deb +containerd.io 1.7.21-1 deb content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.4.2 npm @@ -112,8 +112,8 @@ destroy 1. diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:27.1.2-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:27.1.2-1~ubuntu.22.04~jammy deb +docker-ce 5:27.2.0-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:27.2.0-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -202,7 +202,7 @@ github.com/containerd/cgroups/v3 v3 github.com/containerd/console v1.0.3 go-module (+6 duplicates) github.com/containerd/console v1.0.4 go-module github.com/containerd/containerd v1.6.2 go-module -github.com/containerd/containerd v1.7.20 go-module (+5 duplicates) +github.com/containerd/containerd v1.7.21 go-module (+5 duplicates) github.com/containerd/containerd/api v1.7.19 go-module (+5 duplicates) github.com/containerd/continuity v0.2.2 go-module github.com/containerd/continuity v0.4.2 go-module (+4 duplicates) @@ -216,7 +216,6 @@ github.com/containerd/go-runc v1 github.com/containerd/imgcrypt v1.1.8 go-module github.com/containerd/log v0.1.0 go-module (+6 duplicates) github.com/containerd/nri v0.6.1 go-module -github.com/containerd/nydus-snapshotter v0.13.7 go-module github.com/containerd/platforms v0.2.1 go-module (+4 duplicates) github.com/containerd/stargz-snapshotter/estargz v0.15.1 go-module github.com/containerd/ttrpc v1.1.0 go-module @@ -241,12 +240,12 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.6.0 go-module (+2 duplicates) github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v27.1.2 go-module +github.com/docker/cli/cmd/docker v27.2.0 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v27.1.2 go-module (+1 duplicate) +github.com/docker/docker v27.2.0 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -344,7 +343,7 @@ github.com/mitchellh/hashstructure/v2 v2 github.com/mitchellh/mapstructure v1.4.3 go-module github.com/mitchellh/reflectwalk v1.0.2 go-module github.com/moby/buildkit v0.10.0-rc2.0.20220308185020-fdecd0ae108b go-module -github.com/moby/buildkit v0.15.1 go-module +github.com/moby/buildkit v0.15.2 go-module github.com/moby/docker-image-spec v1.3.1 go-module github.com/moby/ipvs v1.1.0 go-module github.com/moby/locker v1.0.1 go-module (+3 duplicates) @@ -360,9 +359,8 @@ github.com/moby/sys/sequential v0 github.com/moby/sys/signal v0.6.0 go-module github.com/moby/sys/signal v0.7.0 go-module (+2 duplicates) github.com/moby/sys/symlink v0.2.0 go-module (+2 duplicates) -github.com/moby/sys/user v0.1.0 go-module (+3 duplicates) -github.com/moby/sys/user v0.3.0 go-module -github.com/moby/sys/userns v0.1.0 go-module +github.com/moby/sys/user v0.3.0 go-module (+4 duplicates) +github.com/moby/sys/userns v0.1.0 go-module (+5 duplicates) github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 go-module github.com/moby/term v0.5.0 go-module github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module (+1 duplicate) @@ -859,8 +857,9 @@ ssri 10 statuses 2.0.1 npm stdlib go1.17.9 go-module stdlib go1.18.1 go-module (+1 duplicate) -stdlib go1.21.13 go-module (+8 duplicates) +stdlib go1.21.13 go-module (+2 duplicates) stdlib go1.22.5 go-module (+3 duplicates) +stdlib go1.22.6 go-module (+5 duplicates) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) string_decoder 1.3.0 npm From 4a333fad5d8148227c75335c2b3161fd856ef064 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 3 Sep 2024 21:43:03 +0000 Subject: [PATCH 260/337] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 682dff3..784ba4e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.5.0 npm +@types/node 22.5.2 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -614,7 +614,7 @@ libc6 2. libcap-ng0 0.7.9-2.2build3 deb libcap2 1:2.44-1ubuntu0.22.04.1 deb libcap2-bin 1:2.44-1ubuntu0.22.04.1 deb -libcom-err2 1.46.5-2ubuntu1.1 deb +libcom-err2 1.46.5-2ubuntu1.2 deb libcrypt1 1:4.4.27-1 deb libcurl4 7.81.0-1ubuntu1.17 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb @@ -700,7 +700,7 @@ libsemanage2 3. libsepol2 3.3-1build1 deb libsmartcols1 2.37.2-4ubuntu3.4 deb libsqlite3-0 3.37.2-2ubuntu0.3 deb -libss2 1.46.5-2ubuntu1.1 deb +libss2 1.46.5-2ubuntu1.2 deb libssh-4 0.9.6-2ubuntu0.22.04.3 deb libssl3 3.0.2-0ubuntu1.17 deb libstdc++6 12.3.0-1ubuntu1~22.04 deb @@ -718,7 +718,7 @@ libzstd1 1. locales 2.35-0ubuntu3.8 deb lodash 4.17.21 npm login 1:4.8.1-2ubuntu2.2 deb -logsave 1.46.5-2ubuntu1.1 deb +logsave 1.46.5-2ubuntu1.2 deb lru-cache 10.2.2 npm lru-cache 6.0.0 npm lsb-base 11.1.0ubuntu4 deb @@ -780,7 +780,7 @@ object-assign 4. object-inspect 1.13.2 npm on-finished 2.4.1 npm once 1.4.0 npm -openssl 3.0.2-0ubuntu1.17 deb +openssl 3.0.2-0ubuntu1.18 deb p-map 4.0.0 npm pacote 18.0.3 npm parse-conflict-json 3.0.1 npm From d239e1c8723b9fab532883a600fdb2fe37bda16a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Sep 2024 21:42:54 +0000 Subject: [PATCH 261/337] Bot Updating Package Versions --- package_versions.txt | 43 +++++++++++++++++++++++-------------------- 1 file changed, 23 insertions(+), 20 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 784ba4e..5ee2d33 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.5.2 npm +@types/node 22.5.4 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -42,7 +42,7 @@ ansi-styles 4. ansi-styles 6.2.1 npm aproba 2.0.0 npm apt 2.4.12 deb -apt-transport-https 2.4.12 deb +apt-transport-https 2.4.13 deb apt-utils 2.4.12 deb archy 1.0.0 npm argparse 2.0.1 npm @@ -58,7 +58,7 @@ bcrypt-pbkdf 1. bin-links 4.0.3 npm binary-extensions 2.3.0 npm bl 4.1.0 npm -body-parser 1.20.2 npm +body-parser 1.20.3 npm brace-expansion 2.0.1 npm bsdutils 1:2.37.2-4ubuntu3.4 deb btrfs-progs 5.16.2-1 deb @@ -103,17 +103,17 @@ dario.cat/mergo v1 dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb debianutils 5.5-1ubuntu2 deb -debug 2.6.9 npm (+3 duplicates) +debug 2.6.9 npm (+4 duplicates) debug 4.3.4 npm -debug 4.3.6 npm +debug 4.3.7 npm define-data-property 1.1.4 npm depd 2.0.0 npm destroy 1.2.0 npm diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:27.2.0-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:27.2.0-1~ubuntu.22.04~jammy deb +docker-ce 5:27.2.1-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:27.2.1-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -122,7 +122,8 @@ eastasianwidth 0. ee-first 1.1.1 npm emoji-regex 8.0.0 npm emoji-regex 9.2.2 npm (+1 duplicate) -encodeurl 1.0.2 npm +encodeurl 1.0.2 npm (+2 duplicates) +encodeurl 2.0.0 npm encoding 0.1.13 npm end-of-stream 1.4.4 npm engine.io 6.5.5 npm @@ -134,7 +135,7 @@ es-errors 1. escape-html 1.0.3 npm etag 1.8.1 npm exponential-backoff 3.1.1 npm -express 4.19.2 npm +express 4.20.0 npm fastest-levenshtein 1.0.16 npm finalhandler 1.2.0 npm findutils 4.8.0-1ubuntu3 deb @@ -240,12 +241,12 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.6.0 go-module (+2 duplicates) github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v27.2.0 go-module +github.com/docker/cli/cmd/docker v27.2.1 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v27.2.0 go-module (+1 duplicate) +github.com/docker/docker v27.2.1 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -371,8 +372,8 @@ github.com/opencontainers/go-digest v1 github.com/opencontainers/image-spec v1.0.2 go-module github.com/opencontainers/image-spec v1.1.0 go-module (+4 duplicates) github.com/opencontainers/runc v1.1.0 go-module -github.com/opencontainers/runc v1.1.13 go-module github.com/opencontainers/runc v1.1.13-0-g58aa920 go-module +github.com/opencontainers/runc v1.1.14 go-module github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module github.com/opencontainers/runtime-spec v1.1.0 go-module (+4 duplicates) github.com/opencontainers/runtime-spec v1.2.0 go-module (+4 duplicates) @@ -702,7 +703,7 @@ libsmartcols1 2. libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.2 deb libssh-4 0.9.6-2ubuntu0.22.04.3 deb -libssl3 3.0.2-0ubuntu1.17 deb +libssl3 3.0.2-0ubuntu1.18 deb libstdc++6 12.3.0-1ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.12 deb libtasn1-6 4.18.0-4build1 deb @@ -727,7 +728,7 @@ make-fetch-happen 13 mawk 1.3.4.20200120-3 deb media-typer 0.3.0 npm media-types 7.0.0 deb -merge-descriptors 1.0.1 npm +merge-descriptors 1.0.3 npm methods 1.1.2 npm mime 1.6.0 npm mime-db 1.52.0 npm @@ -746,8 +747,8 @@ minizlib 2. mkdirp 1.0.4 npm mkdirp-classic 0.5.3 npm mount 2.37.2-4ubuntu3.4 deb -ms 2.0.0 npm (+3 duplicates) -ms 2.1.2 npm (+1 duplicate) +ms 2.0.0 npm (+4 duplicates) +ms 2.1.2 npm ms 2.1.3 npm (+1 duplicate) mute-stream 1.0.0 npm nan 2.20.0 npm @@ -788,7 +789,7 @@ parseurl 1. passwd 1:4.8.1-2ubuntu2.2 deb path-key 3.1.1 npm path-scurry 1.10.2 npm -path-to-regexp 0.1.7 npm +path-to-regexp 0.1.10 npm perl-base 5.34.0-3ubuntu1.3 deb pigz 2.6-1 deb pinentry-curses 1.1.1-1build2 deb @@ -804,13 +805,14 @@ promise-retry 2. promzard 1.0.1 npm proxy-addr 2.0.7 npm publicsuffix 20211207.1025-1 deb -pump 3.0.0 npm +pump 3.0.1 npm python3 3.10.6-1~22.04.1 deb python3-minimal 3.10.6-1~22.04.1 deb python3.10 3.10.12-1~22.04.5 deb python3.10-minimal 3.10.12-1~22.04.5 deb qrcode-terminal 0.12.0 npm qs 6.11.0 npm +qs 6.13.0 npm range-parser 1.2.1 npm raw-body 2.5.2 npm read 3.0.1 npm @@ -825,8 +827,9 @@ safer-buffer 2. sed 4.8-1ubuntu2 deb semver 7.6.0 npm send 0.18.0 npm +send 0.19.0 npm sensible-utils 0.0.17 deb -serve-static 1.15.0 npm +serve-static 1.16.0 npm set-function-length 1.2.2 npm setprototypeof 1.2.0 npm shebang-command 2.0.0 npm @@ -857,9 +860,9 @@ ssri 10 statuses 2.0.1 npm stdlib go1.17.9 go-module stdlib go1.18.1 go-module (+1 duplicate) -stdlib go1.21.13 go-module (+2 duplicates) stdlib go1.22.5 go-module (+3 duplicates) stdlib go1.22.6 go-module (+5 duplicates) +stdlib go1.22.7 go-module (+2 duplicates) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) string_decoder 1.3.0 npm From 12d7e636ab48dcd8a86adfc3380e744a4bc9e8df Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Sep 2024 21:45:07 +0000 Subject: [PATCH 262/337] Bot Updating Package Versions --- package_versions.txt | 56 +++++++++++++++++++++----------------------- 1 file changed, 27 insertions(+), 29 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 5ee2d33..8d788c9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.5.4 npm +@types/node 22.5.5 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -41,15 +41,15 @@ ansi-regex 6. ansi-styles 4.3.0 npm ansi-styles 6.2.1 npm aproba 2.0.0 npm -apt 2.4.12 deb +apt 2.4.13 deb apt-transport-https 2.4.13 deb -apt-utils 2.4.12 deb +apt-utils 2.4.13 deb archy 1.0.0 npm argparse 2.0.1 npm array-flatten 1.1.1 npm asn1 0.2.6 npm balanced-match 1.0.2 npm -base-files 12ubuntu4.6 deb +base-files 12ubuntu4.7 deb base-passwd 3.5.52build1 deb base64-js 1.5.1 npm base64id 2.0.0 npm @@ -85,7 +85,7 @@ code.cloudfoundry.org/clock v1 color-convert 2.0.1 npm color-name 1.1.4 npm common-ancestor-path 1.0.1 npm -containerd.io 1.7.21-1 deb +containerd.io 1.7.22-1 deb content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.4.2 npm @@ -98,12 +98,12 @@ cpu-features 0. cron 3.0pl1-137ubuntu3 deb cross-spawn 7.0.3 npm cssesc 3.0.0 npm -curl 7.81.0-1ubuntu1.17 deb +curl 7.81.0-1ubuntu1.18 deb dario.cat/mergo v1.0.0 go-module (+1 duplicate) dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb debianutils 5.5-1ubuntu2 deb -debug 2.6.9 npm (+4 duplicates) +debug 2.6.9 npm (+3 duplicates) debug 4.3.4 npm debug 4.3.7 npm define-data-property 1.1.4 npm @@ -122,7 +122,7 @@ eastasianwidth 0. ee-first 1.1.1 npm emoji-regex 8.0.0 npm emoji-regex 9.2.2 npm (+1 duplicate) -encodeurl 1.0.2 npm (+2 duplicates) +encodeurl 1.0.2 npm encodeurl 2.0.0 npm encoding 0.1.13 npm end-of-stream 1.4.4 npm @@ -135,9 +135,9 @@ es-errors 1. escape-html 1.0.3 npm etag 1.8.1 npm exponential-backoff 3.1.1 npm -express 4.20.0 npm +express 4.21.0 npm fastest-levenshtein 1.0.16 npm -finalhandler 1.2.0 npm +finalhandler 1.3.1 npm findutils 4.8.0-1ubuntu3 deb foreground-child 3.1.1 npm forwarded 0.2.0 npm @@ -203,7 +203,8 @@ github.com/containerd/cgroups/v3 v3 github.com/containerd/console v1.0.3 go-module (+6 duplicates) github.com/containerd/console v1.0.4 go-module github.com/containerd/containerd v1.6.2 go-module -github.com/containerd/containerd v1.7.21 go-module (+5 duplicates) +github.com/containerd/containerd v1.7.21 go-module +github.com/containerd/containerd v1.7.22 go-module (+4 duplicates) github.com/containerd/containerd/api v1.7.19 go-module (+5 duplicates) github.com/containerd/continuity v0.2.2 go-module github.com/containerd/continuity v0.4.2 go-module (+4 duplicates) @@ -372,8 +373,8 @@ github.com/opencontainers/go-digest v1 github.com/opencontainers/image-spec v1.0.2 go-module github.com/opencontainers/image-spec v1.1.0 go-module (+4 duplicates) github.com/opencontainers/runc v1.1.0 go-module -github.com/opencontainers/runc v1.1.13-0-g58aa920 go-module github.com/opencontainers/runc v1.1.14 go-module +github.com/opencontainers/runc v1.1.14-0-g2c9f560 go-module github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module github.com/opencontainers/runtime-spec v1.1.0 go-module (+4 duplicates) github.com/opencontainers/runtime-spec v1.2.0 go-module (+4 duplicates) @@ -528,8 +529,8 @@ google.golang.org/genproto/googleapis/api v0 google.golang.org/genproto/googleapis/rpc v0.0.0-20231212172506-995d672761c0 go-module (+5 duplicates) google.golang.org/grpc v1.44.0 go-module google.golang.org/grpc v1.59.0 go-module (+5 duplicates) -google.golang.org/protobuf v1.27.1 go-module (+1 duplicate) -google.golang.org/protobuf v1.33.0 go-module (+5 duplicates) +google.golang.org/protobuf v1.27.1 go-module +google.golang.org/protobuf v1.33.0 go-module (+6 duplicates) gopd 1.0.1 npm gopkg.in/inf.v0 v0.9.1 go-module (+2 duplicates) gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module (+1 duplicate) @@ -600,7 +601,7 @@ k8s.io/utils v0 k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 go-module kasm-wizard 0.0.1 npm libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.12 deb +libapt-pkg6.0 2.4.13 deb libassuan0 2.5.5-1build1 deb libattr1 1:2.5.1-1build1 deb libaudit-common 1:3.0.7-1build1 deb @@ -617,13 +618,13 @@ libcap2 1: libcap2-bin 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.2 deb libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.17 deb +libcurl4 7.81.0-1ubuntu1.18 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb libedit2 3.1-20210910-1build1 deb libelf1 0.186-1build1 deb -libexpat1 2.4.7-1ubuntu0.3 deb +libexpat1 2.4.7-1ubuntu0.4 deb libext2fs2 1.46.5-2ubuntu1.2 deb libffi8 3.4.2-4 deb libfuse3-3 3.10.5-1build1 deb @@ -687,8 +688,8 @@ libpcre3 2: libprocps8 2:3.3.17-6ubuntu2.1 deb libpsl5 0.21.0-1.2build2 deb libpython3-stdlib 3.10.6-1~22.04.1 deb -libpython3.10-minimal 3.10.12-1~22.04.5 deb -libpython3.10-stdlib 3.10.12-1~22.04.5 deb +libpython3.10-minimal 3.10.12-1~22.04.6 deb +libpython3.10-stdlib 3.10.12-1~22.04.6 deb libreadline8 8.1.2-1 deb librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb @@ -747,7 +748,7 @@ minizlib 2. mkdirp 1.0.4 npm mkdirp-classic 0.5.3 npm mount 2.37.2-4ubuntu3.4 deb -ms 2.0.0 npm (+4 duplicates) +ms 2.0.0 npm (+3 duplicates) ms 2.1.2 npm ms 2.1.3 npm (+1 duplicate) mute-stream 1.0.0 npm @@ -805,13 +806,12 @@ promise-retry 2. promzard 1.0.1 npm proxy-addr 2.0.7 npm publicsuffix 20211207.1025-1 deb -pump 3.0.1 npm +pump 3.0.2 npm python3 3.10.6-1~22.04.1 deb python3-minimal 3.10.6-1~22.04.1 deb -python3.10 3.10.12-1~22.04.5 deb -python3.10-minimal 3.10.12-1~22.04.5 deb +python3.10 3.10.12-1~22.04.6 deb +python3.10-minimal 3.10.12-1~22.04.6 deb qrcode-terminal 0.12.0 npm -qs 6.11.0 npm qs 6.13.0 npm range-parser 1.2.1 npm raw-body 2.5.2 npm @@ -826,10 +826,9 @@ safe-buffer 5. safer-buffer 2.1.2 npm (+1 duplicate) sed 4.8-1ubuntu2 deb semver 7.6.0 npm -send 0.18.0 npm send 0.19.0 npm sensible-utils 0.0.17 deb -serve-static 1.16.0 npm +serve-static 1.16.2 npm set-function-length 1.2.2 npm setprototypeof 1.2.0 npm shebang-command 2.0.0 npm @@ -855,14 +854,13 @@ spdx-expression-parse 4. spdx-license-ids 3.0.17 npm split-ca 1.0.1 npm sprintf-js 1.1.3 npm -ssh2 1.15.0 npm +ssh2 1.16.0 npm ssri 10.0.5 npm statuses 2.0.1 npm stdlib go1.17.9 go-module stdlib go1.18.1 go-module (+1 duplicate) stdlib go1.22.5 go-module (+3 duplicates) -stdlib go1.22.6 go-module (+5 duplicates) -stdlib go1.22.7 go-module (+2 duplicates) +stdlib go1.22.7 go-module (+8 duplicates) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) string_decoder 1.3.0 npm From 9571e6d1c01b8a4421ebca83e3f76016f06e5e7f Mon Sep 17 00:00:00 2001 From: thelamer <ryankuba@gmail.com> Date: Tue, 17 Sep 2024 18:11:55 -0400 Subject: [PATCH 263/337] update build logic to suport thumbnails --- Dockerfile | 3 +++ Dockerfile.aarch64 | 3 +++ 2 files changed, 6 insertions(+) diff --git a/Dockerfile b/Dockerfile index 9ccc70b..e626045 100644 --- a/Dockerfile +++ b/Dockerfile @@ -101,6 +101,9 @@ RUN \ /kasm_release/conf/database/seed_data/default_images_a* && \ sed -i 's/-N -e -H/-N -B -e -H/g' /kasm_release/upgrade.sh && \ echo "exit 0" > /kasm_release/install_dependencies.sh && \ + /kasm_release/bin/utils/yq_$(uname -m) -i \ + '.services.proxy.volumes += "/kasm_release/www/img/thumbnails:/srv/www/img/thumbnails"' \ + /kasm_release/docker/docker-compose-all.yaml && \ echo "**** copy assets ****" && \ cp \ /kasm_release/www/img/thumbnails/*.png /kasm_release/www/img/thumbnails/*.svg \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 162b3b7..85cc9a9 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -101,6 +101,9 @@ RUN \ /kasm_release/conf/database/seed_data/default_images_a* && \ sed -i 's/-N -e -H/-N -B -e -H/g' /kasm_release/upgrade.sh && \ echo "exit 0" > /kasm_release/install_dependencies.sh && \ + /kasm_release/bin/utils/yq_$(uname -m) -i \ + '.services.proxy.volumes += "/kasm_release/www/img/thumbnails:/srv/www/img/thumbnails"' \ + /kasm_release/docker/docker-compose-all.yaml && \ echo "**** copy assets ****" && \ cp \ /kasm_release/www/img/thumbnails/*.png /kasm_release/www/img/thumbnails/*.svg \ From 294e21082252b04add60339bf755ddd2e097eb65 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 24 Sep 2024 21:44:11 +0000 Subject: [PATCH 264/337] Bot Updating Package Versions --- package_versions.txt | 72 ++++++++++++++++++++++++-------------------- 1 file changed, 39 insertions(+), 33 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8d788c9..c0b8d97 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.5.5 npm +@types/node 22.6.1 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -112,8 +112,8 @@ destroy 1. diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:27.2.1-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:27.2.1-1~ubuntu.22.04~jammy deb +docker-ce 5:27.3.1-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:27.3.1-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -126,7 +126,7 @@ encodeurl 1. encodeurl 2.0.0 npm encoding 0.1.13 npm end-of-stream 1.4.4 npm -engine.io 6.5.5 npm +engine.io 6.6.1 npm engine.io-parser 5.2.3 npm env-paths 2.2.1 npm err-code 2.0.3 npm @@ -203,8 +203,7 @@ github.com/containerd/cgroups/v3 v3 github.com/containerd/console v1.0.3 go-module (+6 duplicates) github.com/containerd/console v1.0.4 go-module github.com/containerd/containerd v1.6.2 go-module -github.com/containerd/containerd v1.7.21 go-module -github.com/containerd/containerd v1.7.22 go-module (+4 duplicates) +github.com/containerd/containerd v1.7.22 go-module (+5 duplicates) github.com/containerd/containerd/api v1.7.19 go-module (+5 duplicates) github.com/containerd/continuity v0.2.2 go-module github.com/containerd/continuity v0.4.2 go-module (+4 duplicates) @@ -223,7 +222,8 @@ github.com/containerd/stargz-snapshotter/estargz v0 github.com/containerd/ttrpc v1.1.0 go-module github.com/containerd/ttrpc v1.2.5 go-module (+5 duplicates) github.com/containerd/typeurl v1.0.2 go-module (+1 duplicate) -github.com/containerd/typeurl/v2 v2.1.1 go-module (+5 duplicates) +github.com/containerd/typeurl/v2 v2.1.1 go-module (+4 duplicates) +github.com/containerd/typeurl/v2 v2.2.0 go-module github.com/containerd/zfs v1.1.0 go-module github.com/containernetworking/cni v1.1.2 go-module (+1 duplicate) github.com/containernetworking/cni v1.2.2 go-module @@ -242,12 +242,12 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.6.0 go-module (+2 duplicates) github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v27.2.1 go-module +github.com/docker/cli/cmd/docker v27.3.1 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v27.2.1 go-module (+1 duplicate) +github.com/docker/docker v27.3.1 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -345,7 +345,7 @@ github.com/mitchellh/hashstructure/v2 v2 github.com/mitchellh/mapstructure v1.4.3 go-module github.com/mitchellh/reflectwalk v1.0.2 go-module github.com/moby/buildkit v0.10.0-rc2.0.20220308185020-fdecd0ae108b go-module -github.com/moby/buildkit v0.15.2 go-module +github.com/moby/buildkit v0.16.0 go-module github.com/moby/docker-image-spec v1.3.1 go-module github.com/moby/ipvs v1.1.0 go-module github.com/moby/locker v1.0.1 go-module (+3 duplicates) @@ -353,14 +353,16 @@ github.com/moby/patternmatcher v0 github.com/moby/pubsub v1.0.0 go-module github.com/moby/spdystream v0.2.0 go-module github.com/moby/swarmkit/v2 v2.0.0-20240611172349-ea1a7cec35cb go-module -github.com/moby/sys/mount v0.3.3 go-module +github.com/moby/sys/mount v0.3.4 go-module github.com/moby/sys/mountinfo v0.5.0 go-module github.com/moby/sys/mountinfo v0.6.2 go-module (+4 duplicates) -github.com/moby/sys/mountinfo v0.7.1 go-module -github.com/moby/sys/sequential v0.5.0 go-module +github.com/moby/sys/mountinfo v0.7.2 go-module +github.com/moby/sys/sequential v0.6.0 go-module github.com/moby/sys/signal v0.6.0 go-module -github.com/moby/sys/signal v0.7.0 go-module (+2 duplicates) -github.com/moby/sys/symlink v0.2.0 go-module (+2 duplicates) +github.com/moby/sys/signal v0.7.0 go-module (+1 duplicate) +github.com/moby/sys/signal v0.7.1 go-module +github.com/moby/sys/symlink v0.2.0 go-module (+1 duplicate) +github.com/moby/sys/symlink v0.3.0 go-module github.com/moby/sys/user v0.3.0 go-module (+4 duplicates) github.com/moby/sys/userns v0.1.0 go-module (+5 duplicates) github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 go-module @@ -467,9 +469,8 @@ go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0 go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 go-module go.opentelemetry.io/otel v1.21.0 go-module (+2 duplicates) go.opentelemetry.io/otel v1.4.1 go-module -go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.42.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.42.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v0.42.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.44.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v0.44.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.4.1 go-module @@ -492,43 +493,48 @@ go.uber.org/multierr v1 go.uber.org/zap v1.21.0 go-module golang.org/x/crypto v0.0.0-20211202192323-5770296d904e go-module golang.org/x/crypto v0.21.0 go-module -golang.org/x/crypto v0.23.0 go-module -golang.org/x/exp v0.0.0-20231006140011-7918f672742d go-module +golang.org/x/crypto v0.26.0 go-module +golang.org/x/exp v0.0.0-20240823005443-9b4947da3948 go-module golang.org/x/mod v0.12.0 go-module -golang.org/x/mod v0.17.0 go-module golang.org/x/mod v0.19.0 go-module (+3 duplicates) +golang.org/x/mod v0.20.0 go-module golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module (+1 duplicate) golang.org/x/net v0.0.0-20211216030914-fe4d6282115f go-module golang.org/x/net v0.23.0 go-module (+2 duplicates) golang.org/x/net v0.24.0 go-module -golang.org/x/net v0.25.0 go-module +golang.org/x/net v0.28.0 go-module golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 go-module golang.org/x/oauth2 v0.11.0 go-module -golang.org/x/oauth2 v0.21.0 go-module +golang.org/x/oauth2 v0.22.0 go-module golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module golang.org/x/sync v0.5.0 go-module (+4 duplicates) -golang.org/x/sync v0.7.0 go-module +golang.org/x/sync v0.8.0 go-module golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module (+1 duplicate) golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module golang.org/x/sys v0.18.0 go-module (+4 duplicates) golang.org/x/sys v0.19.0 go-module -golang.org/x/sys v0.22.0 go-module (+5 duplicates) +golang.org/x/sys v0.22.0 go-module (+3 duplicates) +golang.org/x/sys v0.24.0 go-module (+1 duplicate) golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module golang.org/x/term v0.18.0 go-module golang.org/x/text v0.14.0 go-module (+2 duplicates) -golang.org/x/text v0.15.0 go-module +golang.org/x/text v0.17.0 go-module golang.org/x/text v0.3.7 go-module (+2 duplicates) golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 go-module -golang.org/x/time v0.3.0 go-module +golang.org/x/time v0.6.0 go-module golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module (+1 duplicate) -google.golang.org/api v0.149.0 go-module +google.golang.org/api v0.155.0 go-module google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa go-module -google.golang.org/genproto v0.0.0-20231211222908-989df2bf70f3 go-module (+5 duplicates) -google.golang.org/genproto/googleapis/api v0.0.0-20231120223509-83a465c0220f go-module (+1 duplicate) -google.golang.org/genproto/googleapis/rpc v0.0.0-20231212172506-995d672761c0 go-module (+5 duplicates) +google.golang.org/genproto v0.0.0-20231211222908-989df2bf70f3 go-module (+4 duplicates) +google.golang.org/genproto v0.0.0-20240123012728-ef4313101c80 go-module +google.golang.org/genproto/googleapis/api v0.0.0-20231120223509-83a465c0220f go-module +google.golang.org/genproto/googleapis/api v0.0.0-20240123012728-ef4313101c80 go-module +google.golang.org/genproto/googleapis/rpc v0.0.0-20231212172506-995d672761c0 go-module (+4 duplicates) +google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 go-module google.golang.org/grpc v1.44.0 go-module -google.golang.org/grpc v1.59.0 go-module (+5 duplicates) +google.golang.org/grpc v1.59.0 go-module (+4 duplicates) +google.golang.org/grpc v1.62.0 go-module google.golang.org/protobuf v1.27.1 go-module google.golang.org/protobuf v1.33.0 go-module (+6 duplicates) gopd 1.0.1 npm @@ -842,7 +848,7 @@ sigs.k8s.io/yaml v1 sigs.k8s.io/yaml v1.3.0 go-module (+6 duplicates) sigstore 2.3.0 npm smart-buffer 4.2.0 npm -socket.io 4.7.5 npm +socket.io 4.8.0 npm socket.io-adapter 2.5.5 npm socket.io-parser 4.2.4 npm socks 2.8.3 npm From 5e4eb128452fba1208e0ef77fa6c497f2b1cbd0d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 27 Sep 2024 23:36:57 +0000 Subject: [PATCH 265/337] Bot Updating Templated Files --- Jenkinsfile | 60 +++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 49 insertions(+), 11 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7d34667..2c13d21 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -81,7 +81,7 @@ pipeline { env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.PULL_REQUEST = env.CHANGE_ID - env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/call_issue_pr_tracker.yml ./.github/workflows/call_issues_cron.yml ./.github/workflows/permissions.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml' + env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/call_issue_pr_tracker.yml ./.github/workflows/call_issues_cron.yml ./.github/workflows/permissions.yml ./.github/workflows/external_trigger.yml' } sh '''#! /bin/bash echo "The default github branch detected as ${GH_DEFAULT_BRANCH}" ''' @@ -311,7 +311,7 @@ pipeline { echo "Jenkinsfile is up to date." fi echo "Starting Stage 2 - Delete old templates" - OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md .github/ISSUE_TEMPLATE/issue.bug.md .github/ISSUE_TEMPLATE/issue.feature.md .github/workflows/call_invalid_helper.yml .github/workflows/stale.yml" + OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md .github/ISSUE_TEMPLATE/issue.bug.md .github/ISSUE_TEMPLATE/issue.feature.md .github/workflows/call_invalid_helper.yml .github/workflows/stale.yml .github/workflows/package_trigger.yml" for i in ${OLD_TEMPLATES}; do if [[ -f "${i}" ]]; then TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}" @@ -685,6 +685,14 @@ pipeline { } sh '''#! /bin/bash set -e + if grep -q 'docker-baseimage' <<< "${LS_REPO}"; then + echo "Detected baseimage, setting LSIO_FIRST_PARTY=true" + if [ -n "${CI_DOCKERENV}" ]; then + CI_DOCKERENV="LSIO_FIRST_PARTY=true|${CI_DOCKERENV}" + else + CI_DOCKERENV="LSIO_FIRST_PARTY=true" + fi + fi docker pull ghcr.io/linuxserver/ci:latest if [ "${MULTIARCH}" == "true" ]; then docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} --platform=arm64 @@ -697,6 +705,7 @@ pipeline { -e DOCKER_LOGS_TIMEOUT=\"${CI_DELAY}\" \ -e TAGS=\"${CI_TAGS}\" \ -e META_TAG=\"${META_TAG}\" \ + -e RELEASE_TAG=\"develop\" \ -e PORT=\"${CI_PORT}\" \ -e SSL=\"${CI_SSL}\" \ -e BASE=\"${DIST_IMAGE}\" \ @@ -706,6 +715,7 @@ pipeline { -e WEB_SCREENSHOT=\"${CI_WEB}\" \ -e WEB_AUTH=\"${CI_AUTH}\" \ -e WEB_PATH=\"${CI_WEBPATH}\" \ + -e NODE_NAME=\"${NODE_NAME}\" \ -t ghcr.io/linuxserver/ci:latest \ python3 test_build.py''' } @@ -973,17 +983,45 @@ EOF git config --global --unset commit.gpgsign ''' script{ + env.JOB_DATE = sh( + script: '''date '+%Y-%m-%dT%H:%M:%S%:z' ''', + returnStdout: true).trim() if (env.EXIT_STATUS == "ABORTED"){ sh 'echo "build aborted"' - } - else if (currentBuild.currentResult == "SUCCESS"){ - sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jenkins-avatar.png","embeds": [{"color": 1681177,\ - "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**ShellCheck Results:** '${SHELLCHECK_URL}'\\n**Status:** Success\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\ - "username": "Jenkins"}' ${BUILDS_DISCORD} ''' - } - else { - sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jenkins-avatar.png","embeds": [{"color": 16711680,\ - "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**ShellCheck Results:** '${SHELLCHECK_URL}'\\n**Status:** failure\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\ + }else{ + if (currentBuild.currentResult == "SUCCESS"){ + if (env.GITHUBIMAGE =~ /lspipepr/){ + env.JOB_WEBHOOK_STATUS='Success' + env.JOB_WEBHOOK_COLOUR=3957028 + env.JOB_WEBHOOK_FOOTER='PR Build' + }else if (env.GITHUBIMAGE =~ /lsiodev/){ + env.JOB_WEBHOOK_STATUS='Success' + env.JOB_WEBHOOK_COLOUR=3957028 + env.JOB_WEBHOOK_FOOTER='Dev Build' + }else{ + env.JOB_WEBHOOK_STATUS='Success' + env.JOB_WEBHOOK_COLOUR=1681177 + env.JOB_WEBHOOK_FOOTER='Live Build' + } + }else{ + if (env.GITHUBIMAGE =~ /lspipepr/){ + env.JOB_WEBHOOK_STATUS='Failure' + env.JOB_WEBHOOK_COLOUR=12669523 + env.JOB_WEBHOOK_FOOTER='PR Build' + }else if (env.GITHUBIMAGE =~ /lsiodev/){ + env.JOB_WEBHOOK_STATUS='Failure' + env.JOB_WEBHOOK_COLOUR=12669523 + env.JOB_WEBHOOK_FOOTER='Dev Build' + }else{ + env.JOB_WEBHOOK_STATUS='Failure' + env.JOB_WEBHOOK_COLOUR=16711680 + env.JOB_WEBHOOK_FOOTER='Live Build' + } + } + sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jenkins-avatar.png","embeds": [{"'color'": '${JOB_WEBHOOK_COLOUR}',\ + "footer": {"text" : "'"${JOB_WEBHOOK_FOOTER}"'"},\ + "timestamp": "'${JOB_DATE}'",\ + "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**ShellCheck Results:** '${SHELLCHECK_URL}'\\n**Status:** '${JOB_WEBHOOK_STATUS}'\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\ "username": "Jenkins"}' ${BUILDS_DISCORD} ''' } } From b568561059ef3e372b41b4284fab2c3022bad8da Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 27 Sep 2024 23:38:28 +0000 Subject: [PATCH 266/337] Bot Updating Templated Files --- .github/workflows/package_trigger.yml | 42 --------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/package_trigger.yml diff --git a/.github/workflows/package_trigger.yml b/.github/workflows/package_trigger.yml deleted file mode 100644 index 67181cd..0000000 --- a/.github/workflows/package_trigger.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Package Trigger Main - -on: - workflow_dispatch: - -jobs: - package-trigger-develop: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4.1.1 - - - name: Package Trigger - if: github.ref == 'refs/heads/develop' - run: | - printf "# Package trigger for docker-kasm\n\n" >> $GITHUB_STEP_SUMMARY - if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP }}" ]; then - echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY - echo "> Github secret \`PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY - exit 0 - fi - if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/lastBuild/api/json | jq -r '.building') == "true" ]; then - echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY - echo "> There already seems to be an active build on Jenkins; skipping package trigger" >> $GITHUB_STEP_SUMMARY - exit 0 - fi - echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY - echo "> Package trigger running off of develop branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_KASM_DEVELOP\`" >> $GITHUB_STEP_SUMMARY - response=$(curl -iX POST \ - https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/buildWithParameters?PACKAGE_CHECK=true \ - --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") - echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY - echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY - sleep 10 - buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') - buildurl="${buildurl%$'\r'}" - echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY - echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY - curl -iX POST \ - "${buildurl}submitDescription" \ - --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ - --data-urlencode "description=GHA package trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ - --data-urlencode "Submit=Submit" From 0ad72cba9a7641652f2bbee22e640b9e64c0bce6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 27 Sep 2024 23:39:55 +0000 Subject: [PATCH 267/337] Bot Updating Templated Files --- .github/workflows/external_trigger.yml | 64 +++++++++++------- .../workflows/package_trigger_scheduler.yml | 66 ++++++++++++++----- 2 files changed, 88 insertions(+), 42 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 21bc524..c7d713e 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -11,15 +11,17 @@ jobs: - name: External Trigger if: github.ref == 'refs/heads/develop' + env: + SKIP_EXTERNAL_TRIGGER: ${{ vars.SKIP_EXTERNAL_TRIGGER }} run: | printf "# External trigger for docker-kasm\n\n" >> $GITHUB_STEP_SUMMARY - if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP }}" ]; then + if grep -wq "^kasm_develop$" <<< "${SKIP_EXTERNAL_TRIGGER}"; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY - echo "> Github secret \`PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY + echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`kasm_develop\`; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY - echo "> External trigger running off of develop branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_KASM_DEVELOP\`" >> $GITHUB_STEP_SUMMARY + echo "> External trigger running off of develop branch. To disable this trigger, add \`kasm_develop\` into the Github organizational variable \`SKIP_EXTERNAL_TRIGGER\`." >> $GITHUB_STEP_SUMMARY printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY EXT_RELEASE=$(curl -sX GET https://kasm-ci.s3.amazonaws.com/dev-version.txt) echo "Type is \`custom_version_command\`" >> $GITHUB_STEP_SUMMARY @@ -78,26 +80,38 @@ jobs: echo "New version \`${EXT_RELEASE}\` found; but there already seems to be an active build on Jenkins; exiting" >> $GITHUB_STEP_SUMMARY exit 0 else - printf "\n## Trigger new build\n\n" >> $GITHUB_STEP_SUMMARY - echo "New version \`${EXT_RELEASE}\` found; old version was \`${IMAGE_VERSION}\`. Triggering new build" >> $GITHUB_STEP_SUMMARY - response=$(curl -iX POST \ - https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/buildWithParameters?PACKAGE_CHECK=false \ - --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") - echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY - echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY - sleep 10 - buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') - buildurl="${buildurl%$'\r'}" - echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY - echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY - curl -iX POST \ - "${buildurl}submitDescription" \ - --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ - --data-urlencode "description=GHA external trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ - --data-urlencode "Submit=Submit" - echo "**** Notifying Discord ****" - TRIGGER_REASON="A version change was detected for kasm tag develop. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE}" - curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, - "description": "**Build Triggered** \n**Reason:** '"${TRIGGER_REASON}"' \n**Build URL:** '"${buildurl}display/redirect"' \n"}], - "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} + if [[ "${artifacts_found}" == "false" ]]; then + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> New version detected, but not all artifacts are published yet; skipping trigger" >> $GITHUB_STEP_SUMMARY + FAILURE_REASON="New version ${EXT_RELEASE} for kasm tag develop is detected, however not all artifacts are uploaded to upstream release yet. Will try again later." + curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, + "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n"}], + "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} + else + printf "\n## Trigger new build\n\n" >> $GITHUB_STEP_SUMMARY + echo "New version \`${EXT_RELEASE}\` found; old version was \`${IMAGE_VERSION}\`. Triggering new build" >> $GITHUB_STEP_SUMMARY + if "${artifacts_found}" == "true" ]]; then + echo "All artifacts seem to be uploaded." >> $GITHUB_STEP_SUMMARY + fi + response=$(curl -iX POST \ + https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/develop/buildWithParameters?PACKAGE_CHECK=false \ + --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") + echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY + echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY + sleep 10 + buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') + buildurl="${buildurl%$'\r'}" + echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY + echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY + curl -iX POST \ + "${buildurl}submitDescription" \ + --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ + --data-urlencode "description=GHA external trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ + --data-urlencode "Submit=Submit" + echo "**** Notifying Discord ****" + TRIGGER_REASON="A version change was detected for kasm tag develop. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE}" + curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, + "description": "**Build Triggered** \n**Reason:** '"${TRIGGER_REASON}"' \n**Build URL:** '"${buildurl}display/redirect"' \n"}], + "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} + fi fi diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index af9dcc5..4c50dca 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -14,6 +14,8 @@ jobs: fetch-depth: '0' - name: Package Trigger Scheduler + env: + SKIP_PACKAGE_TRIGGER: ${{ vars.SKIP_PACKAGE_TRIGGER }} run: | printf "# Package trigger scheduler for docker-kasm\n\n" >> $GITHUB_STEP_SUMMARY printf "Found the branches:\n\n%s\n" "$(git for-each-ref --format='- %(refname:lstrip=3)' refs/remotes)" >> $GITHUB_STEP_SUMMARY @@ -24,27 +26,57 @@ jobs: continue fi printf "\n## Evaluating \`%s\`\n\n" ${br} >> $GITHUB_STEP_SUMMARY - ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/jenkins-vars.yml | yq -r '.ls_branch') - if [ "${br}" == "${ls_branch}" ]; then + JENKINS_VARS=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/jenkins-vars.yml) + if [[ "${br}" == $(yq -r '.ls_branch' <<< "${JENKINS_VARS}") ]]; then echo "Branch appears to be live; checking workflow." >> $GITHUB_STEP_SUMMARY - if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/.github/workflows/package_trigger.yml > /dev/null 2>&1; then - echo "Triggering package trigger workflow for branch ${br}" >> $GITHUB_STEP_SUMMARY - triggered_branches="${triggered_branches}${br} " - curl -iX POST \ - -H "Authorization: token ${{ secrets.CR_PAT }}" \ - -H "Accept: application/vnd.github.v3+json" \ - -d "{\"ref\":\"refs/heads/${br}\"}" \ - https://api.github.com/repos/linuxserver/docker-kasm/actions/workflows/package_trigger.yml/dispatches - sleep 30 + if [[ $(yq -r '.skip_package_check' <<< "${JENKINS_VARS}") == "true" ]]; then + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Skipping branch ${br} due to \`skip_package_check\` being set in \`jenkins-vars.yml\`." >> $GITHUB_STEP_SUMMARY + skipped_branches="${skipped_branches}${br} " + elif grep -wq "^kasm_${br}$" <<< "${SKIP_PACKAGE_TRIGGER}"; then + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Github organizational variable \`SKIP_PACKAGE_TRIGGER\` contains \`kasm_${br}\`; skipping trigger." >> $GITHUB_STEP_SUMMARY + skipped_branches="${skipped_branches}${br} " + elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/${br}/lastBuild/api/json | jq -r '.building') == "true" ]; then + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> There already seems to be an active build on Jenkins; skipping package trigger for ${br}" >> $GITHUB_STEP_SUMMARY + skipped_branches="${skipped_branches}${br} " else - echo "Skipping branch ${br} due to no package trigger workflow present." >> $GITHUB_STEP_SUMMARY + echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY + echo "> Triggering package trigger for branch ${br}" >> $GITHUB_STEP_SUMMARY + printf "> To disable, add \`kasm_%s\` into the Github organizational variable \`SKIP_PACKAGE_TRIGGER\`.\n\n" "${br}" >> $GITHUB_STEP_SUMMARY + triggered_branches="${triggered_branches}${br} " + response=$(curl -iX POST \ + https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/${br}/buildWithParameters?PACKAGE_CHECK=true \ + --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") + echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY + echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY + sleep 10 + buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') + buildurl="${buildurl%$'\r'}" + echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY + echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY + curl -iX POST \ + "${buildurl}submitDescription" \ + --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ + --data-urlencode "description=GHA package trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ + --data-urlencode "Submit=Submit" + sleep 20 fi else echo "Skipping branch ${br} due to being detected as dev branch." >> $GITHUB_STEP_SUMMARY fi done - echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****" - echo "**** Notifying Discord ****" - curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, - "description": "**Package Check Build(s) Triggered for kasm** \n**Branch(es):** '"${triggered_branches}"' \n**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-kasm/activity/"' \n"}], - "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} + if [[ -n "${triggered_branches}" ]] || [[ -n "${skipped_branches}" ]]; then + if [[ -n "${triggered_branches}" ]]; then + NOTIFY_BRANCHES="**Triggered:** ${triggered_branches} \n" + fi + if [[ -n "${skipped_branches}" ]]; then + NOTIFY_BRANCHES="${NOTIFY_BRANCHES}**Skipped:** ${skipped_branches} \n" + fi + echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****" + echo "**** Notifying Discord ****" + curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, + "description": "**Package Check Build(s) Triggered for kasm** \n'"${NOTIFY_BRANCHES}"'**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-kasm/activity/"' \n"}], + "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} + fi From 8ad2d6b8565de64d2bcb55c5e1726cc1a24940fa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 27 Sep 2024 23:44:13 +0000 Subject: [PATCH 268/337] Bot Updating Package Versions --- package_versions.txt | 73 ++++++++++++++++++++++---------------------- 1 file changed, 36 insertions(+), 37 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index c0b8d97..a7d698d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.6.1 npm +@types/node 22.7.4 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -66,7 +66,7 @@ buffer 5. buildcheck 0.0.6 npm builtins 5.1.0 npm bytes 3.1.2 npm -ca-certificates 20230311ubuntu0.22.04.1 deb +ca-certificates 20240203~22.04.1 deb cacache 18.0.2 npm call-bind 1.0.7 npm catatonit 0.1.7-1 deb @@ -154,13 +154,14 @@ github.com/AlecAivazis/survey/v2 v2 github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module github.com/Masterminds/semver v1.5.0 go-module github.com/Microsoft/hcsshim v0.11.7 go-module (+2 duplicates) -github.com/NVIDIA/go-nvlib v0.6.0 go-module (+3 duplicates) +github.com/NVIDIA/go-nvlib v0.6.1 go-module (+3 duplicates) github.com/NVIDIA/go-nvml v0.12.4-0 go-module (+3 duplicates) -github.com/NVIDIA/nvidia-container-toolkit v1.16.1 go-module (+3 duplicates) +github.com/NVIDIA/nvidia-container-toolkit v1.16.2 go-module (+3 duplicates) github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module -github.com/a8m/envsubst v1.3.0 go-module (+1 duplicate) +github.com/a8m/envsubst v1.4.2 go-module (+1 duplicate) github.com/agext/levenshtein v1.2.3 go-module github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412 go-module +github.com/alecthomas/participle/v2 v2.1.1 go-module (+1 duplicate) github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092 go-module github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 go-module github.com/armon/go-metrics v0.4.1 go-module @@ -237,7 +238,7 @@ github.com/cpuguy83/go-md2man/v2 v2 github.com/cyphar/filepath-securejoin v0.2.4 go-module (+1 duplicate) github.com/davecgh/go-spew v1.1.1 go-module (+2 duplicates) github.com/deckarep/golang-set/v2 v2.3.0 go-module -github.com/dimchansky/utfbom v1.1.1 go-module +github.com/dimchansky/utfbom v1.1.1 go-module (+2 duplicates) github.com/distribution/distribution/v3 v3.0.0-20210316161203-a01c71e2477e go-module github.com/distribution/reference v0.6.0 go-module (+2 duplicates) github.com/docker/buildx v0.8.1 go-module @@ -258,9 +259,9 @@ github.com/docker/go-units v0 github.com/docker/go-units v0.5.0 go-module (+4 duplicates) github.com/docker/libtrust v0.0.0-20150526203908-9cbd2a1374f4 go-module github.com/dustin/go-humanize v1.0.0 go-module -github.com/elliotchance/orderedmap v1.4.0 go-module (+1 duplicate) +github.com/elliotchance/orderedmap v1.6.0 go-module (+1 duplicate) github.com/emicklei/go-restful/v3 v3.10.1 go-module -github.com/fatih/color v1.13.0 go-module (+1 duplicate) +github.com/fatih/color v1.17.0 go-module (+1 duplicate) github.com/felixge/httpsnoop v1.0.2 go-module github.com/felixge/httpsnoop v1.0.3 go-module (+1 duplicate) github.com/felixge/httpsnoop v1.0.4 go-module @@ -274,7 +275,8 @@ github.com/go-logr/logr v1 github.com/go-logr/logr v1.3.0 go-module (+1 duplicate) github.com/go-logr/logr v1.4.1 go-module github.com/go-logr/stdr v1.2.2 go-module (+3 duplicates) -github.com/goccy/go-yaml v1.9.5 go-module (+1 duplicate) +github.com/goccy/go-json v0.10.3 go-module (+1 duplicate) +github.com/goccy/go-yaml v1.12.0 go-module (+1 duplicate) github.com/godbus/dbus/v5 v5.0.6 go-module github.com/godbus/dbus/v5 v5.1.0 go-module (+4 duplicates) github.com/gofrs/flock v0.12.1 go-module @@ -320,7 +322,7 @@ github.com/imdario/mergo v0 github.com/in-toto/in-toto-golang v0.5.0 go-module github.com/intel/goresctrl v0.3.0 go-module (+1 duplicate) github.com/ishidawataru/sctp v0.0.0-20230406120618-7ff4192f6ff2 go-module (+1 duplicate) -github.com/jinzhu/copier v0.3.5 go-module (+1 duplicate) +github.com/jinzhu/copier v0.4.0 go-module (+1 duplicate) github.com/jmoiron/sqlx v1.3.3 go-module github.com/json-iterator/go v1.1.12 go-module (+1 duplicate) github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module @@ -328,16 +330,18 @@ github.com/klauspost/compress v1 github.com/klauspost/compress v1.16.7 go-module (+3 duplicates) github.com/klauspost/compress v1.17.9 go-module github.com/klauspost/cpuid/v2 v2.0.4 go-module (+1 duplicate) -github.com/magiconair/properties v1.8.6 go-module (+1 duplicate) -github.com/mattn/go-colorable v0.1.12 go-module (+2 duplicates) -github.com/mattn/go-isatty v0.0.14 go-module (+2 duplicates) +github.com/magiconair/properties v1.8.7 go-module (+1 duplicate) +github.com/mattn/go-colorable v0.1.12 go-module +github.com/mattn/go-colorable v0.1.13 go-module (+1 duplicate) +github.com/mattn/go-isatty v0.0.14 go-module +github.com/mattn/go-isatty v0.0.20 go-module (+1 duplicate) github.com/mattn/go-shellwords v1.0.12 go-module github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 go-module github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module (+1 duplicate) github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module github.com/miekg/dns v1.1.57 go-module github.com/miekg/pkcs11 v1.1.1 go-module -github.com/mikefarah/yq/v4 v0.0.0-20220429015737-1425d0720ec1 go-module (+1 duplicate) +github.com/mikefarah/yq/v4 v0.0.0-20240912192210-a11a83c5a7b2 go-module (+1 duplicate) github.com/minio/sha256-simd v1.0.0 go-module (+1 duplicate) github.com/mistifyio/go-zfs/v3 v3.0.1 go-module (+1 duplicate) github.com/mitchellh/copystructure v1.2.0 go-module @@ -386,6 +390,7 @@ github.com/opencontainers/selinux v1 github.com/package-url/packageurl-go v0.1.1-0.20220428063043-89078438f170 go-module github.com/pelletier/go-toml v1.9.4 go-module github.com/pelletier/go-toml v1.9.5 go-module (+6 duplicates) +github.com/pelletier/go-toml/v2 v2.2.3 go-module (+1 duplicate) github.com/philhofer/fwd v1.1.2 go-module github.com/pkg/errors v0.9.1 go-module (+6 duplicates) github.com/pmezard/go-difflib v1.0.0 go-module @@ -415,16 +420,14 @@ github.com/shurcooL/sanitized_anchor_name v1 github.com/sirupsen/logrus v1.8.1 go-module (+1 duplicate) github.com/sirupsen/logrus v1.9.3 go-module (+10 duplicates) github.com/spdx/tools-golang v0.5.3 go-module -github.com/spf13/cobra v1.4.0 go-module (+2 duplicates) -github.com/spf13/cobra v1.8.1 go-module +github.com/spf13/cobra v1.4.0 go-module +github.com/spf13/cobra v1.8.1 go-module (+2 duplicates) github.com/spf13/pflag v1.0.5 go-module (+4 duplicates) github.com/stefanberger/go-pkcs11uri v0.0.0-20230803200340-78284954bff6 go-module github.com/stretchr/testify v1.9.0 go-module github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module (+6 duplicates) github.com/tchap/go-patricia/v2 v2.3.1 go-module github.com/theupdateframework/notary v0.6.1 go-module -github.com/timtadh/data-structures v0.5.3 go-module (+1 duplicate) -github.com/timtadh/lexmachine v0.2.2 go-module (+1 duplicate) github.com/tinylib/msgp v1.1.8 go-module github.com/tonistiigi/fsutil v0.0.0-20220315205639-9ed612626da3 go-module github.com/tonistiigi/fsutil v0.0.0-20240424095704-91a3fc46842c go-module @@ -435,7 +438,7 @@ github.com/tonistiigi/units v0 github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f go-module github.com/urfave/cli v1.22.1 go-module github.com/urfave/cli v1.22.12 go-module (+1 duplicate) -github.com/urfave/cli/v2 v2.27.2 go-module (+1 duplicate) +github.com/urfave/cli/v2 v2.27.4 go-module (+1 duplicate) github.com/vbatts/tar-split v0.11.5 go-module github.com/vishvananda/netlink v1.1.0 go-module github.com/vishvananda/netlink v1.2.1-beta.2 go-module (+1 duplicate) @@ -447,6 +450,7 @@ github.com/xeipuuv/gojsonpointer v0 github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module github.com/xeipuuv/gojsonschema v1.2.0 go-module github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 go-module (+1 duplicate) +github.com/yuin/gopher-lua v1.1.1 go-module (+1 duplicate) github.com/zmap/zcrypto v0.0.0-20210511125630-18f1e0152cfc go-module github.com/zmap/zlint/v3 v3.1.0 go-module glob 10.3.12 npm @@ -496,34 +500,31 @@ golang.org/x/crypto v0 golang.org/x/crypto v0.26.0 go-module golang.org/x/exp v0.0.0-20240823005443-9b4947da3948 go-module golang.org/x/mod v0.12.0 go-module -golang.org/x/mod v0.19.0 go-module (+3 duplicates) -golang.org/x/mod v0.20.0 go-module -golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d go-module (+1 duplicate) +golang.org/x/mod v0.20.0 go-module (+4 duplicates) golang.org/x/net v0.0.0-20211216030914-fe4d6282115f go-module golang.org/x/net v0.23.0 go-module (+2 duplicates) golang.org/x/net v0.24.0 go-module -golang.org/x/net v0.28.0 go-module +golang.org/x/net v0.28.0 go-module (+2 duplicates) golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 go-module golang.org/x/oauth2 v0.11.0 go-module golang.org/x/oauth2 v0.22.0 go-module golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module golang.org/x/sync v0.5.0 go-module (+4 duplicates) golang.org/x/sync v0.8.0 go-module -golang.org/x/sys v0.0.0-20211205182925-97ca703d548d go-module (+1 duplicate) golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module golang.org/x/sys v0.18.0 go-module (+4 duplicates) golang.org/x/sys v0.19.0 go-module -golang.org/x/sys v0.22.0 go-module (+3 duplicates) -golang.org/x/sys v0.24.0 go-module (+1 duplicate) +golang.org/x/sys v0.23.0 go-module (+1 duplicate) +golang.org/x/sys v0.24.0 go-module (+5 duplicates) golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module golang.org/x/term v0.18.0 go-module golang.org/x/text v0.14.0 go-module (+2 duplicates) -golang.org/x/text v0.17.0 go-module -golang.org/x/text v0.3.7 go-module (+2 duplicates) +golang.org/x/text v0.17.0 go-module (+2 duplicates) +golang.org/x/text v0.3.7 go-module golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 go-module golang.org/x/time v0.6.0 go-module -golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 go-module (+1 duplicate) +golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 go-module (+1 duplicate) google.golang.org/api v0.155.0 go-module google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa go-module google.golang.org/genproto v0.0.0-20231211222908-989df2bf70f3 go-module (+4 duplicates) @@ -541,8 +542,7 @@ gopd 1. gopkg.in/inf.v0 v0.9.1 go-module (+2 duplicates) gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module (+1 duplicate) gopkg.in/yaml.v2 v2.4.0 go-module (+7 duplicates) -gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b go-module (+1 duplicate) -gopkg.in/yaml.v3 v3.0.1 go-module (+1 duplicate) +gopkg.in/yaml.v3 v3.0.1 go-module (+3 duplicates) gpg 2.2.27-3ubuntu2.1 deb gpg-agent 2.2.27-3ubuntu2.1 deb gpg-wks-client 2.2.27-3ubuntu2.1 deb @@ -681,8 +681,8 @@ libnpmteam 6. libnpmversion 6.0.1 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.16.1-1 deb -libnvidia-container1 1.16.1-1 deb +libnvidia-container-tools 1.16.2-1 deb +libnvidia-container1 1.16.2-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.4 deb @@ -781,8 +781,8 @@ npm-pick-manifest 9. npm-profile 9.0.2 npm npm-registry-fetch 17.0.0 npm npm-user-validate 2.0.0 npm -nvidia-container-toolkit 1.16.1-1 deb -nvidia-container-toolkit-base 1.16.1-1 deb +nvidia-container-toolkit 1.16.2-1 deb +nvidia-container-toolkit-base 1.16.2-1 deb nvidia-docker2 2.14.0-1 deb object-assign 4.1.1 npm object-inspect 1.13.2 npm @@ -864,9 +864,8 @@ ssh2 1. ssri 10.0.5 npm statuses 2.0.1 npm stdlib go1.17.9 go-module -stdlib go1.18.1 go-module (+1 duplicate) -stdlib go1.22.5 go-module (+3 duplicates) stdlib go1.22.7 go-module (+8 duplicates) +stdlib go1.23.1 go-module (+5 duplicates) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) string_decoder 1.3.0 npm From 811664e570283ba99911131df315ad6d39ce65d6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 1 Oct 2024 21:41:14 +0000 Subject: [PATCH 269/337] Bot Updating Templated Files --- .github/workflows/external_trigger.yml | 2 +- .github/workflows/package_trigger_scheduler.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index c7d713e..335623b 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -15,7 +15,7 @@ jobs: SKIP_EXTERNAL_TRIGGER: ${{ vars.SKIP_EXTERNAL_TRIGGER }} run: | printf "# External trigger for docker-kasm\n\n" >> $GITHUB_STEP_SUMMARY - if grep -wq "^kasm_develop$" <<< "${SKIP_EXTERNAL_TRIGGER}"; then + if grep -q "^kasm_develop" <<< "${SKIP_EXTERNAL_TRIGGER}"; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`kasm_develop\`; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index 4c50dca..b0161a9 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -33,7 +33,7 @@ jobs: echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "> Skipping branch ${br} due to \`skip_package_check\` being set in \`jenkins-vars.yml\`." >> $GITHUB_STEP_SUMMARY skipped_branches="${skipped_branches}${br} " - elif grep -wq "^kasm_${br}$" <<< "${SKIP_PACKAGE_TRIGGER}"; then + elif grep -q "^kasm_${br}" <<< "${SKIP_PACKAGE_TRIGGER}"; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "> Github organizational variable \`SKIP_PACKAGE_TRIGGER\` contains \`kasm_${br}\`; skipping trigger." >> $GITHUB_STEP_SUMMARY skipped_branches="${skipped_branches}${br} " From f7b04a3271d498a8acfbc44d1fc80b74229b8133 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 8 Oct 2024 21:42:48 +0000 Subject: [PATCH 270/337] Bot Updating Package Versions --- package_versions.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index a7d698d..0b9bea2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -26,11 +26,12 @@ NAME VE @sigstore/tuf 2.3.2 npm @sigstore/verify 1.2.0 npm @socket.io/component-emitter 3.1.2 npm +@socket.io/component-emitter UNKNOWN npm (+1 duplicate) @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.7.4 npm +@types/node 22.7.5 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -89,7 +90,7 @@ containerd.io 1. content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.4.2 npm -cookie 0.6.0 npm +cookie 0.7.1 npm cookie-signature 1.0.6 npm corepack 0.28.0 npm coreutils 8.32-4.1ubuntu1.2 deb @@ -128,6 +129,7 @@ encoding 0. end-of-stream 1.4.4 npm engine.io 6.6.1 npm engine.io-parser 5.2.3 npm +engine.io-parser UNKNOWN npm (+1 duplicate) env-paths 2.2.1 npm err-code 2.0.3 npm es-define-property 1.0.0 npm @@ -135,7 +137,7 @@ es-errors 1. escape-html 1.0.3 npm etag 1.8.1 npm exponential-backoff 3.1.1 npm -express 4.21.0 npm +express 4.21.1 npm fastest-levenshtein 1.0.16 npm finalhandler 1.3.1 npm findutils 4.8.0-1ubuntu3 deb From 7e7134f2861c72e11e572c1f38ff62060b14a20b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 15 Oct 2024 13:03:06 +0000 Subject: [PATCH 271/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 0b9bea2..01782e8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -89,8 +89,8 @@ common-ancestor-path 1. containerd.io 1.7.22-1 deb content-disposition 0.5.4 npm content-type 1.0.5 npm -cookie 0.4.2 npm cookie 0.7.1 npm +cookie 0.7.2 npm cookie-signature 1.0.6 npm corepack 0.28.0 npm coreutils 8.32-4.1ubuntu1.2 deb @@ -127,7 +127,7 @@ encodeurl 1. encodeurl 2.0.0 npm encoding 0.1.13 npm end-of-stream 1.4.4 npm -engine.io 6.6.1 npm +engine.io 6.6.2 npm engine.io-parser 5.2.3 npm engine.io-parser UNKNOWN npm (+1 duplicate) env-paths 2.2.1 npm @@ -760,7 +760,7 @@ ms 2. ms 2.1.2 npm ms 2.1.3 npm (+1 duplicate) mute-stream 1.0.0 npm -nan 2.20.0 npm +nan 2.22.0 npm ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb negotiator 0.6.3 npm (+1 duplicate) From f39d3f353ce6df55dcb940fdd620c018476a7c4e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 17 Oct 2024 23:40:43 +0000 Subject: [PATCH 272/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 01782e8..a6f69f9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,7 +31,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.7.5 npm +@types/node 22.7.6 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 64dd97a6e7ca1ad695fcdd88253da7c23bb33b69 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 22 Oct 2024 16:47:24 +0000 Subject: [PATCH 273/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a6f69f9..5800f0e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,7 +31,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.7.6 npm +@types/node 22.7.8 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From ea9e07a83caa0202b2e0968dce3aa8ff614d061d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 23 Oct 2024 16:50:20 +0000 Subject: [PATCH 274/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5800f0e..b6a5a34 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,7 +31,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.7.8 npm +@types/node 22.7.9 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 81d25e56edb08d1b4faa6145ec36f7698df40998 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 29 Oct 2024 21:43:49 +0000 Subject: [PATCH 275/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b6a5a34..1fc224e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,7 +31,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.7.9 npm +@types/node 22.8.4 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -850,7 +850,7 @@ sigs.k8s.io/yaml v1 sigs.k8s.io/yaml v1.3.0 go-module (+6 duplicates) sigstore 2.3.0 npm smart-buffer 4.2.0 npm -socket.io 4.8.0 npm +socket.io 4.8.1 npm socket.io-adapter 2.5.5 npm socket.io-parser 4.2.4 npm socks 2.8.3 npm From c6bb860ac2129ed77a8a0ec192f080f71f89bb3f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 31 Oct 2024 06:47:41 +0000 Subject: [PATCH 276/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1fc224e..d365693 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,7 +31,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.8.4 npm +@types/node 22.8.5 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 7c3c249c12002ce761b1df55f4d31b9af41f43b2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 31 Oct 2024 20:41:44 +0000 Subject: [PATCH 277/337] Bot Updating Package Versions --- package_versions.txt | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d365693..753b956 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,7 +31,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.8.5 npm +@types/node 22.8.6 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -158,7 +158,7 @@ github.com/Masterminds/semver v1 github.com/Microsoft/hcsshim v0.11.7 go-module (+2 duplicates) github.com/NVIDIA/go-nvlib v0.6.1 go-module (+3 duplicates) github.com/NVIDIA/go-nvml v0.12.4-0 go-module (+3 duplicates) -github.com/NVIDIA/nvidia-container-toolkit v1.16.2 go-module (+3 duplicates) +github.com/NVIDIA/nvidia-container-toolkit v1.17.0 go-module (+3 duplicates) github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module github.com/a8m/envsubst v1.4.2 go-module (+1 duplicate) github.com/agext/levenshtein v1.2.3 go-module @@ -368,7 +368,7 @@ github.com/moby/sys/signal v0 github.com/moby/sys/signal v0.7.0 go-module (+1 duplicate) github.com/moby/sys/signal v0.7.1 go-module github.com/moby/sys/symlink v0.2.0 go-module (+1 duplicate) -github.com/moby/sys/symlink v0.3.0 go-module +github.com/moby/sys/symlink v0.3.0 go-module (+2 duplicates) github.com/moby/sys/user v0.3.0 go-module (+4 duplicates) github.com/moby/sys/userns v0.1.0 go-module (+5 duplicates) github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 go-module @@ -517,7 +517,8 @@ golang.org/x/sys v0 golang.org/x/sys v0.18.0 go-module (+4 duplicates) golang.org/x/sys v0.19.0 go-module golang.org/x/sys v0.23.0 go-module (+1 duplicate) -golang.org/x/sys v0.24.0 go-module (+5 duplicates) +golang.org/x/sys v0.24.0 go-module (+1 duplicate) +golang.org/x/sys v0.26.0 go-module (+3 duplicates) golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module golang.org/x/term v0.18.0 go-module golang.org/x/text v0.14.0 go-module (+2 duplicates) @@ -683,8 +684,8 @@ libnpmteam 6. libnpmversion 6.0.1 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.16.2-1 deb -libnvidia-container1 1.16.2-1 deb +libnvidia-container-tools 1.17.0-1 deb +libnvidia-container1 1.17.0-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.4 deb @@ -783,8 +784,8 @@ npm-pick-manifest 9. npm-profile 9.0.2 npm npm-registry-fetch 17.0.0 npm npm-user-validate 2.0.0 npm -nvidia-container-toolkit 1.16.2-1 deb -nvidia-container-toolkit-base 1.16.2-1 deb +nvidia-container-toolkit 1.17.0-1 deb +nvidia-container-toolkit-base 1.17.0-1 deb nvidia-docker2 2.14.0-1 deb object-assign 4.1.1 npm object-inspect 1.13.2 npm @@ -867,7 +868,8 @@ ssri 10 statuses 2.0.1 npm stdlib go1.17.9 go-module stdlib go1.22.7 go-module (+8 duplicates) -stdlib go1.23.1 go-module (+5 duplicates) +stdlib go1.23.1 go-module (+1 duplicate) +stdlib go1.23.2 go-module (+3 duplicates) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) string_decoder 1.3.0 npm From ea66afb64af3e3c23c294ab15db39741e2a85ef4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 5 Nov 2024 21:43:52 +0000 Subject: [PATCH 278/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 753b956..0601978 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,7 +31,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.8.6 npm +@types/node 22.9.0 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From bd4898e3d74ad71ddc3abf4a6b5fb3a810388941 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Nov 2024 21:40:31 +0000 Subject: [PATCH 279/337] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2c13d21..d04e6f7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -850,7 +850,7 @@ pipeline { echo '{"tag_name":"'${META_TAG}'",\ "target_commitish": "develop",\ "name": "'${META_TAG}'",\ - "body": "**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n\\n**Remote Changes:**\\n\\n' > start + "body": "**CI Report:**\\n\\n'${CI_URL:-N/A}'\\n\\n**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n\\n**Remote Changes:**\\n\\n' > start printf '","draft": false,"prerelease": true}' >> releasebody.json paste -d'\\0' start releasebody.json > releasebody.json.done curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done''' From 84ddbe873dc44da1d144f6d485f8a47bbb9c3ce1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Nov 2024 21:42:51 +0000 Subject: [PATCH 280/337] Bot Updating Templated Files --- .github/CONTRIBUTING.md | 4 ++-- .github/workflows/package_trigger_scheduler.yml | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index c7e8b7b..9ec105a 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -105,10 +105,10 @@ docker build \ -t linuxserver/kasm:latest . ``` -The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` +The ARM variants can be built on x86_64 hardware and vice versa using `lscr.io/linuxserver/qemu-static` ```bash -docker run --rm --privileged multiarch/qemu-user-static:register --reset +docker run --rm --privileged lscr.io/linuxserver/qemu-static --reset ``` Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`. diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index b0161a9..7f583fc 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -70,13 +70,14 @@ jobs: if [[ -n "${triggered_branches}" ]] || [[ -n "${skipped_branches}" ]]; then if [[ -n "${triggered_branches}" ]]; then NOTIFY_BRANCHES="**Triggered:** ${triggered_branches} \n" + NOTIFY_BUILD_URL="**Build URL:** https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-kasm/activity/ \n" + echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****" fi if [[ -n "${skipped_branches}" ]]; then NOTIFY_BRANCHES="${NOTIFY_BRANCHES}**Skipped:** ${skipped_branches} \n" fi - echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****" echo "**** Notifying Discord ****" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, - "description": "**Package Check Build(s) Triggered for kasm** \n'"${NOTIFY_BRANCHES}"'**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-kasm/activity/"' \n"}], + "description": "**Package Check Build(s) for kasm** \n'"${NOTIFY_BRANCHES}"''"${NOTIFY_BUILD_URL}"'"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} fi From 3418d70a27ce1b9c540bbfb1bc85473f175d05c1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Nov 2024 21:47:27 +0000 Subject: [PATCH 281/337] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 0601978..5f8285e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -158,7 +158,7 @@ github.com/Masterminds/semver v1 github.com/Microsoft/hcsshim v0.11.7 go-module (+2 duplicates) github.com/NVIDIA/go-nvlib v0.6.1 go-module (+3 duplicates) github.com/NVIDIA/go-nvml v0.12.4-0 go-module (+3 duplicates) -github.com/NVIDIA/nvidia-container-toolkit v1.17.0 go-module (+3 duplicates) +github.com/NVIDIA/nvidia-container-toolkit v1.17.1 go-module (+3 duplicates) github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module github.com/a8m/envsubst v1.4.2 go-module (+1 duplicate) github.com/agext/levenshtein v1.2.3 go-module @@ -684,8 +684,8 @@ libnpmteam 6. libnpmversion 6.0.1 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.17.0-1 deb -libnvidia-container1 1.17.0-1 deb +libnvidia-container-tools 1.17.1-1 deb +libnvidia-container1 1.17.1-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.4 deb @@ -784,11 +784,11 @@ npm-pick-manifest 9. npm-profile 9.0.2 npm npm-registry-fetch 17.0.0 npm npm-user-validate 2.0.0 npm -nvidia-container-toolkit 1.17.0-1 deb -nvidia-container-toolkit-base 1.17.0-1 deb +nvidia-container-toolkit 1.17.1-1 deb +nvidia-container-toolkit-base 1.17.1-1 deb nvidia-docker2 2.14.0-1 deb object-assign 4.1.1 npm -object-inspect 1.13.2 npm +object-inspect 1.13.3 npm on-finished 2.4.1 npm once 1.4.0 npm openssl 3.0.2-0ubuntu1.18 deb From 78e845fc625dfa2cb91c386597f94c8f255fd871 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 14 Nov 2024 23:40:18 +0000 Subject: [PATCH 282/337] Bot Updating Package Versions --- package_versions.txt | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 5f8285e..42ff549 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -86,7 +86,7 @@ code.cloudfoundry.org/clock v1 color-convert 2.0.1 npm color-name 1.1.4 npm common-ancestor-path 1.0.1 npm -containerd.io 1.7.22-1 deb +containerd.io 1.7.23-1 deb content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.7.1 npm @@ -206,12 +206,14 @@ github.com/containerd/cgroups/v3 v3 github.com/containerd/console v1.0.3 go-module (+6 duplicates) github.com/containerd/console v1.0.4 go-module github.com/containerd/containerd v1.6.2 go-module -github.com/containerd/containerd v1.7.22 go-module (+5 duplicates) +github.com/containerd/containerd v1.7.22 go-module +github.com/containerd/containerd v1.7.23 go-module (+4 duplicates) github.com/containerd/containerd/api v1.7.19 go-module (+5 duplicates) github.com/containerd/continuity v0.2.2 go-module github.com/containerd/continuity v0.4.2 go-module (+4 duplicates) github.com/containerd/continuity v0.4.3 go-module -github.com/containerd/errdefs v0.1.0 go-module (+5 duplicates) +github.com/containerd/errdefs v0.1.0 go-module +github.com/containerd/errdefs v0.3.0 go-module (+4 duplicates) github.com/containerd/fifo v1.1.0 go-module (+5 duplicates) github.com/containerd/go-cni v1.1.10 go-module github.com/containerd/go-cni v1.1.9 go-module (+1 duplicate) @@ -867,7 +869,8 @@ ssh2 1. ssri 10.0.5 npm statuses 2.0.1 npm stdlib go1.17.9 go-module -stdlib go1.22.7 go-module (+8 duplicates) +stdlib go1.22.7 go-module (+2 duplicates) +stdlib go1.22.9 go-module (+5 duplicates) stdlib go1.23.1 go-module (+1 duplicate) stdlib go1.23.2 go-module (+3 duplicates) string-width 4.2.3 npm (+1 duplicate) From 2bf3bf52a39d17af6b7be6617898d49577675ad3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Nov 2024 21:43:29 +0000 Subject: [PATCH 283/337] Bot Updating Package Versions --- package_versions.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 42ff549..ff23172 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,7 +31,7 @@ NAME VE @tufjs/models 2.0.0 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.9.0 npm +@types/node 22.9.1 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -99,7 +99,7 @@ cpu-features 0. cron 3.0pl1-137ubuntu3 deb cross-spawn 7.0.3 npm cssesc 3.0.0 npm -curl 7.81.0-1ubuntu1.18 deb +curl 7.81.0-1ubuntu1.19 deb dario.cat/mergo v1.0.0 go-module (+1 duplicate) dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb @@ -158,7 +158,7 @@ github.com/Masterminds/semver v1 github.com/Microsoft/hcsshim v0.11.7 go-module (+2 duplicates) github.com/NVIDIA/go-nvlib v0.6.1 go-module (+3 duplicates) github.com/NVIDIA/go-nvml v0.12.4-0 go-module (+3 duplicates) -github.com/NVIDIA/nvidia-container-toolkit v1.17.1 go-module (+3 duplicates) +github.com/NVIDIA/nvidia-container-toolkit v1.17.2 go-module (+3 duplicates) github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module github.com/a8m/envsubst v1.4.2 go-module (+1 duplicate) github.com/agext/levenshtein v1.2.3 go-module @@ -629,7 +629,7 @@ libcap2 1: libcap2-bin 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.2 deb libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.18 deb +libcurl4 7.81.0-1ubuntu1.19 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb @@ -686,8 +686,8 @@ libnpmteam 6. libnpmversion 6.0.1 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.17.1-1 deb -libnvidia-container1 1.17.1-1 deb +libnvidia-container-tools 1.17.2-1 deb +libnvidia-container1 1.17.2-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.4 deb @@ -699,8 +699,8 @@ libpcre3 2: libprocps8 2:3.3.17-6ubuntu2.1 deb libpsl5 0.21.0-1.2build2 deb libpython3-stdlib 3.10.6-1~22.04.1 deb -libpython3.10-minimal 3.10.12-1~22.04.6 deb -libpython3.10-stdlib 3.10.12-1~22.04.6 deb +libpython3.10-minimal 3.10.12-1~22.04.7 deb +libpython3.10-stdlib 3.10.12-1~22.04.7 deb libreadline8 8.1.2-1 deb librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb @@ -786,8 +786,8 @@ npm-pick-manifest 9. npm-profile 9.0.2 npm npm-registry-fetch 17.0.0 npm npm-user-validate 2.0.0 npm -nvidia-container-toolkit 1.17.1-1 deb -nvidia-container-toolkit-base 1.17.1-1 deb +nvidia-container-toolkit 1.17.2-1 deb +nvidia-container-toolkit-base 1.17.2-1 deb nvidia-docker2 2.14.0-1 deb object-assign 4.1.1 npm object-inspect 1.13.3 npm @@ -820,8 +820,8 @@ publicsuffix 20 pump 3.0.2 npm python3 3.10.6-1~22.04.1 deb python3-minimal 3.10.6-1~22.04.1 deb -python3.10 3.10.12-1~22.04.6 deb -python3.10-minimal 3.10.12-1~22.04.6 deb +python3.10 3.10.12-1~22.04.7 deb +python3.10-minimal 3.10.12-1~22.04.7 deb qrcode-terminal 0.12.0 npm qs 6.13.0 npm range-parser 1.2.1 npm From 39688bbed60d13febedf458249ff66608e5e2b0c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 22 Nov 2024 14:44:48 +0000 Subject: [PATCH 284/337] Bot Updating Package Versions --- package_versions.txt | 139 +++++++++++++++++++++---------------------- 1 file changed, 68 insertions(+), 71 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ff23172..aab8fda 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -4,31 +4,31 @@ NAME VE @isaacs/cliui 8.0.2 npm @isaacs/string-locale-compare 1.1.0 npm @npmcli/agent 2.2.2 npm -@npmcli/arborist 7.5.1 npm -@npmcli/config 8.3.1 npm -@npmcli/fs 3.1.0 npm -@npmcli/git 5.0.6 npm +@npmcli/arborist 7.5.4 npm +@npmcli/config 8.3.4 npm +@npmcli/fs 3.1.1 npm +@npmcli/git 5.0.8 npm @npmcli/installed-package-contents 2.1.0 npm @npmcli/map-workspaces 3.0.6 npm -@npmcli/metavuln-calculator 7.1.0 npm +@npmcli/metavuln-calculator 7.1.1 npm @npmcli/name-from-folder 2.0.0 npm @npmcli/node-gyp 3.0.0 npm -@npmcli/package-json 5.1.0 npm -@npmcli/promise-spawn 7.0.1 npm +@npmcli/package-json 5.2.0 npm +@npmcli/promise-spawn 7.0.2 npm @npmcli/query 3.1.0 npm -@npmcli/redact 2.0.0 npm +@npmcli/redact 2.0.1 npm @npmcli/run-script 8.1.0 npm @pkgjs/parseargs 0.11.0 npm -@sigstore/bundle 2.3.1 npm +@sigstore/bundle 2.3.2 npm @sigstore/core 1.1.0 npm -@sigstore/protobuf-specs 0.3.1 npm -@sigstore/sign 2.3.0 npm -@sigstore/tuf 2.3.2 npm -@sigstore/verify 1.2.0 npm +@sigstore/protobuf-specs 0.3.2 npm +@sigstore/sign 2.3.2 npm +@sigstore/tuf 2.3.4 npm +@sigstore/verify 1.2.1 npm @socket.io/component-emitter 3.1.2 npm @socket.io/component-emitter UNKNOWN npm (+1 duplicate) @tufjs/canonical-json 2.0.0 npm -@tufjs/models 2.0.0 npm +@tufjs/models 2.0.1 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm @types/node 22.9.1 npm @@ -56,7 +56,7 @@ base64-js 1. base64id 2.0.0 npm bash 5.1-6ubuntu1.1 deb bcrypt-pbkdf 1.0.2 npm -bin-links 4.0.3 npm +bin-links 4.0.4 npm binary-extensions 2.3.0 npm bl 4.1.0 npm body-parser 1.20.3 npm @@ -65,23 +65,22 @@ bsdutils 1: btrfs-progs 5.16.2-1 deb buffer 5.7.1 npm buildcheck 0.0.6 npm -builtins 5.1.0 npm bytes 3.1.2 npm ca-certificates 20240203~22.04.1 deb -cacache 18.0.2 npm +cacache 18.0.3 npm call-bind 1.0.7 npm catatonit 0.1.7-1 deb chalk 5.3.0 npm chownr 1.1.4 npm chownr 2.0.0 npm ci-info 4.0.0 npm -cidr-regex 4.0.5 npm +cidr-regex 4.1.1 npm clean-stack 2.2.0 npm cli-columns 4.0.0 npm cloud.google.com/go/compute/metadata v0.3.0 go-module cloud.google.com/go/logging v1.9.0 go-module cloud.google.com/go/longrunning v0.5.4 go-module -cmd-shim 6.0.2 npm +cmd-shim 6.0.3 npm code.cloudfoundry.org/clock v1.1.0 go-module color-convert 2.0.1 npm color-name 1.1.4 npm @@ -92,7 +91,7 @@ content-type 1. cookie 0.7.1 npm cookie 0.7.2 npm cookie-signature 1.0.6 npm -corepack 0.28.0 npm +corepack 0.29.4 npm coreutils 8.32-4.1ubuntu1.2 deb cors 2.8.5 npm cpu-features 0.0.10 npm @@ -105,7 +104,7 @@ dash 0. debconf 1.5.79ubuntu1 deb debianutils 5.5-1ubuntu2 deb debug 2.6.9 npm (+3 duplicates) -debug 4.3.4 npm +debug 4.3.5 npm debug 4.3.7 npm define-data-property 1.1.4 npm depd 2.0.0 npm @@ -141,13 +140,13 @@ express 4. fastest-levenshtein 1.0.16 npm finalhandler 1.3.1 npm findutils 4.8.0-1ubuntu3 deb -foreground-child 3.1.1 npm +foreground-child 3.2.1 npm forwarded 0.2.0 npm fresh 0.5.2 npm fs-constants 1.0.0 npm fs-minipass 2.1.0 npm fs-minipass 3.0.3 npm -function-bind 1.1.2 npm (+1 duplicate) +function-bind 1.1.2 npm fuse-overlayfs 1.7.1-1 deb fuse3 3.10.5-1build1 deb gcc-12-base 12.3.0-1ubuntu1~22.04 deb @@ -457,7 +456,7 @@ github.com/xrash/smetrics v0 github.com/yuin/gopher-lua v1.1.1 go-module (+1 duplicate) github.com/zmap/zcrypto v0.0.0-20210511125630-18f1e0152cfc go-module github.com/zmap/zlint/v3 v3.1.0 go-module -glob 10.3.12 npm +glob 10.4.2 npm gnupg 2.2.27-3ubuntu2.1 deb gnupg-l10n 2.2.27-3ubuntu2.1 deb gnupg-utils 2.2.27-3ubuntu2.1 deb @@ -561,39 +560,38 @@ gzip 1. has-property-descriptors 1.0.2 npm has-proto 1.0.3 npm has-symbols 1.0.3 npm -hasown 2.0.2 npm (+1 duplicate) -hosted-git-info 7.0.1 npm +hasown 2.0.2 npm +hosted-git-info 7.0.2 npm hostname 3.23ubuntu2 deb http-cache-semantics 4.1.1 npm http-errors 2.0.0 npm http-proxy-agent 7.0.2 npm -https-proxy-agent 7.0.4 npm +https-proxy-agent 7.0.5 npm iconv-lite 0.4.24 npm iconv-lite 0.6.3 npm ieee754 1.2.1 npm -ignore-walk 6.0.4 npm +ignore-walk 6.0.5 npm imurmurhash 0.1.4 npm indent-string 4.0.0 npm inherits 2.0.4 npm -ini 4.1.2 npm -init-package-json 6.0.2 npm +ini 4.1.3 npm +init-package-json 6.0.3 npm init-system-helpers 1.62 deb ip-address 9.0.5 npm ip-regex 5.0.0 npm ipaddr.js 1.9.1 npm iproute2 5.15.0-1ubuntu2 deb iptables 1.8.7-1ubuntu5.2 deb -is-cidr 5.0.5 npm -is-core-module 2.13.1 npm +is-cidr 5.1.0 npm is-fullwidth-code-point 3.0.0 npm is-lambda 1.0.1 npm isexe 2.0.0 npm isexe 3.1.1 npm -jackspeak 2.3.6 npm +jackspeak 3.4.0 npm jq 1.6-2.1ubuntu3 deb js-yaml 4.1.0 npm jsbn 1.1.0 npm -json-parse-even-better-errors 3.0.1 npm +json-parse-even-better-errors 3.0.2 npm json-stringify-nice 1.1.4 npm jsonparse 1.3.1 npm just-diff 6.0.2 npm @@ -673,17 +671,17 @@ libnettle8 3. libnfnetlink0 1.0.1-3build3 deb libnftnl11 1.2.1-1build1 deb libnghttp2-14 1.43.0-1ubuntu0.2 deb -libnpmaccess 8.0.5 npm -libnpmdiff 6.1.1 npm -libnpmexec 8.1.0 npm -libnpmfund 5.0.9 npm -libnpmhook 10.0.4 npm -libnpmorg 6.0.5 npm -libnpmpack 7.0.1 npm -libnpmpublish 9.0.7 npm -libnpmsearch 7.0.4 npm -libnpmteam 6.0.4 npm -libnpmversion 6.0.1 npm +libnpmaccess 8.0.6 npm +libnpmdiff 6.1.4 npm +libnpmexec 8.1.3 npm +libnpmfund 5.0.12 npm +libnpmhook 10.0.5 npm +libnpmorg 6.0.6 npm +libnpmpack 7.0.4 npm +libnpmpublish 9.0.9 npm +libnpmsearch 7.0.6 npm +libnpmteam 6.0.5 npm +libnpmversion 6.0.3 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb libnvidia-container-tools 1.17.2-1 deb @@ -733,7 +731,6 @@ lodash 4. login 1:4.8.1-2ubuntu2.2 deb logsave 1.46.5-2ubuntu1.2 deb lru-cache 10.2.2 npm -lru-cache 6.0.0 npm lsb-base 11.1.0ubuntu4 deb lsof 4.93.2+dfsg-1.1build2 deb make-fetch-happen 13.0.1 npm @@ -745,14 +742,13 @@ methods 1. mime 1.6.0 npm mime-db 1.52.0 npm mime-types 2.1.35 npm -minimatch 9.0.4 npm -minipass 3.3.6 npm (+5 duplicates) +minimatch 9.0.5 npm +minipass 3.3.6 npm (+4 duplicates) minipass 5.0.0 npm -minipass 7.0.4 npm +minipass 7.1.2 npm minipass-collect 2.0.1 npm -minipass-fetch 3.0.4 npm +minipass-fetch 3.0.5 npm minipass-flush 1.0.5 npm -minipass-json-stream 1.0.1 npm minipass-pipeline 1.2.4 npm minipass-sized 1.0.3 npm minizlib 2.1.2 npm @@ -772,20 +768,20 @@ netcat 1. netcat-openbsd 1.218-4ubuntu1 deb node-gyp 10.1.0 npm node-pty 0.10.1 npm -nodejs 18.20.4-1nodesource1 deb -nopt 7.2.0 npm -normalize-package-data 6.0.0 npm -npm 10.7.0 npm +nodejs 18.20.5-1nodesource1 deb +nopt 7.2.1 npm +normalize-package-data 6.0.2 npm +npm 10.8.2 npm npm-audit-report 5.0.0 npm -npm-bundled 3.0.0 npm +npm-bundled 3.0.1 npm npm-install-checks 6.3.0 npm npm-normalize-package-bin 3.0.1 npm npm-package-arg 11.0.2 npm npm-packlist 8.0.2 npm -npm-pick-manifest 9.0.0 npm -npm-profile 9.0.2 npm -npm-registry-fetch 17.0.0 npm -npm-user-validate 2.0.0 npm +npm-pick-manifest 9.1.0 npm +npm-profile 10.0.0 npm +npm-registry-fetch 17.1.0 npm +npm-user-validate 2.0.1 npm nvidia-container-toolkit 1.17.2-1 deb nvidia-container-toolkit-base 1.17.2-1 deb nvidia-docker2 2.14.0-1 deb @@ -795,17 +791,18 @@ on-finished 2. once 1.4.0 npm openssl 3.0.2-0ubuntu1.18 deb p-map 4.0.0 npm -pacote 18.0.3 npm +package-json-from-dist 1.0.0 npm +pacote 18.0.6 npm parse-conflict-json 3.0.1 npm parseurl 1.3.3 npm passwd 1:4.8.1-2ubuntu2.2 deb path-key 3.1.1 npm -path-scurry 1.10.2 npm +path-scurry 1.11.1 npm path-to-regexp 0.1.10 npm perl-base 5.34.0-3ubuntu1.3 deb pigz 2.6-1 deb pinentry-curses 1.1.1-1build2 deb -postcss-selector-parser 6.0.16 npm +postcss-selector-parser 6.1.0 npm proc-log 3.0.0 npm proc-log 4.2.0 npm procps 2:3.3.17-6ubuntu2.1 deb @@ -814,7 +811,7 @@ promise-all-reject-late 1. promise-call-limit 3.0.1 npm promise-inflight 1.0.1 npm promise-retry 2.0.1 npm -promzard 1.0.1 npm +promzard 1.0.2 npm proxy-addr 2.0.7 npm publicsuffix 20211207.1025-1 deb pump 3.0.2 npm @@ -836,7 +833,7 @@ retry 0. safe-buffer 5.2.1 npm safer-buffer 2.1.2 npm (+1 duplicate) sed 4.8-1ubuntu2 deb -semver 7.6.0 npm +semver 7.6.2 npm send 0.19.0 npm sensible-utils 0.0.17 deb serve-static 1.16.2 npm @@ -851,22 +848,22 @@ sigs.k8s.io/structured-merge-diff/v4 v4 sigs.k8s.io/structured-merge-diff/v4 v4.2.3 go-module sigs.k8s.io/yaml v1.2.0 go-module sigs.k8s.io/yaml v1.3.0 go-module (+6 duplicates) -sigstore 2.3.0 npm +sigstore 2.3.1 npm smart-buffer 4.2.0 npm socket.io 4.8.1 npm socket.io-adapter 2.5.5 npm socket.io-parser 4.2.4 npm socks 2.8.3 npm -socks-proxy-agent 8.0.3 npm +socks-proxy-agent 8.0.4 npm spdx-correct 3.2.0 npm spdx-exceptions 2.5.0 npm spdx-expression-parse 3.0.1 npm (+1 duplicate) spdx-expression-parse 4.0.0 npm -spdx-license-ids 3.0.17 npm +spdx-license-ids 3.0.18 npm split-ca 1.0.1 npm sprintf-js 1.1.3 npm ssh2 1.16.0 npm -ssri 10.0.5 npm +ssri 10.0.6 npm statuses 2.0.1 npm stdlib go1.17.9 go-module stdlib go1.22.7 go-module (+2 duplicates) @@ -894,7 +891,7 @@ text-table 0. tiny-relative-date 1.3.0 npm toidentifier 1.0.1 npm treeverse 3.0.0 npm -tuf-js 2.2.0 npm +tuf-js 2.2.1 npm tweetnacl 0.14.5 npm type-is 1.6.18 npm tzdata 2024a-0ubuntu0.22.04.1 deb @@ -909,7 +906,7 @@ util-deprecate 1. util-linux 2.37.2-4ubuntu3.4 deb utils-merge 1.0.1 npm validate-npm-package-license 3.0.4 npm -validate-npm-package-name 5.0.0 npm +validate-npm-package-name 5.0.1 npm vary 1.1.2 npm walk-up-path 3.0.1 npm which 2.0.2 npm From 4e9401bdbea0f5105d365b4b99657da7df00436f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 25 Nov 2024 22:42:29 +0000 Subject: [PATCH 285/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index aab8fda..2a455a9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,7 +31,7 @@ NAME VE @tufjs/models 2.0.1 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.9.1 npm +@types/node 22.9.4 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From fe3bbf856c6c5f59980a7d4242e933d817e0ee56 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 26 Nov 2024 21:46:33 +0000 Subject: [PATCH 286/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2a455a9..65d8560 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,7 +31,7 @@ NAME VE @tufjs/models 2.0.1 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.9.4 npm +@types/node 22.10.0 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -897,7 +897,7 @@ type-is 1. tzdata 2024a-0ubuntu0.22.04.1 deb ubuntu-keyring 2021.03.26 deb uidmap 1:4.8.1-2ubuntu2.2 deb -undici-types 6.19.8 npm +undici-types 6.20.0 npm unique-filename 3.0.0 npm unique-slug 4.0.0 npm unpipe 1.0.0 npm From 5f1daaf5a6b56cb8c07bb99ce49442c35e99611a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 3 Dec 2024 21:41:57 +0000 Subject: [PATCH 287/337] Bot Updating Templated Files --- Jenkinsfile | 239 ++++++++++++++++++++++++++++++++-------------------- 1 file changed, 147 insertions(+), 92 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d04e6f7..15db322 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,7 +8,7 @@ pipeline { } // Input to determine if this is a package check parameters { - string(defaultValue: 'false', description: 'package check run', name: 'PACKAGE_CHECK') + string(defaultValue: 'false', description: 'package check run', name: 'PACKAGE_CHECK') } // Configuration for the variables used for this specific repo environment { @@ -191,6 +191,7 @@ pipeline { env.VERSION_TAG = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER env.META_TAG = 'develop-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER env.EXT_RELEASE_TAG = 'develop-version-' + env.EXT_RELEASE_CLEAN + env.BUILDCACHE = 'docker.io/lsiodev/buildcache,registry.gitlab.com/linuxserver.io/docker-jenkins-builder/lsiodev-buildcache,ghcr.io/linuxserver/lsiodev-buildcache,quay.io/linuxserver.io/lsiodev-buildcache' } } } @@ -215,6 +216,7 @@ pipeline { env.META_TAG = 'develop-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA env.EXT_RELEASE_TAG = 'develop-version-' + env.EXT_RELEASE_CLEAN env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DEV_DOCKERHUB_IMAGE + '/tags/' + env.BUILDCACHE = 'docker.io/lsiodev/buildcache,registry.gitlab.com/linuxserver.io/docker-jenkins-builder/lsiodev-buildcache,ghcr.io/linuxserver/lsiodev-buildcache,quay.io/linuxserver.io/lsiodev-buildcache' } } } @@ -239,6 +241,7 @@ pipeline { env.EXT_RELEASE_TAG = 'develop-version-' + env.EXT_RELEASE_CLEAN env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/pull/' + env.PULL_REQUEST env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.PR_DOCKERHUB_IMAGE + '/tags/' + env.BUILDCACHE = 'docker.io/lsiodev/buildcache,registry.gitlab.com/linuxserver.io/docker-jenkins-builder/lsiodev-buildcache,ghcr.io/linuxserver/lsiodev-buildcache,quay.io/linuxserver.io/lsiodev-buildcache' } } } @@ -509,8 +512,40 @@ pipeline { --label \"org.opencontainers.image.title=Kasm\" \ --label \"org.opencontainers.image.description=kasm image by linuxserver.io\" \ --no-cache --pull -t ${IMAGE}:${META_TAG} --platform=linux/amd64 \ - --provenance=false --sbom=false \ + --provenance=false --sbom=false --builder=container --load \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." + sh '''#! /bin/bash + set -e + IFS=',' read -ra CACHE <<< "$BUILDCACHE" + for i in "${CACHE[@]}"; do + docker tag ${IMAGE}:${META_TAG} ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} + done + ''' + withCredentials([ + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: 'Quay.io-Robot', + usernameVariable: 'QUAYUSER', + passwordVariable: 'QUAYPASS' + ] + ]) { + retry_backoff(5,5) { + sh '''#! /bin/bash + set -e + echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin + echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin + echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin + echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin + if [[ "${PACKAGE_CHECK}" != "true" ]]; then + IFS=',' read -ra CACHE <<< "$BUILDCACHE" + for i in "${CACHE[@]}"; do + docker push ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} & + done + wait + fi + ''' + } + } } } // Build MultiArch Docker containers for push to LS Repo @@ -541,8 +576,40 @@ pipeline { --label \"org.opencontainers.image.title=Kasm\" \ --label \"org.opencontainers.image.description=kasm image by linuxserver.io\" \ --no-cache --pull -t ${IMAGE}:amd64-${META_TAG} --platform=linux/amd64 \ - --provenance=false --sbom=false \ + --provenance=false --sbom=false --builder=container --load \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." + sh '''#! /bin/bash + set -e + IFS=',' read -ra CACHE <<< "$BUILDCACHE" + for i in "${CACHE[@]}"; do + docker tag ${IMAGE}:amd64-${META_TAG} ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} + done + ''' + withCredentials([ + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: 'Quay.io-Robot', + usernameVariable: 'QUAYUSER', + passwordVariable: 'QUAYPASS' + ] + ]) { + retry_backoff(5,5) { + sh '''#! /bin/bash + set -e + echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin + echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin + echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin + echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin + if [[ "${PACKAGE_CHECK}" != "true" ]]; then + IFS=',' read -ra CACHE <<< "$BUILDCACHE" + for i in "${CACHE[@]}"; do + docker push ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} & + done + wait + fi + ''' + } + } } } stage('Build ARM64') { @@ -551,10 +618,6 @@ pipeline { } steps { echo "Running on node: ${NODE_NAME}" - echo 'Logging into Github' - sh '''#! /bin/bash - echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin - ''' sh "sed -r -i 's|(^FROM .*)|\\1\\n\\nENV LSIO_FIRST_PARTY=true|g' Dockerfile.aarch64" sh "docker buildx build \ --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ @@ -570,18 +633,47 @@ pipeline { --label \"org.opencontainers.image.title=Kasm\" \ --label \"org.opencontainers.image.description=kasm image by linuxserver.io\" \ --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} --platform=linux/arm64 \ - --provenance=false --sbom=false \ + --provenance=false --sbom=false --builder=container --load \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." - sh "docker tag ${IMAGE}:arm64v8-${META_TAG} ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" - retry_backoff(5,5) { - sh "docker push ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" + sh '''#! /bin/bash + set -e + IFS=',' read -ra CACHE <<< "$BUILDCACHE" + for i in "${CACHE[@]}"; do + docker tag ${IMAGE}:arm64v8-${META_TAG} ${i}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + done + ''' + withCredentials([ + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: 'Quay.io-Robot', + usernameVariable: 'QUAYUSER', + passwordVariable: 'QUAYPASS' + ] + ]) { + retry_backoff(5,5) { + sh '''#! /bin/bash + set -e + echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin + echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin + echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin + echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin + if [[ "${PACKAGE_CHECK}" != "true" ]]; then + IFS=',' read -ra CACHE <<< "$BUILDCACHE" + for i in "${CACHE[@]}"; do + docker push ${i}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} & + done + wait + fi + ''' + } } sh '''#! /bin/bash containers=$(docker ps -aq) if [[ -n "${containers}" ]]; then docker stop ${containers} fi - docker system prune -af --volumes || : ''' + docker system prune -af --volumes || : + ''' } } } @@ -731,37 +823,23 @@ pipeline { environment name: 'EXIT_STATUS', value: '' } steps { - withCredentials([ - [ - $class: 'UsernamePasswordMultiBinding', - credentialsId: 'Quay.io-Robot', - usernameVariable: 'QUAYUSER', - passwordVariable: 'QUAYPASS' - ] - ]) { - retry_backoff(5,5) { - sh '''#! /bin/bash - set -e - echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin - echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin - echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin - echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin - for PUSHIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${QUAYIMAGE}" "${IMAGE}"; do - docker tag ${IMAGE}:${META_TAG} ${PUSHIMAGE}:${META_TAG} - docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:develop - docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:${EXT_RELEASE_TAG} - if [ -n "${SEMVER}" ]; then - docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:${SEMVER} - fi - docker push ${PUSHIMAGE}:develop - docker push ${PUSHIMAGE}:${META_TAG} - docker push ${PUSHIMAGE}:${EXT_RELEASE_TAG} - if [ -n "${SEMVER}" ]; then - docker push ${PUSHIMAGE}:${SEMVER} - fi + retry_backoff(5,5) { + sh '''#! /bin/bash + set -e + for PUSHIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do + [[ ${PUSHIMAGE%%/*} =~ \\. ]] && PUSHIMAGEPLUS="${PUSHIMAGE}" || PUSHIMAGEPLUS="docker.io/${PUSHIMAGE}" + IFS=',' read -ra CACHE <<< "$BUILDCACHE" + for i in "${CACHE[@]}"; do + if [[ "${PUSHIMAGEPLUS}" == "$(cut -d "/" -f1 <<< ${i})"* ]]; then + CACHEIMAGE=${i} + fi done - ''' - } + docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${META_TAG} -t ${PUSHIMAGE}:develop -t ${PUSHIMAGE}:${EXT_RELEASE_TAG} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} + if [ -n "${SEMVER}" ]; then + docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} + fi + done + ''' } } } @@ -772,57 +850,34 @@ pipeline { environment name: 'EXIT_STATUS', value: '' } steps { - withCredentials([ - [ - $class: 'UsernamePasswordMultiBinding', - credentialsId: 'Quay.io-Robot', - usernameVariable: 'QUAYUSER', - passwordVariable: 'QUAYPASS' - ] - ]) { - retry_backoff(5,5) { - sh '''#! /bin/bash - set -e - echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin - echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin - echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin - echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin - if [ "${CI}" == "false" ]; then - docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} --platform=arm64 - docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} + retry_backoff(5,5) { + sh '''#! /bin/bash + set -e + for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do + [[ ${MANIFESTIMAGE%%/*} =~ \\. ]] && MANIFESTIMAGEPLUS="${MANIFESTIMAGE}" || MANIFESTIMAGEPLUS="docker.io/${MANIFESTIMAGE}" + IFS=',' read -ra CACHE <<< "$BUILDCACHE" + for i in "${CACHE[@]}"; do + if [[ "${MANIFESTIMAGEPLUS}" == "$(cut -d "/" -f1 <<< ${i})"* ]]; then + CACHEIMAGE=${i} + fi + done + docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:amd64-${META_TAG} -t ${MANIFESTIMAGE}:amd64-develop -t ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} + docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:arm64v8-${META_TAG} -t ${MANIFESTIMAGE}:arm64v8-develop -t ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} ${CACHEIMAGE}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + if [ -n "${SEMVER}" ]; then + docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:amd64-${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} + docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:arm64v8-${SEMVER} ${CACHEIMAGE}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} fi - for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do - docker tag ${IMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} - docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-develop - docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} - docker tag ${IMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} - docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-develop - docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} - if [ -n "${SEMVER}" ]; then - docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${SEMVER} - docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${SEMVER} - fi - docker push ${MANIFESTIMAGE}:amd64-${META_TAG} - docker push ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} - docker push ${MANIFESTIMAGE}:amd64-develop - docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG} - docker push ${MANIFESTIMAGE}:arm64v8-develop - docker push ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} - if [ -n "${SEMVER}" ]; then - docker push ${MANIFESTIMAGE}:amd64-${SEMVER} - docker push ${MANIFESTIMAGE}:arm64v8-${SEMVER} - fi - done - for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do - docker buildx imagetools create -t ${MANIFESTIMAGE}:develop ${MANIFESTIMAGE}:amd64-develop ${MANIFESTIMAGE}:arm64v8-develop - docker buildx imagetools create -t ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} - docker buildx imagetools create -t ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} - if [ -n "${SEMVER}" ]; then - docker buildx imagetools create -t ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} - fi - done - ''' - } + done + for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do + docker buildx imagetools create -t ${MANIFESTIMAGE}:develop ${MANIFESTIMAGE}:amd64-develop ${MANIFESTIMAGE}:arm64v8-develop + docker buildx imagetools create -t ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} + + docker buildx imagetools create -t ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} + if [ -n "${SEMVER}" ]; then + docker buildx imagetools create -t ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} + fi + done + ''' } } } From de2719eae06eb6f06cccb4c91fdc3de122faabba Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 3 Dec 2024 21:49:09 +0000 Subject: [PATCH 288/337] Bot Updating Package Versions --- package_versions.txt | 61 ++++++++++++++++++++------------------------ 1 file changed, 28 insertions(+), 33 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 65d8560..094275d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,7 +31,7 @@ NAME VE @tufjs/models 2.0.1 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.10.0 npm +@types/node 22.10.1 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -85,7 +85,7 @@ code.cloudfoundry.org/clock v1 color-convert 2.0.1 npm color-name 1.1.4 npm common-ancestor-path 1.0.1 npm -containerd.io 1.7.23-1 deb +containerd.io 1.7.24-1 deb content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.7.1 npm @@ -188,9 +188,9 @@ github.com/buger/goterm v1 github.com/cenkalti/backoff/v4 v4.2.1 go-module (+1 duplicate) github.com/cespare/xxhash/v2 v2.1.2 go-module github.com/cespare/xxhash/v2 v2.2.0 go-module (+1 duplicate) -github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module +github.com/checkpoint-restore/go-criu/v6 v6.3.0 go-module github.com/cilium/ebpf v0.12.3 go-module -github.com/cilium/ebpf v0.7.0 go-module +github.com/cilium/ebpf v0.16.0 go-module github.com/cilium/ebpf v0.9.1 go-module (+3 duplicates) github.com/cloudflare/cfssl v1.6.4 go-module github.com/cnabio/cnab-go v0.10.0-beta1 go-module @@ -202,11 +202,11 @@ github.com/containerd/btrfs/v2 v2 github.com/containerd/cgroups v1.1.0 go-module (+1 duplicate) github.com/containerd/cgroups/v3 v3.0.2 go-module (+3 duplicates) github.com/containerd/cgroups/v3 v3.0.3 go-module -github.com/containerd/console v1.0.3 go-module (+6 duplicates) -github.com/containerd/console v1.0.4 go-module +github.com/containerd/console v1.0.3 go-module (+5 duplicates) +github.com/containerd/console v1.0.4 go-module (+1 duplicate) github.com/containerd/containerd v1.6.2 go-module github.com/containerd/containerd v1.7.22 go-module -github.com/containerd/containerd v1.7.23 go-module (+4 duplicates) +github.com/containerd/containerd v1.7.24 go-module (+4 duplicates) github.com/containerd/containerd/api v1.7.19 go-module (+5 duplicates) github.com/containerd/continuity v0.2.2 go-module github.com/containerd/continuity v0.4.2 go-module (+4 duplicates) @@ -234,11 +234,10 @@ github.com/containernetworking/cni v1 github.com/containernetworking/plugins v1.2.0 go-module github.com/containernetworking/plugins v1.4.0 go-module github.com/containers/ocicrypt v1.1.10 go-module -github.com/coreos/go-systemd/v22 v22.3.2 go-module -github.com/coreos/go-systemd/v22 v22.5.0 go-module (+4 duplicates) -github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module +github.com/coreos/go-systemd/v22 v22.5.0 go-module (+5 duplicates) github.com/cpuguy83/go-md2man/v2 v2.0.4 go-module (+1 duplicate) -github.com/cyphar/filepath-securejoin v0.2.4 go-module (+1 duplicate) +github.com/cyphar/filepath-securejoin v0.2.4 go-module +github.com/cyphar/filepath-securejoin v0.3.4 go-module github.com/davecgh/go-spew v1.1.1 go-module (+2 duplicates) github.com/deckarep/golang-set/v2 v2.3.0 go-module github.com/dimchansky/utfbom v1.1.1 go-module (+2 duplicates) @@ -258,8 +257,8 @@ github.com/docker/go-connections v0 github.com/docker/go-connections v0.5.0 go-module github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module (+4 duplicates) github.com/docker/go-metrics v0.0.1 go-module (+2 duplicates) -github.com/docker/go-units v0.4.0 go-module (+1 duplicate) -github.com/docker/go-units v0.5.0 go-module (+4 duplicates) +github.com/docker/go-units v0.4.0 go-module +github.com/docker/go-units v0.5.0 go-module (+5 duplicates) github.com/docker/libtrust v0.0.0-20150526203908-9cbd2a1374f4 go-module github.com/dustin/go-humanize v1.0.0 go-module github.com/elliotchance/orderedmap v1.6.0 go-module (+1 duplicate) @@ -280,8 +279,7 @@ github.com/go-logr/logr v1 github.com/go-logr/stdr v1.2.2 go-module (+3 duplicates) github.com/goccy/go-json v0.10.3 go-module (+1 duplicate) github.com/goccy/go-yaml v1.12.0 go-module (+1 duplicate) -github.com/godbus/dbus/v5 v5.0.6 go-module -github.com/godbus/dbus/v5 v5.1.0 go-module (+4 duplicates) +github.com/godbus/dbus/v5 v5.1.0 go-module (+5 duplicates) github.com/gofrs/flock v0.12.1 go-module github.com/gofrs/flock v0.8.0 go-module github.com/gogo/googleapis v1.4.1 go-module (+1 duplicate) @@ -361,8 +359,8 @@ github.com/moby/pubsub v1 github.com/moby/spdystream v0.2.0 go-module github.com/moby/swarmkit/v2 v2.0.0-20240611172349-ea1a7cec35cb go-module github.com/moby/sys/mount v0.3.4 go-module -github.com/moby/sys/mountinfo v0.5.0 go-module github.com/moby/sys/mountinfo v0.6.2 go-module (+4 duplicates) +github.com/moby/sys/mountinfo v0.7.1 go-module github.com/moby/sys/mountinfo v0.7.2 go-module github.com/moby/sys/sequential v0.6.0 go-module github.com/moby/sys/signal v0.6.0 go-module @@ -370,8 +368,8 @@ github.com/moby/sys/signal v0 github.com/moby/sys/signal v0.7.1 go-module github.com/moby/sys/symlink v0.2.0 go-module (+1 duplicate) github.com/moby/sys/symlink v0.3.0 go-module (+2 duplicates) -github.com/moby/sys/user v0.3.0 go-module (+4 duplicates) -github.com/moby/sys/userns v0.1.0 go-module (+5 duplicates) +github.com/moby/sys/user v0.3.0 go-module (+5 duplicates) +github.com/moby/sys/userns v0.1.0 go-module (+6 duplicates) github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 go-module github.com/moby/term v0.5.0 go-module github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module (+1 duplicate) @@ -383,13 +381,11 @@ github.com/opencontainers/image-spec v1 github.com/opencontainers/image-spec v1.1.0 go-module (+4 duplicates) github.com/opencontainers/runc v1.1.0 go-module github.com/opencontainers/runc v1.1.14 go-module -github.com/opencontainers/runc v1.1.14-0-g2c9f560 go-module -github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module +github.com/opencontainers/runc v1.2.2-0-g7cb3632 go-module github.com/opencontainers/runtime-spec v1.1.0 go-module (+4 duplicates) -github.com/opencontainers/runtime-spec v1.2.0 go-module (+4 duplicates) +github.com/opencontainers/runtime-spec v1.2.0 go-module (+5 duplicates) github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module (+5 duplicates) -github.com/opencontainers/selinux v1.10.0 go-module -github.com/opencontainers/selinux v1.11.0 go-module (+2 duplicates) +github.com/opencontainers/selinux v1.11.0 go-module (+3 duplicates) github.com/package-url/packageurl-go v0.1.1-0.20220428063043-89078438f170 go-module github.com/pelletier/go-toml v1.9.4 go-module github.com/pelletier/go-toml v1.9.5 go-module (+6 duplicates) @@ -412,16 +408,14 @@ github.com/prometheus/procfs v0 github.com/qri-io/jsonpointer v0.1.0 go-module github.com/qri-io/jsonschema v0.1.1 go-module github.com/rootless-containers/rootlesskit/v2 v2.0.2 go-module -github.com/russross/blackfriday/v2 v2.0.1 go-module github.com/russross/blackfriday/v2 v2.1.0 go-module (+1 duplicate) github.com/sanathkr/go-yaml v0.0.0-20170819195128-ed9d249f429b go-module github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 go-module -github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 go-module +github.com/seccomp/libseccomp-golang v0.10.0 go-module github.com/secure-systems-lab/go-securesystemslib v0.4.0 go-module github.com/shibumi/go-pathspec v1.3.0 go-module -github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module -github.com/sirupsen/logrus v1.8.1 go-module (+1 duplicate) -github.com/sirupsen/logrus v1.9.3 go-module (+10 duplicates) +github.com/sirupsen/logrus v1.8.1 go-module +github.com/sirupsen/logrus v1.9.3 go-module (+11 duplicates) github.com/spdx/tools-golang v0.5.3 go-module github.com/spf13/cobra v1.4.0 go-module github.com/spf13/cobra v1.8.1 go-module (+2 duplicates) @@ -439,8 +433,8 @@ github.com/tonistiigi/go-archvariant v1 github.com/tonistiigi/go-csvvalue v0.0.0-20240710180619-ddb21b71c0b4 go-module github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module (+1 duplicate) github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f go-module -github.com/urfave/cli v1.22.1 go-module github.com/urfave/cli v1.22.12 go-module (+1 duplicate) +github.com/urfave/cli v1.22.14 go-module github.com/urfave/cli/v2 v2.27.4 go-module (+1 duplicate) github.com/vbatts/tar-split v0.11.5 go-module github.com/vishvananda/netlink v1.1.0 go-module @@ -501,6 +495,7 @@ go.uber.org/zap v1 golang.org/x/crypto v0.0.0-20211202192323-5770296d904e go-module golang.org/x/crypto v0.21.0 go-module golang.org/x/crypto v0.26.0 go-module +golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 go-module golang.org/x/exp v0.0.0-20240823005443-9b4947da3948 go-module golang.org/x/mod v0.12.0 go-module golang.org/x/mod v0.20.0 go-module (+4 duplicates) @@ -516,7 +511,7 @@ golang.org/x/sync v0 golang.org/x/sync v0.8.0 go-module golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module golang.org/x/sys v0.18.0 go-module (+4 duplicates) -golang.org/x/sys v0.19.0 go-module +golang.org/x/sys v0.22.0 go-module golang.org/x/sys v0.23.0 go-module (+1 duplicate) golang.org/x/sys v0.24.0 go-module (+1 duplicate) golang.org/x/sys v0.26.0 go-module (+3 duplicates) @@ -542,7 +537,7 @@ google.golang.org/grpc v1 google.golang.org/grpc v1.62.0 go-module google.golang.org/protobuf v1.27.1 go-module google.golang.org/protobuf v1.33.0 go-module (+6 duplicates) -gopd 1.0.1 npm +gopd 1.1.0 npm gopkg.in/inf.v0 v0.9.1 go-module (+2 duplicates) gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module (+1 duplicate) gopkg.in/yaml.v2 v2.4.0 go-module (+7 duplicates) @@ -558,8 +553,8 @@ graceful-fs 4. grep 3.7-1build1 deb gzip 1.10-4ubuntu4.1 deb has-property-descriptors 1.0.2 npm -has-proto 1.0.3 npm -has-symbols 1.0.3 npm +has-proto 1.1.0 npm +has-symbols 1.1.0 npm hasown 2.0.2 npm hosted-git-info 7.0.2 npm hostname 3.23ubuntu2 deb From 84be2dcb3a69ff4775a7bb7bd2db539e9aeb4826 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Dec 2024 21:44:25 +0000 Subject: [PATCH 289/337] Bot Updating Templated Files --- .github/workflows/external_trigger.yml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 335623b..3ba8122 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -43,16 +43,18 @@ jobs: token=$(curl -sX GET \ "https://ghcr.io/token?scope=repository%3Alinuxserver%2Fkasm%3Apull" \ | jq -r '.token') - multidigest=$(curl -s \ - --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ - --header "Authorization: Bearer ${token}" \ - "https://ghcr.io/v2/${image}/manifests/${tag}" \ - | jq -r 'first(.manifests[].digest)') - digest=$(curl -s \ - --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ - --header "Authorization: Bearer ${token}" \ - "https://ghcr.io/v2/${image}/manifests/${multidigest}" \ - | jq -r '.config.digest') + multidigest=$(curl -s \ + --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ + --header "Accept: application/vnd.oci.image.index.v1+json" \ + --header "Authorization: Bearer ${token}" \ + "https://ghcr.io/v2/${image}/manifests/${tag}") + multidigest=$(jq -r ".manifests[] | select(.platform.architecture == \"amd64\").digest?" <<< "${multidigest}") + digest=$(curl -s \ + --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ + --header "Accept: application/vnd.oci.image.manifest.v1+json" \ + --header "Authorization: Bearer ${token}" \ + "https://ghcr.io/v2/${image}/manifests/${multidigest}" \ + | jq -r '.config.digest') image_info=$(curl -sL \ --header "Authorization: Bearer ${token}" \ "https://ghcr.io/v2/${image}/blobs/${digest}") From 08b88a4634474b1a13dbb4fae4c0c67e24975c9f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Dec 2024 21:49:05 +0000 Subject: [PATCH 290/337] Bot Updating Package Versions --- package_versions.txt | 109 +++++++++++++++++++++++-------------------- 1 file changed, 58 insertions(+), 51 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 094275d..8b7c6b0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -68,7 +68,8 @@ buildcheck 0. bytes 3.1.2 npm ca-certificates 20240203~22.04.1 deb cacache 18.0.3 npm -call-bind 1.0.7 npm +call-bind 1.0.8 npm +call-bind-apply-helpers 1.0.1 npm catatonit 0.1.7-1 deb chalk 5.3.0 npm chownr 1.1.4 npm @@ -105,18 +106,20 @@ debconf 1. debianutils 5.5-1ubuntu2 deb debug 2.6.9 npm (+3 duplicates) debug 4.3.5 npm -debug 4.3.7 npm +debug 4.3.7 npm (+3 duplicates) +debug 4.4.0 npm define-data-property 1.1.4 npm depd 2.0.0 npm destroy 1.2.0 npm diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:27.3.1-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:27.3.1-1~ubuntu.22.04~jammy deb +docker-ce 5:27.4.0-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:27.4.0-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb +dunder-proto 1.0.0 npm e2fsprogs 1.46.5-2ubuntu1.2 deb eastasianwidth 0.2.0 npm ee-first 1.1.1 npm @@ -131,12 +134,12 @@ engine.io-parser 5. engine.io-parser UNKNOWN npm (+1 duplicate) env-paths 2.2.1 npm err-code 2.0.3 npm -es-define-property 1.0.0 npm +es-define-property 1.0.1 npm es-errors 1.3.0 npm escape-html 1.0.3 npm etag 1.8.1 npm exponential-backoff 3.1.1 npm -express 4.21.1 npm +express 4.21.2 npm fastest-levenshtein 1.0.16 npm finalhandler 1.3.1 npm findutils 4.8.0-1ubuntu3 deb @@ -150,14 +153,14 @@ function-bind 1. fuse-overlayfs 1.7.1-1 deb fuse3 3.10.5-1build1 deb gcc-12-base 12.3.0-1ubuntu1~22.04 deb -get-intrinsic 1.2.4 npm +get-intrinsic 1.2.5 npm github.com/AlecAivazis/survey/v2 v2.3.2 go-module github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module github.com/Masterminds/semver v1.5.0 go-module github.com/Microsoft/hcsshim v0.11.7 go-module (+2 duplicates) github.com/NVIDIA/go-nvlib v0.6.1 go-module (+3 duplicates) github.com/NVIDIA/go-nvml v0.12.4-0 go-module (+3 duplicates) -github.com/NVIDIA/nvidia-container-toolkit v1.17.2 go-module (+3 duplicates) +github.com/NVIDIA/nvidia-container-toolkit v1.17.3 go-module (+3 duplicates) github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module github.com/a8m/envsubst v1.4.2 go-module (+1 duplicate) github.com/agext/levenshtein v1.2.3 go-module @@ -187,7 +190,8 @@ github.com/blang/semver/v4 v4 github.com/buger/goterm v1.0.4 go-module github.com/cenkalti/backoff/v4 v4.2.1 go-module (+1 duplicate) github.com/cespare/xxhash/v2 v2.1.2 go-module -github.com/cespare/xxhash/v2 v2.2.0 go-module (+1 duplicate) +github.com/cespare/xxhash/v2 v2.2.0 go-module +github.com/cespare/xxhash/v2 v2.3.0 go-module github.com/checkpoint-restore/go-criu/v6 v6.3.0 go-module github.com/cilium/ebpf v0.12.3 go-module github.com/cilium/ebpf v0.16.0 go-module @@ -205,14 +209,12 @@ github.com/containerd/cgroups/v3 v3 github.com/containerd/console v1.0.3 go-module (+5 duplicates) github.com/containerd/console v1.0.4 go-module (+1 duplicate) github.com/containerd/containerd v1.6.2 go-module -github.com/containerd/containerd v1.7.22 go-module -github.com/containerd/containerd v1.7.24 go-module (+4 duplicates) +github.com/containerd/containerd v1.7.24 go-module (+5 duplicates) github.com/containerd/containerd/api v1.7.19 go-module (+5 duplicates) github.com/containerd/continuity v0.2.2 go-module github.com/containerd/continuity v0.4.2 go-module (+4 duplicates) -github.com/containerd/continuity v0.4.3 go-module -github.com/containerd/errdefs v0.1.0 go-module -github.com/containerd/errdefs v0.3.0 go-module (+4 duplicates) +github.com/containerd/continuity v0.4.5 go-module +github.com/containerd/errdefs v0.3.0 go-module (+5 duplicates) github.com/containerd/fifo v1.1.0 go-module (+5 duplicates) github.com/containerd/go-cni v1.1.10 go-module github.com/containerd/go-cni v1.1.9 go-module (+1 duplicate) @@ -227,7 +229,7 @@ github.com/containerd/ttrpc v1 github.com/containerd/ttrpc v1.2.5 go-module (+5 duplicates) github.com/containerd/typeurl v1.0.2 go-module (+1 duplicate) github.com/containerd/typeurl/v2 v2.1.1 go-module (+4 duplicates) -github.com/containerd/typeurl/v2 v2.2.0 go-module +github.com/containerd/typeurl/v2 v2.2.3 go-module github.com/containerd/zfs v1.1.0 go-module github.com/containernetworking/cni v1.1.2 go-module (+1 duplicate) github.com/containernetworking/cni v1.2.2 go-module @@ -245,12 +247,12 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.6.0 go-module (+2 duplicates) github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v27.3.1 go-module +github.com/docker/cli/cmd/docker v27.4.0 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v27.3.1 go-module (+1 duplicate) +github.com/docker/docker v27.4.0 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -282,9 +284,9 @@ github.com/goccy/go-yaml v1 github.com/godbus/dbus/v5 v5.1.0 go-module (+5 duplicates) github.com/gofrs/flock v0.12.1 go-module github.com/gofrs/flock v0.8.0 go-module -github.com/gogo/googleapis v1.4.1 go-module (+1 duplicate) +github.com/gogo/googleapis v1.4.1 go-module github.com/gogo/protobuf v1.3.2 go-module (+6 duplicates) -github.com/golang-jwt/jwt/v4 v4.5.0 go-module +github.com/golang-jwt/jwt/v5 v5.2.1 go-module github.com/golang/gddo v0.0.0-20190904175337-72a348e765d2 go-module github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da go-module github.com/golang/mock v1.6.0 go-module @@ -329,7 +331,7 @@ github.com/json-iterator/go v1 github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module github.com/klauspost/compress v1.15.0 go-module github.com/klauspost/compress v1.16.7 go-module (+3 duplicates) -github.com/klauspost/compress v1.17.9 go-module +github.com/klauspost/compress v1.17.11 go-module github.com/klauspost/cpuid/v2 v2.0.4 go-module (+1 duplicate) github.com/magiconair/properties v1.8.7 go-module (+1 duplicate) github.com/mattn/go-colorable v0.1.12 go-module @@ -350,14 +352,14 @@ github.com/mitchellh/hashstructure/v2 v2 github.com/mitchellh/mapstructure v1.4.3 go-module github.com/mitchellh/reflectwalk v1.0.2 go-module github.com/moby/buildkit v0.10.0-rc2.0.20220308185020-fdecd0ae108b go-module -github.com/moby/buildkit v0.16.0 go-module +github.com/moby/buildkit v0.17.3 go-module github.com/moby/docker-image-spec v1.3.1 go-module github.com/moby/ipvs v1.1.0 go-module github.com/moby/locker v1.0.1 go-module (+3 duplicates) github.com/moby/patternmatcher v0.6.0 go-module github.com/moby/pubsub v1.0.0 go-module github.com/moby/spdystream v0.2.0 go-module -github.com/moby/swarmkit/v2 v2.0.0-20240611172349-ea1a7cec35cb go-module +github.com/moby/swarmkit/v2 v2.0.0-20241017191044-e8ecf83ee08e go-module github.com/moby/sys/mount v0.3.4 go-module github.com/moby/sys/mountinfo v0.6.2 go-module (+4 duplicates) github.com/moby/sys/mountinfo v0.7.1 go-module @@ -392,6 +394,7 @@ github.com/pelletier/go-toml v1 github.com/pelletier/go-toml/v2 v2.2.3 go-module (+1 duplicate) github.com/philhofer/fwd v1.1.2 go-module github.com/pkg/errors v0.9.1 go-module (+6 duplicates) +github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 go-module github.com/pmezard/go-difflib v1.0.0 go-module github.com/prometheus/client_golang v1.12.1 go-module github.com/prometheus/client_golang v1.14.0 go-module @@ -426,9 +429,10 @@ github.com/syndtr/gocapability v0 github.com/tchap/go-patricia/v2 v2.3.1 go-module github.com/theupdateframework/notary v0.6.1 go-module github.com/tinylib/msgp v1.1.8 go-module +github.com/tonistiigi/dchapes-mode v0.0.0-20241001053921-ca0759fec205 go-module github.com/tonistiigi/fsutil v0.0.0-20220315205639-9ed612626da3 go-module -github.com/tonistiigi/fsutil v0.0.0-20240424095704-91a3fc46842c go-module -github.com/tonistiigi/go-actions-cache v0.0.0-20240327122527-58651d5e11d6 go-module +github.com/tonistiigi/fsutil v0.0.0-20241028165955-397af5306b5c go-module +github.com/tonistiigi/go-actions-cache v0.0.0-20241108014124-394979b8119e go-module github.com/tonistiigi/go-archvariant v1.0.0 go-module github.com/tonistiigi/go-csvvalue v0.0.0-20240710180619-ddb21b71c0b4 go-module github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module (+1 duplicate) @@ -454,7 +458,8 @@ glob 10 gnupg 2.2.27-3ubuntu2.1 deb gnupg-l10n 2.2.27-3ubuntu2.1 deb gnupg-utils 2.2.27-3ubuntu2.1 deb -go.etcd.io/bbolt v1.3.10 go-module (+1 duplicate) +go.etcd.io/bbolt v1.3.10 go-module +go.etcd.io/bbolt v1.3.11 go-module go.etcd.io/etcd/client/pkg/v3 v3.5.6 go-module go.etcd.io/etcd/pkg/v3 v3.5.6 go-module go.etcd.io/etcd/raft/v3 v3.5.6 go-module @@ -494,15 +499,17 @@ go.uber.org/multierr v1 go.uber.org/zap v1.21.0 go-module golang.org/x/crypto v0.0.0-20211202192323-5770296d904e go-module golang.org/x/crypto v0.21.0 go-module -golang.org/x/crypto v0.26.0 go-module +golang.org/x/crypto v0.27.0 go-module golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 go-module -golang.org/x/exp v0.0.0-20240823005443-9b4947da3948 go-module +golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 go-module golang.org/x/mod v0.12.0 go-module -golang.org/x/mod v0.20.0 go-module (+4 duplicates) +golang.org/x/mod v0.20.0 go-module (+3 duplicates) +golang.org/x/mod v0.21.0 go-module golang.org/x/net v0.0.0-20211216030914-fe4d6282115f go-module golang.org/x/net v0.23.0 go-module (+2 duplicates) golang.org/x/net v0.24.0 go-module -golang.org/x/net v0.28.0 go-module (+2 duplicates) +golang.org/x/net v0.28.0 go-module (+1 duplicate) +golang.org/x/net v0.29.0 go-module golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 go-module golang.org/x/oauth2 v0.11.0 go-module golang.org/x/oauth2 v0.22.0 go-module @@ -513,12 +520,12 @@ golang.org/x/sys v0 golang.org/x/sys v0.18.0 go-module (+4 duplicates) golang.org/x/sys v0.22.0 go-module golang.org/x/sys v0.23.0 go-module (+1 duplicate) -golang.org/x/sys v0.24.0 go-module (+1 duplicate) -golang.org/x/sys v0.26.0 go-module (+3 duplicates) +golang.org/x/sys v0.26.0 go-module (+5 duplicates) golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module golang.org/x/term v0.18.0 go-module golang.org/x/text v0.14.0 go-module (+2 duplicates) -golang.org/x/text v0.17.0 go-module (+2 duplicates) +golang.org/x/text v0.17.0 go-module (+1 duplicate) +golang.org/x/text v0.18.0 go-module golang.org/x/text v0.3.7 go-module golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 go-module @@ -529,15 +536,16 @@ google.golang.org/genproto v0 google.golang.org/genproto v0.0.0-20231211222908-989df2bf70f3 go-module (+4 duplicates) google.golang.org/genproto v0.0.0-20240123012728-ef4313101c80 go-module google.golang.org/genproto/googleapis/api v0.0.0-20231120223509-83a465c0220f go-module -google.golang.org/genproto/googleapis/api v0.0.0-20240123012728-ef4313101c80 go-module +google.golang.org/genproto/googleapis/api v0.0.0-20240604185151-ef581f913117 go-module google.golang.org/genproto/googleapis/rpc v0.0.0-20231212172506-995d672761c0 go-module (+4 duplicates) -google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 go-module +google.golang.org/genproto/googleapis/rpc v0.0.0-20240604185151-ef581f913117 go-module google.golang.org/grpc v1.44.0 go-module google.golang.org/grpc v1.59.0 go-module (+4 duplicates) -google.golang.org/grpc v1.62.0 go-module +google.golang.org/grpc v1.66.3 go-module google.golang.org/protobuf v1.27.1 go-module -google.golang.org/protobuf v1.33.0 go-module (+6 duplicates) -gopd 1.1.0 npm +google.golang.org/protobuf v1.33.0 go-module (+5 duplicates) +google.golang.org/protobuf v1.35.1 go-module +gopd 1.2.0 npm gopkg.in/inf.v0 v0.9.1 go-module (+2 duplicates) gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module (+1 duplicate) gopkg.in/yaml.v2 v2.4.0 go-module (+7 duplicates) @@ -553,7 +561,6 @@ graceful-fs 4. grep 3.7-1build1 deb gzip 1.10-4ubuntu4.1 deb has-property-descriptors 1.0.2 npm -has-proto 1.1.0 npm has-symbols 1.1.0 npm hasown 2.0.2 npm hosted-git-info 7.0.2 npm @@ -628,7 +635,7 @@ libdebconfclient0 0. libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb libedit2 3.1-20210910-1build1 deb libelf1 0.186-1build1 deb -libexpat1 2.4.7-1ubuntu0.4 deb +libexpat1 2.4.7-1ubuntu0.5 deb libext2fs2 1.46.5-2ubuntu1.2 deb libffi8 3.4.2-4 deb libfuse3-3 3.10.5-1build1 deb @@ -679,8 +686,8 @@ libnpmteam 6. libnpmversion 6.0.3 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.17.2-1 deb -libnvidia-container1 1.17.2-1 deb +libnvidia-container-tools 1.17.3-1 deb +libnvidia-container1 1.17.3-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.4 deb @@ -777,8 +784,8 @@ npm-pick-manifest 9. npm-profile 10.0.0 npm npm-registry-fetch 17.1.0 npm npm-user-validate 2.0.1 npm -nvidia-container-toolkit 1.17.2-1 deb -nvidia-container-toolkit-base 1.17.2-1 deb +nvidia-container-toolkit 1.17.3-1 deb +nvidia-container-toolkit-base 1.17.3-1 deb nvidia-docker2 2.14.0-1 deb object-assign 4.1.1 npm object-inspect 1.13.3 npm @@ -793,7 +800,7 @@ parseurl 1. passwd 1:4.8.1-2ubuntu2.2 deb path-key 3.1.1 npm path-scurry 1.11.1 npm -path-to-regexp 0.1.10 npm +path-to-regexp 0.1.12 npm perl-base 5.34.0-3ubuntu1.3 deb pigz 2.6-1 deb pinentry-curses 1.1.1-1build2 deb @@ -823,7 +830,7 @@ read-cmd-shim 4. read-package-json-fast 3.0.2 npm readable-stream 3.6.2 npm readline-common 8.1.2-1 deb -resenje.org/singleflight v0.4.1 go-module +resenje.org/singleflight v0.4.3 go-module retry 0.12.0 npm safe-buffer 5.2.1 npm safer-buffer 2.1.2 npm (+1 duplicate) @@ -861,7 +868,7 @@ ssh2 1. ssri 10.0.6 npm statuses 2.0.1 npm stdlib go1.17.9 go-module -stdlib go1.22.7 go-module (+2 duplicates) +stdlib go1.22.10 go-module (+2 duplicates) stdlib go1.22.9 go-module (+5 duplicates) stdlib go1.23.1 go-module (+1 duplicate) stdlib go1.23.2 go-module (+3 duplicates) @@ -872,12 +879,12 @@ strip-ansi 6. strip-ansi 7.1.0 npm (+1 duplicate) sudo 1.9.9-1ubuntu2.4 deb supports-color 9.4.0 npm -systeminformation 5.23.5 npm +systeminformation 5.23.8 npm sysvinit-utils 3.01-1ubuntu1 deb -tags.cncf.io/container-device-interface v0.7.2 go-module (+1 duplicate) -tags.cncf.io/container-device-interface v0.8.0 go-module (+3 duplicates) -tags.cncf.io/container-device-interface/specs-go v0.7.0 go-module (+1 duplicate) -tags.cncf.io/container-device-interface/specs-go v0.8.0 go-module (+3 duplicates) +tags.cncf.io/container-device-interface v0.7.2 go-module +tags.cncf.io/container-device-interface v0.8.0 go-module (+4 duplicates) +tags.cncf.io/container-device-interface/specs-go v0.7.0 go-module +tags.cncf.io/container-device-interface/specs-go v0.8.0 go-module (+4 duplicates) tar 1.34+dfsg-1ubuntu0.1.22.04.2 deb tar 6.2.1 npm tar-fs 2.0.1 npm From 684b3eda9dd54def8efa966d86a3795cdc145062 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Dec 2024 21:40:44 +0000 Subject: [PATCH 291/337] Bot Updating Templated Files --- Jenkinsfile | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 15db322..f2350f3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -512,7 +512,7 @@ pipeline { --label \"org.opencontainers.image.title=Kasm\" \ --label \"org.opencontainers.image.description=kasm image by linuxserver.io\" \ --no-cache --pull -t ${IMAGE}:${META_TAG} --platform=linux/amd64 \ - --provenance=false --sbom=false --builder=container --load \ + --provenance=true --sbom=true --builder=container --load \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh '''#! /bin/bash set -e @@ -541,7 +541,9 @@ pipeline { for i in "${CACHE[@]}"; do docker push ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} & done - wait + for p in $(jobs -p); do + wait "$p" || { echo "job $p failed" >&2; exit 1; } + done fi ''' } @@ -576,7 +578,7 @@ pipeline { --label \"org.opencontainers.image.title=Kasm\" \ --label \"org.opencontainers.image.description=kasm image by linuxserver.io\" \ --no-cache --pull -t ${IMAGE}:amd64-${META_TAG} --platform=linux/amd64 \ - --provenance=false --sbom=false --builder=container --load \ + --provenance=true --sbom=true --builder=container --load \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh '''#! /bin/bash set -e @@ -605,7 +607,9 @@ pipeline { for i in "${CACHE[@]}"; do docker push ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} & done - wait + for p in $(jobs -p); do + wait "$p" || { echo "job $p failed" >&2; exit 1; } + done fi ''' } @@ -633,7 +637,7 @@ pipeline { --label \"org.opencontainers.image.title=Kasm\" \ --label \"org.opencontainers.image.description=kasm image by linuxserver.io\" \ --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} --platform=linux/arm64 \ - --provenance=false --sbom=false --builder=container --load \ + --provenance=true --sbom=true --builder=container --load \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh '''#! /bin/bash set -e @@ -662,7 +666,9 @@ pipeline { for i in "${CACHE[@]}"; do docker push ${i}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} & done - wait + for p in $(jobs -p); do + wait "$p" || { echo "job $p failed" >&2; exit 1; } + done fi ''' } From b0c29f55da865ef45bd4629be6dc25099d52ecfe Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Dec 2024 21:43:10 +0000 Subject: [PATCH 292/337] Bot Updating Templated Files --- .github/workflows/external_trigger.yml | 33 ++++++++++++++----- .../workflows/package_trigger_scheduler.yml | 27 ++++++++++++--- 2 files changed, 47 insertions(+), 13 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 3ba8122..718d3e8 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -48,13 +48,30 @@ jobs: --header "Accept: application/vnd.oci.image.index.v1+json" \ --header "Authorization: Bearer ${token}" \ "https://ghcr.io/v2/${image}/manifests/${tag}") - multidigest=$(jq -r ".manifests[] | select(.platform.architecture == \"amd64\").digest?" <<< "${multidigest}") - digest=$(curl -s \ - --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ - --header "Accept: application/vnd.oci.image.manifest.v1+json" \ - --header "Authorization: Bearer ${token}" \ - "https://ghcr.io/v2/${image}/manifests/${multidigest}" \ - | jq -r '.config.digest') + if jq -e '.layers // empty' <<< "${multidigest}" >/dev/null 2>&1; then + # If there's a layer element it's a single-arch manifest so just get that digest + digest=$(jq -r '.config.digest' <<< "${multidigest}") + else + # Otherwise it's multi-arch or has manifest annotations + if jq -e '.manifests[]?.annotations // empty' <<< "${multidigest}" >/dev/null 2>&1; then + # Check for manifest annotations and delete if found + multidigest=$(jq 'del(.manifests[] | select(.annotations))' <<< "${multidigest}") + fi + if [[ $(jq '.manifests | length' <<< "${multidigest}") -gt 1 ]]; then + # If there's still more than one digest, it's multi-arch + multidigest=$(jq -r ".manifests[] | select(.platform.architecture == \"amd64\").digest?" <<< "${multidigest}") + else + # Otherwise it's single arch + multidigest=$(jq -r ".manifests[].digest?" <<< "${multidigest}") + fi + if digest=$(curl -s \ + --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ + --header "Accept: application/vnd.oci.image.manifest.v1+json" \ + --header "Authorization: Bearer ${token}" \ + "https://ghcr.io/v2/${image}/manifests/${multidigest}"); then + digest=$(jq -r '.config.digest' <<< "${digest}"); + fi + fi image_info=$(curl -sL \ --header "Authorization: Bearer ${token}" \ "https://ghcr.io/v2/${image}/blobs/${digest}") @@ -92,7 +109,7 @@ jobs: else printf "\n## Trigger new build\n\n" >> $GITHUB_STEP_SUMMARY echo "New version \`${EXT_RELEASE}\` found; old version was \`${IMAGE_VERSION}\`. Triggering new build" >> $GITHUB_STEP_SUMMARY - if "${artifacts_found}" == "true" ]]; then + if [[ "${artifacts_found}" == "true" ]]; then echo "All artifacts seem to be uploaded." >> $GITHUB_STEP_SUMMARY fi response=$(curl -iX POST \ diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index 7f583fc..2a716ee 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -27,9 +27,18 @@ jobs: fi printf "\n## Evaluating \`%s\`\n\n" ${br} >> $GITHUB_STEP_SUMMARY JENKINS_VARS=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/jenkins-vars.yml) - if [[ "${br}" == $(yq -r '.ls_branch' <<< "${JENKINS_VARS}") ]]; then + if ! curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/Jenkinsfile >/dev/null 2>&1; then + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> No Jenkinsfile found. Branch is either deprecated or is an early dev branch." >> $GITHUB_STEP_SUMMARY + skipped_branches="${skipped_branches}${br} " + elif [[ "${br}" == $(yq -r '.ls_branch' <<< "${JENKINS_VARS}") ]]; then echo "Branch appears to be live; checking workflow." >> $GITHUB_STEP_SUMMARY - if [[ $(yq -r '.skip_package_check' <<< "${JENKINS_VARS}") == "true" ]]; then + README_VARS=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-kasm/${br}/readme-vars.yml) + if [[ $(yq -r '.project_deprecation_status' <<< "${README_VARS}") == "true" ]]; then + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Branch appears to be deprecated; skipping trigger." >> $GITHUB_STEP_SUMMARY + skipped_branches="${skipped_branches}${br} " + elif [[ $(yq -r '.skip_package_check' <<< "${JENKINS_VARS}") == "true" ]]; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "> Skipping branch ${br} due to \`skip_package_check\` being set in \`jenkins-vars.yml\`." >> $GITHUB_STEP_SUMMARY skipped_branches="${skipped_branches}${br} " @@ -37,7 +46,7 @@ jobs: echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "> Github organizational variable \`SKIP_PACKAGE_TRIGGER\` contains \`kasm_${br}\`; skipping trigger." >> $GITHUB_STEP_SUMMARY skipped_branches="${skipped_branches}${br} " - elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/${br}/lastBuild/api/json | jq -r '.building') == "true" ]; then + elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/${br}/lastBuild/api/json | jq -r '.building' 2>/dev/null) == "true" ]; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "> There already seems to be an active build on Jenkins; skipping package trigger for ${br}" >> $GITHUB_STEP_SUMMARY skipped_branches="${skipped_branches}${br} " @@ -49,6 +58,11 @@ jobs: response=$(curl -iX POST \ https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-kasm/job/${br}/buildWithParameters?PACKAGE_CHECK=true \ --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") + if [[ -z "${response}" ]]; then + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Jenkins build could not be triggered. Skipping branch." + continue + fi echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY sleep 10 @@ -56,11 +70,14 @@ jobs: buildurl="${buildurl%$'\r'}" echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY - curl -iX POST \ + if ! curl -ifX POST \ "${buildurl}submitDescription" \ --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ --data-urlencode "description=GHA package trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ - --data-urlencode "Submit=Submit" + --data-urlencode "Submit=Submit"; then + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Unable to change the Jenkins job description." + fi sleep 20 fi else From bcee19c6c6ebed10b6db65e1e4bc7c04fd1c9b6b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Dec 2024 21:48:16 +0000 Subject: [PATCH 293/337] Bot Updating Package Versions --- package_versions.txt | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8b7c6b0..0ed5e55 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,7 +31,7 @@ NAME VE @tufjs/models 2.0.1 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.10.1 npm +@types/node 22.10.2 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -68,8 +68,8 @@ buildcheck 0. bytes 3.1.2 npm ca-certificates 20240203~22.04.1 deb cacache 18.0.3 npm -call-bind 1.0.8 npm call-bind-apply-helpers 1.0.1 npm +call-bound 1.0.3 npm catatonit 0.1.7-1 deb chalk 5.3.0 npm chownr 1.1.4 npm @@ -99,7 +99,7 @@ cpu-features 0. cron 3.0pl1-137ubuntu3 deb cross-spawn 7.0.3 npm cssesc 3.0.0 npm -curl 7.81.0-1ubuntu1.19 deb +curl 7.81.0-1ubuntu1.20 deb dario.cat/mergo v1.0.0 go-module (+1 duplicate) dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb @@ -108,7 +108,6 @@ debug 2. debug 4.3.5 npm debug 4.3.7 npm (+3 duplicates) debug 4.4.0 npm -define-data-property 1.1.4 npm depd 2.0.0 npm destroy 1.2.0 npm diff 5.2.0 npm @@ -119,7 +118,7 @@ docker-ce-cli 5: docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb -dunder-proto 1.0.0 npm +dunder-proto 1.0.1 npm e2fsprogs 1.46.5-2ubuntu1.2 deb eastasianwidth 0.2.0 npm ee-first 1.1.1 npm @@ -136,6 +135,7 @@ env-paths 2. err-code 2.0.3 npm es-define-property 1.0.1 npm es-errors 1.3.0 npm +es-object-atoms 1.0.0 npm escape-html 1.0.3 npm etag 1.8.1 npm exponential-backoff 3.1.1 npm @@ -153,7 +153,7 @@ function-bind 1. fuse-overlayfs 1.7.1-1 deb fuse3 3.10.5-1build1 deb gcc-12-base 12.3.0-1ubuntu1~22.04 deb -get-intrinsic 1.2.5 npm +get-intrinsic 1.2.6 npm github.com/AlecAivazis/survey/v2 v2.3.2 go-module github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module github.com/Masterminds/semver v1.5.0 go-module @@ -560,7 +560,6 @@ gpgv 2. graceful-fs 4.2.11 npm grep 3.7-1build1 deb gzip 1.10-4ubuntu4.1 deb -has-property-descriptors 1.0.2 npm has-symbols 1.1.0 npm hasown 2.0.2 npm hosted-git-info 7.0.2 npm @@ -629,7 +628,7 @@ libcap2 1: libcap2-bin 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.2 deb libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.19 deb +libcurl4 7.81.0-1ubuntu1.20 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb @@ -736,6 +735,7 @@ lru-cache 10 lsb-base 11.1.0ubuntu4 deb lsof 4.93.2+dfsg-1.1build2 deb make-fetch-happen 13.0.1 npm +math-intrinsics 1.0.0 npm mawk 1.3.4.20200120-3 deb media-typer 0.3.0 npm media-types 7.0.0 deb @@ -839,11 +839,13 @@ semver 7. send 0.19.0 npm sensible-utils 0.0.17 deb serve-static 1.16.2 npm -set-function-length 1.2.2 npm setprototypeof 1.2.0 npm shebang-command 2.0.0 npm shebang-regex 3.0.0 npm -side-channel 1.0.6 npm +side-channel 1.1.0 npm +side-channel-list 1.0.0 npm +side-channel-map 1.0.1 npm +side-channel-weakmap 1.0.2 npm signal-exit 4.1.0 npm sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 go-module sigs.k8s.io/structured-merge-diff/v4 v4.2.1 go-module @@ -879,7 +881,7 @@ strip-ansi 6. strip-ansi 7.1.0 npm (+1 duplicate) sudo 1.9.9-1ubuntu2.4 deb supports-color 9.4.0 npm -systeminformation 5.23.8 npm +systeminformation 5.23.13 npm sysvinit-utils 3.01-1ubuntu1 deb tags.cncf.io/container-device-interface v0.7.2 go-module tags.cncf.io/container-device-interface v0.8.0 go-module (+4 duplicates) From af451efbaf4f3e59f2ed0c4cd3d24cb0be3eec90 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 24 Dec 2024 21:43:07 +0000 Subject: [PATCH 294/337] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 0ed5e55..f080ebd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -113,8 +113,8 @@ destroy 1. diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:27.4.0-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:27.4.0-1~ubuntu.22.04~jammy deb +docker-ce 5:27.4.1-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:27.4.1-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -247,12 +247,12 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.6.0 go-module (+2 duplicates) github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v27.4.0 go-module +github.com/docker/cli/cmd/docker v27.4.1 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v27.4.0 go-module (+1 duplicate) +github.com/docker/docker v27.4.1 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -735,7 +735,7 @@ lru-cache 10 lsb-base 11.1.0ubuntu4 deb lsof 4.93.2+dfsg-1.1build2 deb make-fetch-happen 13.0.1 npm -math-intrinsics 1.0.0 npm +math-intrinsics 1.1.0 npm mawk 1.3.4.20200120-3 deb media-typer 0.3.0 npm media-types 7.0.0 deb @@ -881,7 +881,7 @@ strip-ansi 6. strip-ansi 7.1.0 npm (+1 duplicate) sudo 1.9.9-1ubuntu2.4 deb supports-color 9.4.0 npm -systeminformation 5.23.13 npm +systeminformation 5.23.21 npm sysvinit-utils 3.01-1ubuntu1 deb tags.cncf.io/container-device-interface v0.7.2 go-module tags.cncf.io/container-device-interface v0.8.0 go-module (+4 duplicates) From 2a3a86dcae3c0c6b215ee9e01537670d37cbc4da Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 31 Dec 2024 21:42:43 +0000 Subject: [PATCH 295/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f080ebd..52e3e14 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -881,7 +881,7 @@ strip-ansi 6. strip-ansi 7.1.0 npm (+1 duplicate) sudo 1.9.9-1ubuntu2.4 deb supports-color 9.4.0 npm -systeminformation 5.23.21 npm +systeminformation 5.24.1 npm sysvinit-utils 3.01-1ubuntu1 deb tags.cncf.io/container-device-interface v0.7.2 go-module tags.cncf.io/container-device-interface v0.8.0 go-module (+4 duplicates) From ffe75963ed018a4d38cda945a97efbfd2d9ab040 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 2 Jan 2025 21:39:54 +0000 Subject: [PATCH 296/337] Bot Updating Package Versions --- package_versions.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 52e3e14..69f6008 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,7 +31,7 @@ NAME VE @tufjs/models 2.0.1 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.10.2 npm +@types/node 22.10.4 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -153,7 +153,8 @@ function-bind 1. fuse-overlayfs 1.7.1-1 deb fuse3 3.10.5-1build1 deb gcc-12-base 12.3.0-1ubuntu1~22.04 deb -get-intrinsic 1.2.6 npm +get-intrinsic 1.2.7 npm +get-proto 1.0.1 npm github.com/AlecAivazis/survey/v2 v2.3.2 go-module github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module github.com/Masterminds/semver v1.5.0 go-module @@ -881,7 +882,7 @@ strip-ansi 6. strip-ansi 7.1.0 npm (+1 duplicate) sudo 1.9.9-1ubuntu2.4 deb supports-color 9.4.0 npm -systeminformation 5.24.1 npm +systeminformation 5.24.6 npm sysvinit-utils 3.01-1ubuntu1 deb tags.cncf.io/container-device-interface v0.7.2 go-module tags.cncf.io/container-device-interface v0.8.0 go-module (+4 duplicates) From bc5e088aa3ad10caecb8533c634bd2e2c24deac0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 7 Jan 2025 21:42:48 +0000 Subject: [PATCH 297/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 69f6008..77af84e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,7 +31,7 @@ NAME VE @tufjs/models 2.0.1 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.10.4 npm +@types/node 22.10.5 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -882,7 +882,7 @@ strip-ansi 6. strip-ansi 7.1.0 npm (+1 duplicate) sudo 1.9.9-1ubuntu2.4 deb supports-color 9.4.0 npm -systeminformation 5.24.6 npm +systeminformation 5.25.5 npm sysvinit-utils 3.01-1ubuntu1 deb tags.cncf.io/container-device-interface v0.7.2 go-module tags.cncf.io/container-device-interface v0.8.0 go-module (+4 duplicates) From 71a977c90dcae4d34696333bc334f74a105bea7d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 14 Jan 2025 21:43:25 +0000 Subject: [PATCH 298/337] Bot Updating Package Versions --- package_versions.txt | 126 ++++++++++++++++++++++++------------------- 1 file changed, 70 insertions(+), 56 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 77af84e..c76b649 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,7 +31,7 @@ NAME VE @tufjs/models 2.0.1 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.10.5 npm +@types/node 22.10.6 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -86,7 +86,7 @@ code.cloudfoundry.org/clock v1 color-convert 2.0.1 npm color-name 1.1.4 npm common-ancestor-path 1.0.1 npm -containerd.io 1.7.24-1 deb +containerd.io 1.7.25-1 deb content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.7.1 npm @@ -113,8 +113,8 @@ destroy 1. diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:27.4.1-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:27.4.1-1~ubuntu.22.04~jammy deb +docker-ce 5:27.5.0-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:27.5.0-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -135,7 +135,7 @@ env-paths 2. err-code 2.0.3 npm es-define-property 1.0.1 npm es-errors 1.3.0 npm -es-object-atoms 1.0.0 npm +es-object-atoms 1.1.0 npm escape-html 1.0.3 npm etag 1.8.1 npm exponential-backoff 3.1.1 npm @@ -158,7 +158,8 @@ get-proto 1. github.com/AlecAivazis/survey/v2 v2.3.2 go-module github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module github.com/Masterminds/semver v1.5.0 go-module -github.com/Microsoft/hcsshim v0.11.7 go-module (+2 duplicates) +github.com/Microsoft/hcsshim v0.11.7 go-module (+1 duplicate) +github.com/Microsoft/hcsshim v0.12.8 go-module github.com/NVIDIA/go-nvlib v0.6.1 go-module (+3 duplicates) github.com/NVIDIA/go-nvml v0.12.4-0 go-module (+3 duplicates) github.com/NVIDIA/nvidia-container-toolkit v1.17.3 go-module (+3 duplicates) @@ -189,7 +190,8 @@ github.com/beorn7/perks v1 github.com/bits-and-blooms/bitset v1.13.0 go-module github.com/blang/semver/v4 v4.0.0 go-module github.com/buger/goterm v1.0.4 go-module -github.com/cenkalti/backoff/v4 v4.2.1 go-module (+1 duplicate) +github.com/cenkalti/backoff/v4 v4.2.1 go-module +github.com/cenkalti/backoff/v4 v4.3.0 go-module github.com/cespare/xxhash/v2 v2.1.2 go-module github.com/cespare/xxhash/v2 v2.2.0 go-module github.com/cespare/xxhash/v2 v2.3.0 go-module @@ -210,10 +212,12 @@ github.com/containerd/cgroups/v3 v3 github.com/containerd/console v1.0.3 go-module (+5 duplicates) github.com/containerd/console v1.0.4 go-module (+1 duplicate) github.com/containerd/containerd v1.6.2 go-module -github.com/containerd/containerd v1.7.24 go-module (+5 duplicates) -github.com/containerd/containerd/api v1.7.19 go-module (+5 duplicates) +github.com/containerd/containerd v1.7.24 go-module +github.com/containerd/containerd v1.7.25 go-module (+4 duplicates) +github.com/containerd/containerd/api v1.7.19 go-module +github.com/containerd/containerd/api v1.8.0 go-module (+4 duplicates) github.com/containerd/continuity v0.2.2 go-module -github.com/containerd/continuity v0.4.2 go-module (+4 duplicates) +github.com/containerd/continuity v0.4.4 go-module (+4 duplicates) github.com/containerd/continuity v0.4.5 go-module github.com/containerd/errdefs v0.3.0 go-module (+5 duplicates) github.com/containerd/fifo v1.1.0 go-module (+5 duplicates) @@ -240,7 +244,7 @@ github.com/containers/ocicrypt v1 github.com/coreos/go-systemd/v22 v22.5.0 go-module (+5 duplicates) github.com/cpuguy83/go-md2man/v2 v2.0.4 go-module (+1 duplicate) github.com/cyphar/filepath-securejoin v0.2.4 go-module -github.com/cyphar/filepath-securejoin v0.3.4 go-module +github.com/cyphar/filepath-securejoin v0.3.5 go-module github.com/davecgh/go-spew v1.1.1 go-module (+2 duplicates) github.com/deckarep/golang-set/v2 v2.3.0 go-module github.com/dimchansky/utfbom v1.1.1 go-module (+2 duplicates) @@ -248,12 +252,12 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.6.0 go-module (+2 duplicates) github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v27.4.1 go-module +github.com/docker/cli/cmd/docker v27.5.0 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v27.4.1 go-module (+1 duplicate) +github.com/docker/docker v27.5.0 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -278,7 +282,7 @@ github.com/fvbommel/sortorder v1 github.com/go-jose/go-jose/v3 v3.0.3 go-module github.com/go-logr/logr v1.2.2 go-module github.com/go-logr/logr v1.3.0 go-module (+1 duplicate) -github.com/go-logr/logr v1.4.1 go-module +github.com/go-logr/logr v1.4.2 go-module github.com/go-logr/stdr v1.2.2 go-module (+3 duplicates) github.com/goccy/go-json v0.10.3 go-module (+1 duplicate) github.com/goccy/go-yaml v1.12.0 go-module (+1 duplicate) @@ -309,7 +313,8 @@ github.com/gorilla/mux v1 github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module (+1 duplicate) github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module (+1 duplicate) github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module -github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 go-module (+1 duplicate) +github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 go-module +github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 go-module github.com/hashicorp/errwrap v1.1.0 go-module (+6 duplicates) github.com/hashicorp/go-immutable-radix v1.3.1 go-module github.com/hashicorp/go-immutable-radix/v2 v2.1.0 go-module @@ -341,7 +346,7 @@ github.com/mattn/go-isatty v0 github.com/mattn/go-isatty v0.0.20 go-module (+1 duplicate) github.com/mattn/go-shellwords v1.0.12 go-module github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 go-module -github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module (+1 duplicate) +github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module github.com/miekg/dns v1.1.57 go-module github.com/miekg/pkcs11 v1.1.1 go-module @@ -353,7 +358,7 @@ github.com/mitchellh/hashstructure/v2 v2 github.com/mitchellh/mapstructure v1.4.3 go-module github.com/mitchellh/reflectwalk v1.0.2 go-module github.com/moby/buildkit v0.10.0-rc2.0.20220308185020-fdecd0ae108b go-module -github.com/moby/buildkit v0.17.3 go-module +github.com/moby/buildkit v0.18.2 go-module github.com/moby/docker-image-spec v1.3.1 go-module github.com/moby/ipvs v1.1.0 go-module github.com/moby/locker v1.0.1 go-module (+3 duplicates) @@ -365,6 +370,7 @@ github.com/moby/sys/mount v0 github.com/moby/sys/mountinfo v0.6.2 go-module (+4 duplicates) github.com/moby/sys/mountinfo v0.7.1 go-module github.com/moby/sys/mountinfo v0.7.2 go-module +github.com/moby/sys/reexec v0.1.0 go-module github.com/moby/sys/sequential v0.6.0 go-module github.com/moby/sys/signal v0.6.0 go-module github.com/moby/sys/signal v0.7.0 go-module (+1 duplicate) @@ -379,12 +385,13 @@ github.com/modern-go/concurrent v0 github.com/modern-go/reflect2 v1.0.2 go-module (+1 duplicate) github.com/morikuni/aec v1.0.0 go-module (+1 duplicate) github.com/mrunalp/fileutils v0.5.1 go-module -github.com/opencontainers/go-digest v1.0.0 go-module (+5 duplicates) +github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 go-module +github.com/opencontainers/go-digest v1.0.0 go-module (+6 duplicates) github.com/opencontainers/image-spec v1.0.2 go-module -github.com/opencontainers/image-spec v1.1.0 go-module (+4 duplicates) +github.com/opencontainers/image-spec v1.1.0 go-module (+5 duplicates) github.com/opencontainers/runc v1.1.0 go-module github.com/opencontainers/runc v1.1.14 go-module -github.com/opencontainers/runc v1.2.2-0-g7cb3632 go-module +github.com/opencontainers/runc v1.2.4-0-g6c52b3f go-module github.com/opencontainers/runtime-spec v1.1.0 go-module (+4 duplicates) github.com/opencontainers/runtime-spec v1.2.0 go-module (+5 duplicates) github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module (+5 duplicates) @@ -399,13 +406,13 @@ github.com/planetscale/vtprotobuf v0 github.com/pmezard/go-difflib v1.0.0 go-module github.com/prometheus/client_golang v1.12.1 go-module github.com/prometheus/client_golang v1.14.0 go-module -github.com/prometheus/client_golang v1.17.0 go-module +github.com/prometheus/client_golang v1.20.5 go-module github.com/prometheus/client_model v0.2.0 go-module github.com/prometheus/client_model v0.3.0 go-module -github.com/prometheus/client_model v0.5.0 go-module +github.com/prometheus/client_model v0.6.1 go-module github.com/prometheus/common v0.32.1 go-module github.com/prometheus/common v0.37.0 go-module -github.com/prometheus/common v0.44.0 go-module +github.com/prometheus/common v0.55.0 go-module github.com/prometheus/procfs v0.15.1 go-module github.com/prometheus/procfs v0.7.3 go-module github.com/prometheus/procfs v0.8.0 go-module @@ -432,7 +439,7 @@ github.com/theupdateframework/notary v0 github.com/tinylib/msgp v1.1.8 go-module github.com/tonistiigi/dchapes-mode v0.0.0-20241001053921-ca0759fec205 go-module github.com/tonistiigi/fsutil v0.0.0-20220315205639-9ed612626da3 go-module -github.com/tonistiigi/fsutil v0.0.0-20241028165955-397af5306b5c go-module +github.com/tonistiigi/fsutil v0.0.0-20241121093142-31cf1f437184 go-module github.com/tonistiigi/go-actions-cache v0.0.0-20241108014124-394979b8119e go-module github.com/tonistiigi/go-archvariant v1.0.0 go-module github.com/tonistiigi/go-csvvalue v0.0.0-20240710180619-ddb21b71c0b4 go-module @@ -443,7 +450,8 @@ github.com/urfave/cli v1 github.com/urfave/cli/v2 v2.27.4 go-module (+1 duplicate) github.com/vbatts/tar-split v0.11.5 go-module github.com/vishvananda/netlink v1.1.0 go-module -github.com/vishvananda/netlink v1.2.1-beta.2 go-module (+1 duplicate) +github.com/vishvananda/netlink v1.2.1-beta.2 go-module +github.com/vishvananda/netlink v1.3.1-0.20240922070040-084abd93d350 go-module github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df go-module github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f go-module github.com/vishvananda/netns v0.0.4 go-module @@ -468,65 +476,70 @@ go.etcd.io/etcd/server/v3 v3 go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module go.opencensus.io v0.24.0 go-module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.29.0 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 go-module (+1 duplicate) +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 go-module go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.29.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.46.1 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.53.0 go-module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.29.0 go-module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 go-module (+1 duplicate) -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 go-module -go.opentelemetry.io/otel v1.21.0 go-module (+2 duplicates) +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 go-module +go.opentelemetry.io/otel v1.21.0 go-module (+1 duplicate) +go.opentelemetry.io/otel v1.28.0 go-module go.opentelemetry.io/otel v1.4.1 go-module -go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.44.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v0.44.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.28.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.28.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.4.1 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.19.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.21.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.19.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.21.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.28.0 go-module go.opentelemetry.io/otel/internal/metric v0.27.0 go-module go.opentelemetry.io/otel/metric v0.27.0 go-module -go.opentelemetry.io/otel/metric v1.21.0 go-module (+2 duplicates) -go.opentelemetry.io/otel/sdk v1.21.0 go-module (+1 duplicate) +go.opentelemetry.io/otel/metric v1.21.0 go-module (+1 duplicate) +go.opentelemetry.io/otel/metric v1.28.0 go-module +go.opentelemetry.io/otel/sdk v1.21.0 go-module +go.opentelemetry.io/otel/sdk v1.28.0 go-module go.opentelemetry.io/otel/sdk v1.4.1 go-module -go.opentelemetry.io/otel/sdk/metric v1.21.0 go-module -go.opentelemetry.io/otel/trace v1.21.0 go-module (+2 duplicates) +go.opentelemetry.io/otel/sdk/metric v1.28.0 go-module +go.opentelemetry.io/otel/trace v1.21.0 go-module (+1 duplicate) +go.opentelemetry.io/otel/trace v1.28.0 go-module go.opentelemetry.io/otel/trace v1.4.1 go-module go.opentelemetry.io/proto/otlp v0.12.0 go-module -go.opentelemetry.io/proto/otlp v1.0.0 go-module (+1 duplicate) +go.opentelemetry.io/proto/otlp v1.0.0 go-module +go.opentelemetry.io/proto/otlp v1.3.1 go-module go.uber.org/atomic v1.9.0 go-module go.uber.org/multierr v1.8.0 go-module go.uber.org/zap v1.21.0 go-module golang.org/x/crypto v0.0.0-20211202192323-5770296d904e go-module -golang.org/x/crypto v0.21.0 go-module golang.org/x/crypto v0.27.0 go-module +golang.org/x/crypto v0.31.0 go-module golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 go-module golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 go-module -golang.org/x/mod v0.12.0 go-module +golang.org/x/mod v0.17.0 go-module golang.org/x/mod v0.20.0 go-module (+3 duplicates) golang.org/x/mod v0.21.0 go-module golang.org/x/net v0.0.0-20211216030914-fe4d6282115f go-module -golang.org/x/net v0.23.0 go-module (+2 duplicates) golang.org/x/net v0.24.0 go-module +golang.org/x/net v0.25.0 go-module (+2 duplicates) golang.org/x/net v0.28.0 go-module (+1 duplicate) golang.org/x/net v0.29.0 go-module golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 go-module golang.org/x/oauth2 v0.11.0 go-module golang.org/x/oauth2 v0.22.0 go-module golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module -golang.org/x/sync v0.5.0 go-module (+4 duplicates) +golang.org/x/sync v0.10.0 go-module (+4 duplicates) golang.org/x/sync v0.8.0 go-module golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module -golang.org/x/sys v0.18.0 go-module (+4 duplicates) -golang.org/x/sys v0.22.0 go-module golang.org/x/sys v0.23.0 go-module (+1 duplicate) golang.org/x/sys v0.26.0 go-module (+5 duplicates) +golang.org/x/sys v0.28.0 go-module (+5 duplicates) golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module -golang.org/x/term v0.18.0 go-module -golang.org/x/text v0.14.0 go-module (+2 duplicates) +golang.org/x/term v0.27.0 go-module golang.org/x/text v0.17.0 go-module (+1 duplicate) golang.org/x/text v0.18.0 go-module +golang.org/x/text v0.21.0 go-module (+2 duplicates) golang.org/x/text v0.3.7 go-module golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 go-module @@ -537,19 +550,20 @@ google.golang.org/genproto v0 google.golang.org/genproto v0.0.0-20231211222908-989df2bf70f3 go-module (+4 duplicates) google.golang.org/genproto v0.0.0-20240123012728-ef4313101c80 go-module google.golang.org/genproto/googleapis/api v0.0.0-20231120223509-83a465c0220f go-module -google.golang.org/genproto/googleapis/api v0.0.0-20240604185151-ef581f913117 go-module -google.golang.org/genproto/googleapis/rpc v0.0.0-20231212172506-995d672761c0 go-module (+4 duplicates) -google.golang.org/genproto/googleapis/rpc v0.0.0-20240604185151-ef581f913117 go-module +google.golang.org/genproto/googleapis/api v0.0.0-20240701130421-f6361c86f094 go-module +google.golang.org/genproto/googleapis/rpc v0.0.0-20240401170217-c3f982113cda go-module (+4 duplicates) +google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 go-module google.golang.org/grpc v1.44.0 go-module google.golang.org/grpc v1.59.0 go-module (+4 duplicates) google.golang.org/grpc v1.66.3 go-module google.golang.org/protobuf v1.27.1 go-module -google.golang.org/protobuf v1.33.0 go-module (+5 duplicates) +google.golang.org/protobuf v1.33.0 go-module google.golang.org/protobuf v1.35.1 go-module +google.golang.org/protobuf v1.35.2 go-module (+4 duplicates) gopd 1.2.0 npm gopkg.in/inf.v0 v0.9.1 go-module (+2 duplicates) gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module (+1 duplicate) -gopkg.in/yaml.v2 v2.4.0 go-module (+7 duplicates) +gopkg.in/yaml.v2 v2.4.0 go-module (+6 duplicates) gopkg.in/yaml.v3 v3.0.1 go-module (+3 duplicates) gpg 2.2.27-3ubuntu2.1 deb gpg-agent 2.2.27-3ubuntu2.1 deb @@ -852,7 +866,8 @@ sigs.k8s.io/json v0 sigs.k8s.io/structured-merge-diff/v4 v4.2.1 go-module sigs.k8s.io/structured-merge-diff/v4 v4.2.3 go-module sigs.k8s.io/yaml v1.2.0 go-module -sigs.k8s.io/yaml v1.3.0 go-module (+6 duplicates) +sigs.k8s.io/yaml v1.3.0 go-module (+5 duplicates) +sigs.k8s.io/yaml v1.4.0 go-module sigstore 2.3.1 npm smart-buffer 4.2.0 npm socket.io 4.8.1 npm @@ -871,8 +886,7 @@ ssh2 1. ssri 10.0.6 npm statuses 2.0.1 npm stdlib go1.17.9 go-module -stdlib go1.22.10 go-module (+2 duplicates) -stdlib go1.22.9 go-module (+5 duplicates) +stdlib go1.22.10 go-module (+8 duplicates) stdlib go1.23.1 go-module (+1 duplicate) stdlib go1.23.2 go-module (+3 duplicates) string-width 4.2.3 npm (+1 duplicate) @@ -882,7 +896,7 @@ strip-ansi 6. strip-ansi 7.1.0 npm (+1 duplicate) sudo 1.9.9-1ubuntu2.4 deb supports-color 9.4.0 npm -systeminformation 5.25.5 npm +systeminformation 5.25.11 npm sysvinit-utils 3.01-1ubuntu1 deb tags.cncf.io/container-device-interface v0.7.2 go-module tags.cncf.io/container-device-interface v0.8.0 go-module (+4 duplicates) From 7b4a6a676e304f3e77ae9e4fb13bb504d5106443 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 Jan 2025 21:45:46 +0000 Subject: [PATCH 299/337] Bot Updating Package Versions --- package_versions.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index c76b649..8bab36d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,7 +31,7 @@ NAME VE @tufjs/models 2.0.1 npm @types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.10.6 npm +@types/node 22.10.7 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -135,7 +135,7 @@ env-paths 2. err-code 2.0.3 npm es-define-property 1.0.1 npm es-errors 1.3.0 npm -es-object-atoms 1.1.0 npm +es-object-atoms 1.1.1 npm escape-html 1.0.3 npm etag 1.8.1 npm exponential-backoff 3.1.1 npm @@ -713,8 +713,8 @@ libpcre3 2: libprocps8 2:3.3.17-6ubuntu2.1 deb libpsl5 0.21.0-1.2build2 deb libpython3-stdlib 3.10.6-1~22.04.1 deb -libpython3.10-minimal 3.10.12-1~22.04.7 deb -libpython3.10-stdlib 3.10.12-1~22.04.7 deb +libpython3.10-minimal 3.10.12-1~22.04.8 deb +libpython3.10-stdlib 3.10.12-1~22.04.8 deb libreadline8 8.1.2-1 deb librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb @@ -785,7 +785,7 @@ netcat 1. netcat-openbsd 1.218-4ubuntu1 deb node-gyp 10.1.0 npm node-pty 0.10.1 npm -nodejs 18.20.5-1nodesource1 deb +nodejs 18.20.6-1nodesource1 deb nopt 7.2.1 npm normalize-package-data 6.0.2 npm npm 10.8.2 npm @@ -834,8 +834,8 @@ publicsuffix 20 pump 3.0.2 npm python3 3.10.6-1~22.04.1 deb python3-minimal 3.10.6-1~22.04.1 deb -python3.10 3.10.12-1~22.04.7 deb -python3.10-minimal 3.10.12-1~22.04.7 deb +python3.10 3.10.12-1~22.04.8 deb +python3.10-minimal 3.10.12-1~22.04.8 deb qrcode-terminal 0.12.0 npm qs 6.13.0 npm range-parser 1.2.1 npm From 3bd19a972fad5f049e77cfc7b600a6134d9223fd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 28 Jan 2025 21:40:41 +0000 Subject: [PATCH 300/337] Bot Updating Templated Files --- Jenkinsfile | 33 ++++++++++++++++++++++++++------- 1 file changed, 26 insertions(+), 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f2350f3..ac32d31 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -56,11 +56,21 @@ pipeline { steps{ echo "Running on node: ${NODE_NAME}" sh '''#! /bin/bash - containers=$(docker ps -aq) + echo "Pruning builder" + docker builder prune -f --builder container || : + containers=$(docker ps -q) if [[ -n "${containers}" ]]; then - docker stop ${containers} + BUILDX_CONTAINER_ID=$(docker ps -qf 'name=buildx_buildkit') + for container in ${containers}; do + if [[ "${container}" == "${BUILDX_CONTAINER_ID}" ]]; then + echo "skipping buildx container in docker stop" + else + echo "Stopping container ${container}" + docker stop ${container} + fi + done fi - docker system prune -af --volumes || : ''' + docker system prune -f --volumes || : ''' script{ env.EXIT_STATUS = '' env.LS_RELEASE = sh( @@ -1089,12 +1099,21 @@ EOF } cleanup { sh '''#! /bin/bash - echo "Performing docker system prune!!" - containers=$(docker ps -aq) + echo "Pruning builder!!" + docker builder prune -f --builder container || : + containers=$(docker ps -q) if [[ -n "${containers}" ]]; then - docker stop ${containers} + BUILDX_CONTAINER_ID=$(docker ps -qf 'name=buildx_buildkit') + for container in ${containers}; do + if [[ "${container}" == "${BUILDX_CONTAINER_ID}" ]]; then + echo "skipping buildx container in docker stop" + else + echo "Stopping container ${container}" + docker stop ${container} + fi + done fi - docker system prune -af --volumes || : + docker system prune -f --volumes || : ''' cleanWs() } From 83ff321e0d560a3bedf390679c3a226756745d08 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 28 Jan 2025 21:41:53 +0000 Subject: [PATCH 301/337] Bot Updating Templated Files --- .github/CONTRIBUTING.md | 2 +- .github/ISSUE_TEMPLATE/config.yml | 2 +- .github/workflows/external_trigger.yml | 10 +++++++++- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 9ec105a..7e64f05 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -6,7 +6,7 @@ * Read, and fill the Pull Request template * If this is a fix for a typo (in code, documentation, or the README) please file an issue and let us sort it out. We do not need a PR * If the PR is addressing an existing issue include, closes #\<issue number>, in the body of the PR commit message -* If you want to discuss changes, you can also bring it up in [#dev-talk](https://discordapp.com/channels/354974912613449730/757585807061155840) in our [Discord server](https://discord.gg/YWrKVTn) +* If you want to discuss changes, you can also bring it up in [#dev-talk](https://discordapp.com/channels/354974912613449730/757585807061155840) in our [Discord server](https://linuxserver.io/discord) ## Common files diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 5e4d025..dada550 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,7 +1,7 @@ blank_issues_enabled: false contact_links: - name: Discord chat support - url: https://discord.gg/YWrKVTn + url: https://linuxserver.io/discord about: Realtime support / chat with the community and the team. - name: Discourse discussion forum diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 718d3e8..1c87c94 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -15,7 +15,10 @@ jobs: SKIP_EXTERNAL_TRIGGER: ${{ vars.SKIP_EXTERNAL_TRIGGER }} run: | printf "# External trigger for docker-kasm\n\n" >> $GITHUB_STEP_SUMMARY - if grep -q "^kasm_develop" <<< "${SKIP_EXTERNAL_TRIGGER}"; then + if grep -q "^kasm_develop_" <<< "${SKIP_EXTERNAL_TRIGGER}"; then + echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY + echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`kasm_develop_\`; will skip trigger if version matches." >> $GITHUB_STEP_SUMMARY + elif grep -q "^kasm_develop" <<< "${SKIP_EXTERNAL_TRIGGER}"; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`kasm_develop\`; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 @@ -25,6 +28,11 @@ jobs: printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY EXT_RELEASE=$(curl -sX GET https://kasm-ci.s3.amazonaws.com/dev-version.txt) echo "Type is \`custom_version_command\`" >> $GITHUB_STEP_SUMMARY + if grep -q "^kasm_develop_${EXT_RELEASE}" <<< "${SKIP_EXTERNAL_TRIGGER}"; then + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` matches current external release; skipping trigger." >> $GITHUB_STEP_SUMMARY + exit 0 + fi if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "> Can't retrieve external version, exiting" >> $GITHUB_STEP_SUMMARY From b56570541a6ed007281e09448593d4854c737c66 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 28 Jan 2025 21:46:29 +0000 Subject: [PATCH 302/337] Bot Updating Package Versions --- package_versions.txt | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8bab36d..a9db500 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -29,9 +29,8 @@ NAME VE @socket.io/component-emitter UNKNOWN npm (+1 duplicate) @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm -@types/cookie 0.4.1 npm @types/cors 2.8.17 npm -@types/node 22.10.7 npm +@types/node 22.12.0 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -113,8 +112,8 @@ destroy 1. diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:27.5.0-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:27.5.0-1~ubuntu.22.04~jammy deb +docker-ce 5:27.5.1-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:27.5.1-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -128,7 +127,7 @@ encodeurl 1. encodeurl 2.0.0 npm encoding 0.1.13 npm end-of-stream 1.4.4 npm -engine.io 6.6.2 npm +engine.io 6.6.4 npm engine.io-parser 5.2.3 npm engine.io-parser UNKNOWN npm (+1 duplicate) env-paths 2.2.1 npm @@ -161,8 +160,8 @@ github.com/Masterminds/semver v1 github.com/Microsoft/hcsshim v0.11.7 go-module (+1 duplicate) github.com/Microsoft/hcsshim v0.12.8 go-module github.com/NVIDIA/go-nvlib v0.6.1 go-module (+3 duplicates) -github.com/NVIDIA/go-nvml v0.12.4-0 go-module (+3 duplicates) -github.com/NVIDIA/nvidia-container-toolkit v1.17.3 go-module (+3 duplicates) +github.com/NVIDIA/go-nvml v0.12.4-1 go-module (+3 duplicates) +github.com/NVIDIA/nvidia-container-toolkit v1.17.4 go-module (+3 duplicates) github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module github.com/a8m/envsubst v1.4.2 go-module (+1 duplicate) github.com/agext/levenshtein v1.2.3 go-module @@ -242,7 +241,7 @@ github.com/containernetworking/plugins v1 github.com/containernetworking/plugins v1.4.0 go-module github.com/containers/ocicrypt v1.1.10 go-module github.com/coreos/go-systemd/v22 v22.5.0 go-module (+5 duplicates) -github.com/cpuguy83/go-md2man/v2 v2.0.4 go-module (+1 duplicate) +github.com/cpuguy83/go-md2man/v2 v2.0.5 go-module (+1 duplicate) github.com/cyphar/filepath-securejoin v0.2.4 go-module github.com/cyphar/filepath-securejoin v0.3.5 go-module github.com/davecgh/go-spew v1.1.1 go-module (+2 duplicates) @@ -252,12 +251,12 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.6.0 go-module (+2 duplicates) github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v27.5.0 go-module +github.com/docker/cli/cmd/docker v27.5.1 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v27.5.0 go-module (+1 duplicate) +github.com/docker/docker v27.5.1 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -447,7 +446,7 @@ github.com/tonistiigi/units v0 github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f go-module github.com/urfave/cli v1.22.12 go-module (+1 duplicate) github.com/urfave/cli v1.22.14 go-module -github.com/urfave/cli/v2 v2.27.4 go-module (+1 duplicate) +github.com/urfave/cli/v2 v2.27.5 go-module (+1 duplicate) github.com/vbatts/tar-split v0.11.5 go-module github.com/vishvananda/netlink v1.1.0 go-module github.com/vishvananda/netlink v1.2.1-beta.2 go-module @@ -700,8 +699,8 @@ libnpmteam 6. libnpmversion 6.0.3 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.17.3-1 deb -libnvidia-container1 1.17.3-1 deb +libnvidia-container-tools 1.17.4-1 deb +libnvidia-container1 1.17.4-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.4 deb @@ -799,8 +798,8 @@ npm-pick-manifest 9. npm-profile 10.0.0 npm npm-registry-fetch 17.1.0 npm npm-user-validate 2.0.1 npm -nvidia-container-toolkit 1.17.3-1 deb -nvidia-container-toolkit-base 1.17.3-1 deb +nvidia-container-toolkit 1.17.4-1 deb +nvidia-container-toolkit-base 1.17.4-1 deb nvidia-docker2 2.14.0-1 deb object-assign 4.1.1 npm object-inspect 1.13.3 npm @@ -886,9 +885,10 @@ ssh2 1. ssri 10.0.6 npm statuses 2.0.1 npm stdlib go1.17.9 go-module -stdlib go1.22.10 go-module (+8 duplicates) +stdlib go1.22.10 go-module (+5 duplicates) +stdlib go1.22.11 go-module (+2 duplicates) stdlib go1.23.1 go-module (+1 duplicate) -stdlib go1.23.2 go-module (+3 duplicates) +stdlib go1.23.4 go-module (+3 duplicates) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) string_decoder 1.3.0 npm @@ -935,6 +935,6 @@ wrap-ansi 8. wrappy 1.0.2 npm write-file-atomic 5.0.1 npm ws 8.17.1 npm -xfsprogs 5.13.0-1ubuntu2 deb +xfsprogs 5.13.0-1ubuntu2.1 deb yallist 4.0.0 npm zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From 2fff0e2b9fa24fdbe9e5215652ebacbfc1659eaf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Feb 2025 21:42:02 +0000 Subject: [PATCH 303/337] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index a9db500..9894c98 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm @types/cors 2.8.17 npm -@types/node 22.12.0 npm +@types/node 22.13.1 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -703,10 +703,10 @@ libnvidia-container-tools 1. libnvidia-container1 1.17.4-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb -libpam-modules 1.4.0-11ubuntu2.4 deb -libpam-modules-bin 1.4.0-11ubuntu2.4 deb -libpam-runtime 1.4.0-11ubuntu2.4 deb -libpam0g 1.4.0-11ubuntu2.4 deb +libpam-modules 1.4.0-11ubuntu2.5 deb +libpam-modules-bin 1.4.0-11ubuntu2.5 deb +libpam-runtime 1.4.0-11ubuntu2.5 deb +libpam0g 1.4.0-11ubuntu2.5 deb libpcre2-8-0 10.39-3ubuntu0.1 deb libpcre3 2:8.39-13ubuntu0.22.04.1 deb libprocps8 2:3.3.17-6ubuntu2.1 deb From c8b1d5a3dc2b725f4ce101cd2451f91b98c7a820 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Feb 2025 18:43:15 +0000 Subject: [PATCH 304/337] Bot Updating Templated Files --- Jenkinsfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ac32d31..5a0363b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -70,7 +70,9 @@ pipeline { fi done fi - docker system prune -f --volumes || : ''' + docker system prune -f --volumes || : + docker image prune -af || : + ''' script{ env.EXIT_STATUS = '' env.LS_RELEASE = sh( @@ -688,7 +690,8 @@ pipeline { if [[ -n "${containers}" ]]; then docker stop ${containers} fi - docker system prune -af --volumes || : + docker system prune -f --volumes || : + docker image prune -af || : ''' } } @@ -1114,6 +1117,7 @@ EOF done fi docker system prune -f --volumes || : + docker image prune -af || : ''' cleanWs() } From ecd65732187d1cefe6f32e2e0c1b96a455edb87b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Feb 2025 18:48:57 +0000 Subject: [PATCH 305/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9894c98..de9ede7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -636,7 +636,7 @@ libbrotli1 1. libbsd0 0.11.5-1 deb libbz2-1.0 1.0.8-5build1 deb libc-bin 2.35-0ubuntu3.8 deb -libc6 2.35-0ubuntu3.8 deb +libc6 2.35-0ubuntu3.9 deb libcap-ng0 0.7.9-2.2build3 deb libcap2 1:2.44-1ubuntu0.22.04.1 deb libcap2-bin 1:2.44-1ubuntu0.22.04.1 deb @@ -802,7 +802,7 @@ nvidia-container-toolkit 1. nvidia-container-toolkit-base 1.17.4-1 deb nvidia-docker2 2.14.0-1 deb object-assign 4.1.1 npm -object-inspect 1.13.3 npm +object-inspect 1.13.4 npm on-finished 2.4.1 npm once 1.4.0 npm openssl 3.0.2-0ubuntu1.18 deb @@ -913,7 +913,7 @@ treeverse 3. tuf-js 2.2.1 npm tweetnacl 0.14.5 npm type-is 1.6.18 npm -tzdata 2024a-0ubuntu0.22.04.1 deb +tzdata 2024b-0ubuntu0.22.04 deb ubuntu-keyring 2021.03.26 deb uidmap 1:4.8.1-2ubuntu2.2 deb undici-types 6.20.0 npm From 15ecd828897f505fefcb75f95c125d8ec4a3f677 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 13 Feb 2025 15:40:48 +0000 Subject: [PATCH 306/337] Bot Updating Package Versions --- package_versions.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index de9ede7..030ed2c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm @types/cors 2.8.17 npm -@types/node 22.13.1 npm +@types/node 22.13.2 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -67,7 +67,7 @@ buildcheck 0. bytes 3.1.2 npm ca-certificates 20240203~22.04.1 deb cacache 18.0.3 npm -call-bind-apply-helpers 1.0.1 npm +call-bind-apply-helpers 1.0.2 npm call-bound 1.0.3 npm catatonit 0.1.7-1 deb chalk 5.3.0 npm @@ -635,7 +635,7 @@ libbpf0 1: libbrotli1 1.0.9-2build6 deb libbsd0 0.11.5-1 deb libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.8 deb +libc-bin 2.35-0ubuntu3.9 deb libc6 2.35-0ubuntu3.9 deb libcap-ng0 0.7.9-2.2build3 deb libcap2 1:2.44-1ubuntu0.22.04.1 deb @@ -657,7 +657,7 @@ libgcrypt20 1. libgmp10 2:6.2.1+dfsg-3ubuntu1 deb libgnutls30 3.7.3-4ubuntu1.5 deb libgpg-error0 1.43-3 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.4 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.5 deb libhogweed6 3.7.3-1build2 deb libicu70 70.1-2 deb libidn2-0 2.3.2-2build1 deb @@ -665,10 +665,10 @@ libinih1 53 libip4tc2 1.8.7-1ubuntu5.2 deb libip6tc2 1.8.7-1ubuntu5.2 deb libjq1 1.6-2.1ubuntu3 deb -libk5crypto3 1.19.2-2ubuntu0.4 deb +libk5crypto3 1.19.2-2ubuntu0.5 deb libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.4 deb -libkrb5support0 1.19.2-2ubuntu0.4 deb +libkrb5-3 1.19.2-2ubuntu0.5 deb +libkrb5support0 1.19.2-2ubuntu0.5 deb libksba8 1.6.0-2ubuntu0.2 deb libldap-2.5-0 2.5.18+dfsg-0ubuntu0.22.04.2 deb libldap-common 2.5.18+dfsg-0ubuntu0.22.04.2 deb @@ -719,7 +719,7 @@ librtmp1 2. libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libseccomp2 2.5.3-2ubuntu2 deb +libseccomp2 2.5.3-2ubuntu3~22.04.1 deb libselinux1 3.3-1build2 deb libsemanage-common 3.3-1build2 deb libsemanage2 3.3-1build2 deb @@ -741,7 +741,7 @@ libuuid1 2. libxtables12 1.8.7-1ubuntu5.2 deb libxxhash0 0.8.1-1 deb libzstd1 1.4.8+dfsg-3build1 deb -locales 2.35-0ubuntu3.8 deb +locales 2.35-0ubuntu3.9 deb lodash 4.17.21 npm login 1:4.8.1-2ubuntu2.2 deb logsave 1.46.5-2ubuntu1.2 deb From 9be78f7b538cc919b677ac8123bc24065a830de4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 18 Feb 2025 21:43:22 +0000 Subject: [PATCH 307/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 030ed2c..a856ca0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm @types/cors 2.8.17 npm -@types/node 22.13.2 npm +@types/node 22.13.4 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From e8f221898088fd570990e627723023be1b76d9da Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 19 Feb 2025 17:42:19 +0000 Subject: [PATCH 308/337] Bot Updating Package Versions --- package_versions.txt | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index a856ca0..2da1412 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -267,9 +267,9 @@ github.com/docker/go-units v0 github.com/docker/go-units v0.5.0 go-module (+5 duplicates) github.com/docker/libtrust v0.0.0-20150526203908-9cbd2a1374f4 go-module github.com/dustin/go-humanize v1.0.0 go-module -github.com/elliotchance/orderedmap v1.6.0 go-module (+1 duplicate) +github.com/elliotchance/orderedmap v1.7.1 go-module (+1 duplicate) github.com/emicklei/go-restful/v3 v3.10.1 go-module -github.com/fatih/color v1.17.0 go-module (+1 duplicate) +github.com/fatih/color v1.18.0 go-module (+1 duplicate) github.com/felixge/httpsnoop v1.0.2 go-module github.com/felixge/httpsnoop v1.0.3 go-module (+1 duplicate) github.com/felixge/httpsnoop v1.0.4 go-module @@ -283,8 +283,8 @@ github.com/go-logr/logr v1 github.com/go-logr/logr v1.3.0 go-module (+1 duplicate) github.com/go-logr/logr v1.4.2 go-module github.com/go-logr/stdr v1.2.2 go-module (+3 duplicates) -github.com/goccy/go-json v0.10.3 go-module (+1 duplicate) -github.com/goccy/go-yaml v1.12.0 go-module (+1 duplicate) +github.com/goccy/go-json v0.10.4 go-module (+1 duplicate) +github.com/goccy/go-yaml v1.13.3 go-module (+1 duplicate) github.com/godbus/dbus/v5 v5.1.0 go-module (+5 duplicates) github.com/gofrs/flock v0.12.1 go-module github.com/gofrs/flock v0.8.0 go-module @@ -338,7 +338,7 @@ github.com/klauspost/compress v1 github.com/klauspost/compress v1.16.7 go-module (+3 duplicates) github.com/klauspost/compress v1.17.11 go-module github.com/klauspost/cpuid/v2 v2.0.4 go-module (+1 duplicate) -github.com/magiconair/properties v1.8.7 go-module (+1 duplicate) +github.com/magiconair/properties v1.8.9 go-module (+1 duplicate) github.com/mattn/go-colorable v0.1.12 go-module github.com/mattn/go-colorable v0.1.13 go-module (+1 duplicate) github.com/mattn/go-isatty v0.0.14 go-module @@ -349,7 +349,7 @@ github.com/matttproud/golang_protobuf_extensions v1 github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module github.com/miekg/dns v1.1.57 go-module github.com/miekg/pkcs11 v1.1.1 go-module -github.com/mikefarah/yq/v4 v0.0.0-20240912192210-a11a83c5a7b2 go-module (+1 duplicate) +github.com/mikefarah/yq/v4 v0.0.0-20250112031739-8bf425b4d134 go-module (+1 duplicate) github.com/minio/sha256-simd v1.0.0 go-module (+1 duplicate) github.com/mistifyio/go-zfs/v3 v3.0.1 go-module (+1 duplicate) github.com/mitchellh/copystructure v1.2.0 go-module @@ -522,8 +522,8 @@ golang.org/x/mod v0 golang.org/x/net v0.0.0-20211216030914-fe4d6282115f go-module golang.org/x/net v0.24.0 go-module golang.org/x/net v0.25.0 go-module (+2 duplicates) -golang.org/x/net v0.28.0 go-module (+1 duplicate) golang.org/x/net v0.29.0 go-module +golang.org/x/net v0.33.0 go-module (+1 duplicate) golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 go-module golang.org/x/oauth2 v0.11.0 go-module golang.org/x/oauth2 v0.22.0 go-module @@ -531,19 +531,16 @@ golang.org/x/sync v0 golang.org/x/sync v0.10.0 go-module (+4 duplicates) golang.org/x/sync v0.8.0 go-module golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module -golang.org/x/sys v0.23.0 go-module (+1 duplicate) golang.org/x/sys v0.26.0 go-module (+5 duplicates) -golang.org/x/sys v0.28.0 go-module (+5 duplicates) +golang.org/x/sys v0.28.0 go-module (+7 duplicates) golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module golang.org/x/term v0.27.0 go-module -golang.org/x/text v0.17.0 go-module (+1 duplicate) golang.org/x/text v0.18.0 go-module -golang.org/x/text v0.21.0 go-module (+2 duplicates) +golang.org/x/text v0.21.0 go-module (+4 duplicates) golang.org/x/text v0.3.7 go-module golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 go-module golang.org/x/time v0.6.0 go-module -golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 go-module (+1 duplicate) google.golang.org/api v0.155.0 go-module google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa go-module google.golang.org/genproto v0.0.0-20231211222908-989df2bf70f3 go-module (+4 duplicates) @@ -731,7 +728,7 @@ libssh-4 0. libssl3 3.0.2-0ubuntu1.18 deb libstdc++6 12.3.0-1ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.12 deb -libtasn1-6 4.18.0-4build1 deb +libtasn1-6 4.18.0-4ubuntu0.1 deb libtinfo6 6.3-2ubuntu0.1 deb libtirpc-common 1.3.2-2ubuntu0.1 deb libtirpc3 1.3.2-2ubuntu0.1 deb @@ -887,8 +884,7 @@ statuses 2. stdlib go1.17.9 go-module stdlib go1.22.10 go-module (+5 duplicates) stdlib go1.22.11 go-module (+2 duplicates) -stdlib go1.23.1 go-module (+1 duplicate) -stdlib go1.23.4 go-module (+3 duplicates) +stdlib go1.23.4 go-module (+5 duplicates) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) string_decoder 1.3.0 npm @@ -913,7 +909,7 @@ treeverse 3. tuf-js 2.2.1 npm tweetnacl 0.14.5 npm type-is 1.6.18 npm -tzdata 2024b-0ubuntu0.22.04 deb +tzdata 2024b-0ubuntu0.22.04.1 deb ubuntu-keyring 2021.03.26 deb uidmap 1:4.8.1-2ubuntu2.2 deb undici-types 6.20.0 npm From ac72d8af158e170be80d91a612f7a346a8f980b3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 25 Feb 2025 21:48:40 +0000 Subject: [PATCH 309/337] Bot Updating Package Versions --- package_versions.txt | 207 ++++++++++++++++++++++--------------------- 1 file changed, 107 insertions(+), 100 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2da1412..7128e61 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm @types/cors 2.8.17 npm -@types/node 22.13.4 npm +@types/node 22.13.5 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -54,6 +54,7 @@ base-passwd 3. base64-js 1.5.1 npm base64id 2.0.0 npm bash 5.1-6ubuntu1.1 deb +bash 5.1.16 binary bcrypt-pbkdf 1.0.2 npm bin-links 4.0.4 npm binary-extensions 2.3.0 npm @@ -77,7 +78,7 @@ ci-info 4. cidr-regex 4.1.1 npm clean-stack 2.2.0 npm cli-columns 4.0.0 npm -cloud.google.com/go/compute/metadata v0.3.0 go-module +cloud.google.com/go/compute/metadata v0.5.2 go-module cloud.google.com/go/logging v1.9.0 go-module cloud.google.com/go/longrunning v0.5.4 go-module cmd-shim 6.0.3 npm @@ -99,7 +100,8 @@ cron 3. cross-spawn 7.0.3 npm cssesc 3.0.0 npm curl 7.81.0-1ubuntu1.20 deb -dario.cat/mergo v1.0.0 go-module (+1 duplicate) +dario.cat/mergo v1.0.0 go-module +dario.cat/mergo v1.0.1 go-module dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb debianutils 5.5-1ubuntu2 deb @@ -112,8 +114,8 @@ destroy 1. diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:27.5.1-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:27.5.1-1~ubuntu.22.04~jammy deb +docker-ce 5:28.0.0-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:28.0.0-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -152,13 +154,16 @@ function-bind 1. fuse-overlayfs 1.7.1-1 deb fuse3 3.10.5-1build1 deb gcc-12-base 12.3.0-1ubuntu1~22.04 deb -get-intrinsic 1.2.7 npm +get-intrinsic 1.3.0 npm get-proto 1.0.1 npm github.com/AlecAivazis/survey/v2 v2.3.2 go-module +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.16.0 go-module +github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 go-module +github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.5.0 go-module github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module github.com/Masterminds/semver v1.5.0 go-module github.com/Microsoft/hcsshim v0.11.7 go-module (+1 duplicate) -github.com/Microsoft/hcsshim v0.12.8 go-module +github.com/Microsoft/hcsshim v0.12.9 go-module github.com/NVIDIA/go-nvlib v0.6.1 go-module (+3 duplicates) github.com/NVIDIA/go-nvml v0.12.4-1 go-module (+3 duplicates) github.com/NVIDIA/nvidia-container-toolkit v1.17.4 go-module (+3 duplicates) @@ -170,21 +175,21 @@ github.com/alecthomas/participle/v2 v2 github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092 go-module github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 go-module github.com/armon/go-metrics v0.4.1 go-module -github.com/aws/aws-sdk-go-v2 v1.24.1 go-module -github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.5.4 go-module -github.com/aws/aws-sdk-go-v2/config v1.26.6 go-module -github.com/aws/aws-sdk-go-v2/credentials v1.16.16 go-module -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.11 go-module -github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.10 go-module -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.10 go-module -github.com/aws/aws-sdk-go-v2/internal/ini v1.7.3 go-module +github.com/aws/aws-sdk-go-v2 v1.30.3 go-module +github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.3 go-module +github.com/aws/aws-sdk-go-v2/config v1.27.27 go-module +github.com/aws/aws-sdk-go-v2/credentials v1.17.27 go-module +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.11 go-module +github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.15 go-module +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.15 go-module +github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 go-module github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.32.0 go-module -github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.4 go-module -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.10 go-module -github.com/aws/aws-sdk-go-v2/service/sso v1.18.7 go-module -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.21.7 go-module -github.com/aws/aws-sdk-go-v2/service/sts v1.26.7 go-module -github.com/aws/smithy-go v1.19.0 go-module +github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.3 go-module +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.17 go-module +github.com/aws/aws-sdk-go-v2/service/sso v1.22.4 go-module +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.4 go-module +github.com/aws/aws-sdk-go-v2/service/sts v1.30.3 go-module +github.com/aws/smithy-go v1.20.3 go-module github.com/beorn7/perks v1.0.1 go-module (+2 duplicates) github.com/bits-and-blooms/bitset v1.13.0 go-module github.com/blang/semver/v4 v4.0.0 go-module @@ -195,8 +200,7 @@ github.com/cespare/xxhash/v2 v2 github.com/cespare/xxhash/v2 v2.2.0 go-module github.com/cespare/xxhash/v2 v2.3.0 go-module github.com/checkpoint-restore/go-criu/v6 v6.3.0 go-module -github.com/cilium/ebpf v0.12.3 go-module -github.com/cilium/ebpf v0.16.0 go-module +github.com/cilium/ebpf v0.16.0 go-module (+1 duplicate) github.com/cilium/ebpf v0.9.1 go-module (+3 duplicates) github.com/cloudflare/cfssl v1.6.4 go-module github.com/cnabio/cnab-go v0.10.0-beta1 go-module @@ -207,43 +211,46 @@ github.com/containerd/aufs v1 github.com/containerd/btrfs/v2 v2.0.0 go-module github.com/containerd/cgroups v1.1.0 go-module (+1 duplicate) github.com/containerd/cgroups/v3 v3.0.2 go-module (+3 duplicates) -github.com/containerd/cgroups/v3 v3.0.3 go-module +github.com/containerd/cgroups/v3 v3.0.5 go-module github.com/containerd/console v1.0.3 go-module (+5 duplicates) github.com/containerd/console v1.0.4 go-module (+1 duplicate) github.com/containerd/containerd v1.6.2 go-module -github.com/containerd/containerd v1.7.24 go-module github.com/containerd/containerd v1.7.25 go-module (+4 duplicates) -github.com/containerd/containerd/api v1.7.19 go-module -github.com/containerd/containerd/api v1.8.0 go-module (+4 duplicates) +github.com/containerd/containerd/api v1.8.0 go-module (+5 duplicates) +github.com/containerd/containerd/v2 v2.0.2 go-module github.com/containerd/continuity v0.2.2 go-module github.com/containerd/continuity v0.4.4 go-module (+4 duplicates) github.com/containerd/continuity v0.4.5 go-module -github.com/containerd/errdefs v0.3.0 go-module (+5 duplicates) +github.com/containerd/errdefs v0.3.0 go-module (+4 duplicates) +github.com/containerd/errdefs v1.0.0 go-module +github.com/containerd/errdefs/pkg v0.3.0 go-module github.com/containerd/fifo v1.1.0 go-module (+5 duplicates) -github.com/containerd/go-cni v1.1.10 go-module +github.com/containerd/go-cni v1.1.12 go-module github.com/containerd/go-cni v1.1.9 go-module (+1 duplicate) github.com/containerd/go-runc v1.0.0 go-module (+4 duplicates) github.com/containerd/go-runc v1.1.0 go-module github.com/containerd/imgcrypt v1.1.8 go-module github.com/containerd/log v0.1.0 go-module (+6 duplicates) github.com/containerd/nri v0.6.1 go-module -github.com/containerd/platforms v0.2.1 go-module (+4 duplicates) -github.com/containerd/stargz-snapshotter/estargz v0.15.1 go-module +github.com/containerd/platforms v0.2.1 go-module (+3 duplicates) +github.com/containerd/platforms v1.0.0-rc.1 go-module +github.com/containerd/plugin v1.0.0 go-module +github.com/containerd/stargz-snapshotter/estargz v0.16.3 go-module github.com/containerd/ttrpc v1.1.0 go-module -github.com/containerd/ttrpc v1.2.5 go-module (+5 duplicates) +github.com/containerd/ttrpc v1.2.5 go-module (+4 duplicates) +github.com/containerd/ttrpc v1.2.7 go-module github.com/containerd/typeurl v1.0.2 go-module (+1 duplicate) github.com/containerd/typeurl/v2 v2.1.1 go-module (+4 duplicates) github.com/containerd/typeurl/v2 v2.2.3 go-module github.com/containerd/zfs v1.1.0 go-module github.com/containernetworking/cni v1.1.2 go-module (+1 duplicate) -github.com/containernetworking/cni v1.2.2 go-module +github.com/containernetworking/cni v1.2.3 go-module github.com/containernetworking/plugins v1.2.0 go-module -github.com/containernetworking/plugins v1.4.0 go-module +github.com/containernetworking/plugins v1.5.1 go-module github.com/containers/ocicrypt v1.1.10 go-module github.com/coreos/go-systemd/v22 v22.5.0 go-module (+5 duplicates) github.com/cpuguy83/go-md2man/v2 v2.0.5 go-module (+1 duplicate) -github.com/cyphar/filepath-securejoin v0.2.4 go-module -github.com/cyphar/filepath-securejoin v0.3.5 go-module +github.com/cyphar/filepath-securejoin v0.3.5 go-module (+1 duplicate) github.com/davecgh/go-spew v1.1.1 go-module (+2 duplicates) github.com/deckarep/golang-set/v2 v2.3.0 go-module github.com/dimchansky/utfbom v1.1.1 go-module (+2 duplicates) @@ -251,12 +258,12 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.6.0 go-module (+2 duplicates) github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v27.5.1 go-module +github.com/docker/cli/cmd/docker v28.0.0 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v27.5.1 go-module (+1 duplicate) +github.com/docker/docker v28.0.0 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -275,8 +282,8 @@ github.com/felixge/httpsnoop v1 github.com/felixge/httpsnoop v1.0.4 go-module github.com/fernet/fernet-go v0.0.0-20211208181803-9f70042a33ee go-module github.com/fluent/fluent-logger-golang v1.9.0 go-module -github.com/fsnotify/fsnotify v1.6.0 go-module (+1 duplicate) -github.com/fsnotify/fsnotify v1.7.0 go-module (+3 duplicates) +github.com/fsnotify/fsnotify v1.6.0 go-module +github.com/fsnotify/fsnotify v1.7.0 go-module (+4 duplicates) github.com/fvbommel/sortorder v1.0.1 go-module github.com/go-jose/go-jose/v3 v3.0.3 go-module github.com/go-logr/logr v1.2.2 go-module @@ -313,7 +320,7 @@ github.com/grpc-ecosystem/go-grpc-middleware v1 github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module (+1 duplicate) github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 go-module -github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 go-module +github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 go-module github.com/hashicorp/errwrap v1.1.0 go-module (+6 duplicates) github.com/hashicorp/go-immutable-radix v1.3.1 go-module github.com/hashicorp/go-immutable-radix/v2 v2.1.0 go-module @@ -347,7 +354,7 @@ github.com/mattn/go-shellwords v1 github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 go-module github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module -github.com/miekg/dns v1.1.57 go-module +github.com/miekg/dns v1.1.61 go-module github.com/miekg/pkcs11 v1.1.1 go-module github.com/mikefarah/yq/v4 v0.0.0-20250112031739-8bf425b4d134 go-module (+1 duplicate) github.com/minio/sha256-simd v1.0.0 go-module (+1 duplicate) @@ -357,14 +364,14 @@ github.com/mitchellh/hashstructure/v2 v2 github.com/mitchellh/mapstructure v1.4.3 go-module github.com/mitchellh/reflectwalk v1.0.2 go-module github.com/moby/buildkit v0.10.0-rc2.0.20220308185020-fdecd0ae108b go-module -github.com/moby/buildkit v0.18.2 go-module +github.com/moby/buildkit v0.20.0 go-module github.com/moby/docker-image-spec v1.3.1 go-module github.com/moby/ipvs v1.1.0 go-module github.com/moby/locker v1.0.1 go-module (+3 duplicates) github.com/moby/patternmatcher v0.6.0 go-module github.com/moby/pubsub v1.0.0 go-module github.com/moby/spdystream v0.2.0 go-module -github.com/moby/swarmkit/v2 v2.0.0-20241017191044-e8ecf83ee08e go-module +github.com/moby/swarmkit/v2 v2.0.0-20250103191802-8c1959736554 go-module github.com/moby/sys/mount v0.3.4 go-module github.com/moby/sys/mountinfo v0.6.2 go-module (+4 duplicates) github.com/moby/sys/mountinfo v0.7.1 go-module @@ -379,7 +386,7 @@ github.com/moby/sys/symlink v0 github.com/moby/sys/user v0.3.0 go-module (+5 duplicates) github.com/moby/sys/userns v0.1.0 go-module (+6 duplicates) github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 go-module -github.com/moby/term v0.5.0 go-module +github.com/moby/term v0.5.2 go-module github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module (+1 duplicate) github.com/modern-go/reflect2 v1.0.2 go-module (+1 duplicate) github.com/morikuni/aec v1.0.0 go-module (+1 duplicate) @@ -389,16 +396,17 @@ github.com/opencontainers/go-digest v1 github.com/opencontainers/image-spec v1.0.2 go-module github.com/opencontainers/image-spec v1.1.0 go-module (+5 duplicates) github.com/opencontainers/runc v1.1.0 go-module -github.com/opencontainers/runc v1.1.14 go-module +github.com/opencontainers/runc v1.2.3 go-module github.com/opencontainers/runc v1.2.4-0-g6c52b3f go-module github.com/opencontainers/runtime-spec v1.1.0 go-module (+4 duplicates) github.com/opencontainers/runtime-spec v1.2.0 go-module (+5 duplicates) github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module (+5 duplicates) -github.com/opencontainers/selinux v1.11.0 go-module (+3 duplicates) -github.com/package-url/packageurl-go v0.1.1-0.20220428063043-89078438f170 go-module +github.com/opencontainers/selinux v1.11.0 go-module (+2 duplicates) +github.com/opencontainers/selinux v1.11.1 go-module +github.com/package-url/packageurl-go v0.1.1 go-module github.com/pelletier/go-toml v1.9.4 go-module github.com/pelletier/go-toml v1.9.5 go-module (+6 duplicates) -github.com/pelletier/go-toml/v2 v2.2.3 go-module (+1 duplicate) +github.com/pelletier/go-toml/v2 v2.2.3 go-module (+2 duplicates) github.com/philhofer/fwd v1.1.2 go-module github.com/pkg/errors v0.9.1 go-module (+6 duplicates) github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 go-module @@ -417,7 +425,7 @@ github.com/prometheus/procfs v0 github.com/prometheus/procfs v0.8.0 go-module github.com/qri-io/jsonpointer v0.1.0 go-module github.com/qri-io/jsonschema v0.1.1 go-module -github.com/rootless-containers/rootlesskit/v2 v2.0.2 go-module +github.com/rootless-containers/rootlesskit/v2 v2.3.2 go-module github.com/russross/blackfriday/v2 v2.1.0 go-module (+1 duplicate) github.com/sanathkr/go-yaml v0.0.0-20170819195128-ed9d249f429b go-module github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 go-module @@ -429,17 +437,18 @@ github.com/sirupsen/logrus v1 github.com/spdx/tools-golang v0.5.3 go-module github.com/spf13/cobra v1.4.0 go-module github.com/spf13/cobra v1.8.1 go-module (+2 duplicates) -github.com/spf13/pflag v1.0.5 go-module (+4 duplicates) +github.com/spf13/pflag v1.0.5 go-module (+3 duplicates) +github.com/spf13/pflag v1.0.6 go-module github.com/stefanberger/go-pkcs11uri v0.0.0-20230803200340-78284954bff6 go-module -github.com/stretchr/testify v1.9.0 go-module +github.com/stretchr/testify v1.10.0 go-module github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module (+6 duplicates) github.com/tchap/go-patricia/v2 v2.3.1 go-module github.com/theupdateframework/notary v0.6.1 go-module github.com/tinylib/msgp v1.1.8 go-module github.com/tonistiigi/dchapes-mode v0.0.0-20241001053921-ca0759fec205 go-module github.com/tonistiigi/fsutil v0.0.0-20220315205639-9ed612626da3 go-module -github.com/tonistiigi/fsutil v0.0.0-20241121093142-31cf1f437184 go-module -github.com/tonistiigi/go-actions-cache v0.0.0-20241108014124-394979b8119e go-module +github.com/tonistiigi/fsutil v0.0.0-20250113203817-b14e27f4135a go-module +github.com/tonistiigi/go-actions-cache v0.0.0-20250219102945-1a5174abd055 go-module github.com/tonistiigi/go-archvariant v1.0.0 go-module github.com/tonistiigi/go-csvvalue v0.0.0-20240710180619-ddb21b71c0b4 go-module github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module (+1 duplicate) @@ -447,13 +456,13 @@ github.com/tonistiigi/vt100 v0 github.com/urfave/cli v1.22.12 go-module (+1 duplicate) github.com/urfave/cli v1.22.14 go-module github.com/urfave/cli/v2 v2.27.5 go-module (+1 duplicate) -github.com/vbatts/tar-split v0.11.5 go-module +github.com/vbatts/tar-split v0.11.6 go-module github.com/vishvananda/netlink v1.1.0 go-module github.com/vishvananda/netlink v1.2.1-beta.2 go-module -github.com/vishvananda/netlink v1.3.1-0.20240922070040-084abd93d350 go-module +github.com/vishvananda/netlink v1.3.1-0.20250209162617-655392bc778a go-module github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df go-module github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f go-module -github.com/vishvananda/netns v0.0.4 go-module +github.com/vishvananda/netns v0.0.5 go-module github.com/weppos/publicsuffix-go v0.15.1-0.20210511084619-b1f36a2d6c0b go-module github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb go-module github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module @@ -468,42 +477,42 @@ gnupg-l10n 2. gnupg-utils 2.2.27-3ubuntu2.1 deb go.etcd.io/bbolt v1.3.10 go-module go.etcd.io/bbolt v1.3.11 go-module -go.etcd.io/etcd/client/pkg/v3 v3.5.6 go-module -go.etcd.io/etcd/pkg/v3 v3.5.6 go-module -go.etcd.io/etcd/raft/v3 v3.5.6 go-module -go.etcd.io/etcd/server/v3 v3.5.6 go-module +go.etcd.io/etcd/client/pkg/v3 v3.5.16 go-module +go.etcd.io/etcd/pkg/v3 v3.5.16 go-module +go.etcd.io/etcd/raft/v3 v3.5.16 go-module +go.etcd.io/etcd/server/v3 v3.5.16 go-module go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module go.opencensus.io v0.24.0 go-module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.29.0 go-module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 go-module -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 go-module +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.56.0 go-module go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.29.0 go-module -go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.53.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.56.0 go-module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.29.0 go-module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 go-module (+1 duplicate) -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 go-module +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.56.0 go-module go.opentelemetry.io/otel v1.21.0 go-module (+1 duplicate) -go.opentelemetry.io/otel v1.28.0 go-module +go.opentelemetry.io/otel v1.31.0 go-module go.opentelemetry.io/otel v1.4.1 go-module -go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.28.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.28.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.31.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.31.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.31.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.4.1 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.19.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.31.0 go-module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.19.0 go-module -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.28.0 go-module +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.31.0 go-module go.opentelemetry.io/otel/internal/metric v0.27.0 go-module go.opentelemetry.io/otel/metric v0.27.0 go-module go.opentelemetry.io/otel/metric v1.21.0 go-module (+1 duplicate) -go.opentelemetry.io/otel/metric v1.28.0 go-module +go.opentelemetry.io/otel/metric v1.31.0 go-module go.opentelemetry.io/otel/sdk v1.21.0 go-module -go.opentelemetry.io/otel/sdk v1.28.0 go-module +go.opentelemetry.io/otel/sdk v1.31.0 go-module go.opentelemetry.io/otel/sdk v1.4.1 go-module -go.opentelemetry.io/otel/sdk/metric v1.28.0 go-module +go.opentelemetry.io/otel/sdk/metric v1.31.0 go-module go.opentelemetry.io/otel/trace v1.21.0 go-module (+1 duplicate) -go.opentelemetry.io/otel/trace v1.28.0 go-module +go.opentelemetry.io/otel/trace v1.31.0 go-module go.opentelemetry.io/otel/trace v1.4.1 go-module go.opentelemetry.io/proto/otlp v0.12.0 go-module go.opentelemetry.io/proto/otlp v1.0.0 go-module @@ -512,31 +521,28 @@ go.uber.org/atomic v1 go.uber.org/multierr v1.8.0 go-module go.uber.org/zap v1.21.0 go-module golang.org/x/crypto v0.0.0-20211202192323-5770296d904e go-module -golang.org/x/crypto v0.27.0 go-module -golang.org/x/crypto v0.31.0 go-module +golang.org/x/crypto v0.31.0 go-module (+1 duplicate) golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 go-module -golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 go-module +golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f go-module golang.org/x/mod v0.17.0 go-module golang.org/x/mod v0.20.0 go-module (+3 duplicates) -golang.org/x/mod v0.21.0 go-module +golang.org/x/mod v0.22.0 go-module golang.org/x/net v0.0.0-20211216030914-fe4d6282115f go-module golang.org/x/net v0.24.0 go-module golang.org/x/net v0.25.0 go-module (+2 duplicates) -golang.org/x/net v0.29.0 go-module -golang.org/x/net v0.33.0 go-module (+1 duplicate) +golang.org/x/net v0.33.0 go-module (+3 duplicates) golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 go-module golang.org/x/oauth2 v0.11.0 go-module -golang.org/x/oauth2 v0.22.0 go-module +golang.org/x/oauth2 v0.23.0 go-module golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module -golang.org/x/sync v0.10.0 go-module (+4 duplicates) -golang.org/x/sync v0.8.0 go-module +golang.org/x/sync v0.10.0 go-module (+5 duplicates) golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module -golang.org/x/sys v0.26.0 go-module (+5 duplicates) +golang.org/x/sys v0.26.0 go-module (+3 duplicates) golang.org/x/sys v0.28.0 go-module (+7 duplicates) +golang.org/x/sys v0.29.0 go-module (+1 duplicate) golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module golang.org/x/term v0.27.0 go-module -golang.org/x/text v0.18.0 go-module -golang.org/x/text v0.21.0 go-module (+4 duplicates) +golang.org/x/text v0.21.0 go-module (+5 duplicates) golang.org/x/text v0.3.7 go-module golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 go-module @@ -546,16 +552,15 @@ google.golang.org/genproto v0 google.golang.org/genproto v0.0.0-20231211222908-989df2bf70f3 go-module (+4 duplicates) google.golang.org/genproto v0.0.0-20240123012728-ef4313101c80 go-module google.golang.org/genproto/googleapis/api v0.0.0-20231120223509-83a465c0220f go-module -google.golang.org/genproto/googleapis/api v0.0.0-20240701130421-f6361c86f094 go-module +google.golang.org/genproto/googleapis/api v0.0.0-20241021214115-324edc3d5d38 go-module google.golang.org/genproto/googleapis/rpc v0.0.0-20240401170217-c3f982113cda go-module (+4 duplicates) -google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 go-module +google.golang.org/genproto/googleapis/rpc v0.0.0-20241021214115-324edc3d5d38 go-module google.golang.org/grpc v1.44.0 go-module google.golang.org/grpc v1.59.0 go-module (+4 duplicates) -google.golang.org/grpc v1.66.3 go-module +google.golang.org/grpc v1.69.4 go-module google.golang.org/protobuf v1.27.1 go-module google.golang.org/protobuf v1.33.0 go-module -google.golang.org/protobuf v1.35.1 go-module -google.golang.org/protobuf v1.35.2 go-module (+4 duplicates) +google.golang.org/protobuf v1.35.2 go-module (+5 duplicates) gopd 1.2.0 npm gopkg.in/inf.v0 v0.9.1 go-module (+2 duplicates) gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module (+1 duplicate) @@ -570,6 +575,7 @@ gpgsm 2. gpgv 2.2.27-3ubuntu2.1 deb graceful-fs 4.2.11 npm grep 3.7-1build1 deb +gzip 1.10 binary gzip 1.10-4ubuntu4.1 deb has-symbols 1.1.0 npm hasown 2.0.2 npm @@ -616,8 +622,9 @@ k8s.io/client-go v0 k8s.io/client-go v0.26.2 go-module k8s.io/component-base v0.26.2 go-module k8s.io/cri-api v0.27.1 go-module +k8s.io/klog/v2 v2.130.1 go-module k8s.io/klog/v2 v2.30.0 go-module -k8s.io/klog/v2 v2.90.1 go-module (+1 duplicate) +k8s.io/klog/v2 v2.90.1 go-module k8s.io/utils v0.0.0-20211116205334-6203023598ed go-module k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 go-module kasm-wizard 0.0.1 npm @@ -636,7 +643,7 @@ libc-bin 2. libc6 2.35-0ubuntu3.9 deb libcap-ng0 0.7.9-2.2build3 deb libcap2 1:2.44-1ubuntu0.22.04.1 deb -libcap2-bin 1:2.44-1ubuntu0.22.04.1 deb +libcap2-bin 1:2.44-1ubuntu0.22.04.2 deb libcom-err2 1.46.5-2ubuntu1.2 deb libcrypt1 1:4.4.27-1 deb libcurl4 7.81.0-1ubuntu1.20 deb @@ -709,8 +716,8 @@ libpcre3 2: libprocps8 2:3.3.17-6ubuntu2.1 deb libpsl5 0.21.0-1.2build2 deb libpython3-stdlib 3.10.6-1~22.04.1 deb -libpython3.10-minimal 3.10.12-1~22.04.8 deb -libpython3.10-stdlib 3.10.12-1~22.04.8 deb +libpython3.10-minimal 3.10.12-1~22.04.9 deb +libpython3.10-stdlib 3.10.12-1~22.04.9 deb libreadline8 8.1.2-1 deb librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb @@ -772,7 +779,7 @@ ms 2. ms 2.1.2 npm ms 2.1.3 npm (+1 duplicate) mute-stream 1.0.0 npm -nan 2.22.0 npm +nan 2.22.1 npm ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb negotiator 0.6.3 npm (+1 duplicate) @@ -802,7 +809,7 @@ object-assign 4. object-inspect 1.13.4 npm on-finished 2.4.1 npm once 1.4.0 npm -openssl 3.0.2-0ubuntu1.18 deb +openssl 3.0.2-0ubuntu1.19 deb p-map 4.0.0 npm package-json-from-dist 1.0.0 npm pacote 18.0.6 npm @@ -830,8 +837,8 @@ publicsuffix 20 pump 3.0.2 npm python3 3.10.6-1~22.04.1 deb python3-minimal 3.10.6-1~22.04.1 deb -python3.10 3.10.12-1~22.04.8 deb -python3.10-minimal 3.10.12-1~22.04.8 deb +python3.10 3.10.12-1~22.04.9 deb +python3.10-minimal 3.10.12-1~22.04.9 deb qrcode-terminal 0.12.0 npm qs 6.13.0 npm range-parser 1.2.1 npm @@ -883,8 +890,8 @@ ssri 10 statuses 2.0.1 npm stdlib go1.17.9 go-module stdlib go1.22.10 go-module (+5 duplicates) -stdlib go1.22.11 go-module (+2 duplicates) stdlib go1.23.4 go-module (+5 duplicates) +stdlib go1.23.6 go-module (+2 duplicates) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) string_decoder 1.3.0 npm From 63d3b0b511d31f0bb08843de27a17e0dd126a43e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 26 Feb 2025 15:48:05 +0000 Subject: [PATCH 310/337] Bot Updating Package Versions --- package_versions.txt | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 7128e61..3c41ba8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -114,8 +114,8 @@ destroy 1. diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:28.0.0-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:28.0.0-1~ubuntu.22.04~jammy deb +docker-ce 5:28.0.1-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:28.0.1-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -258,12 +258,12 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.6.0 go-module (+2 duplicates) github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v28.0.0 go-module +github.com/docker/cli/cmd/docker v28.0.1 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v28.0.0 go-module (+1 duplicate) +github.com/docker/docker v28.0.1 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -642,7 +642,7 @@ libbz2-1.0 1. libc-bin 2.35-0ubuntu3.9 deb libc6 2.35-0ubuntu3.9 deb libcap-ng0 0.7.9-2.2build3 deb -libcap2 1:2.44-1ubuntu0.22.04.1 deb +libcap2 1:2.44-1ubuntu0.22.04.2 deb libcap2-bin 1:2.44-1ubuntu0.22.04.2 deb libcom-err2 1.46.5-2ubuntu1.2 deb libcrypt1 1:4.4.27-1 deb @@ -659,7 +659,7 @@ libfuse3-3 3. libgcc-s1 12.3.0-1ubuntu1~22.04 deb libgcrypt20 1.9.4-3ubuntu3 deb libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.5 deb +libgnutls30 3.7.3-4ubuntu1.6 deb libgpg-error0 1.43-3 deb libgssapi-krb5-2 1.19.2-2ubuntu0.5 deb libhogweed6 3.7.3-1build2 deb @@ -674,8 +674,8 @@ libkeyutils1 1. libkrb5-3 1.19.2-2ubuntu0.5 deb libkrb5support0 1.19.2-2ubuntu0.5 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.18+dfsg-0ubuntu0.22.04.2 deb -libldap-common 2.5.18+dfsg-0ubuntu0.22.04.2 deb +libldap-2.5-0 2.5.18+dfsg-0ubuntu0.22.04.3 deb +libldap-common 2.5.18+dfsg-0ubuntu0.22.04.3 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb liblzo2-2 2.10-2build3 deb @@ -732,7 +732,7 @@ libsmartcols1 2. libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.2 deb libssh-4 0.9.6-2ubuntu0.22.04.3 deb -libssl3 3.0.2-0ubuntu1.18 deb +libssl3 3.0.2-0ubuntu1.19 deb libstdc++6 12.3.0-1ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.12 deb libtasn1-6 4.18.0-4ubuntu0.1 deb @@ -902,7 +902,8 @@ supports-color 9. systeminformation 5.25.11 npm sysvinit-utils 3.01-1ubuntu1 deb tags.cncf.io/container-device-interface v0.7.2 go-module -tags.cncf.io/container-device-interface v0.8.0 go-module (+4 duplicates) +tags.cncf.io/container-device-interface v0.8.0 go-module (+3 duplicates) +tags.cncf.io/container-device-interface v0.8.1 go-module tags.cncf.io/container-device-interface/specs-go v0.7.0 go-module tags.cncf.io/container-device-interface/specs-go v0.8.0 go-module (+4 duplicates) tar 1.34+dfsg-1ubuntu0.1.22.04.2 deb From 7c8a85c4778e8f54367c28edffe799826d0100e7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 2 Mar 2025 08:46:21 +0000 Subject: [PATCH 311/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 3c41ba8..39bde90 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm @types/cors 2.8.17 npm -@types/node 22.13.5 npm +@types/node 22.13.8 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -649,7 +649,7 @@ libcrypt1 1: libcurl4 7.81.0-1ubuntu1.20 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb -libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb +libdevmapper1.02.1 2:1.02.175-2.1ubuntu5 deb libedit2 3.1-20210910-1build1 deb libelf1 0.186-1build1 deb libexpat1 2.4.7-1ubuntu0.5 deb @@ -779,7 +779,7 @@ ms 2. ms 2.1.2 npm ms 2.1.3 npm (+1 duplicate) mute-stream 1.0.0 npm -nan 2.22.1 npm +nan 2.22.2 npm ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb negotiator 0.6.3 npm (+1 duplicate) From 3d6b511ee2f9df735c16a5fd973d6af02422fdc6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Mar 2025 03:11:55 +0000 Subject: [PATCH 312/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 39bde90..9f3bef5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm @types/cors 2.8.17 npm -@types/node 22.13.8 npm +@types/node 22.13.9 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -69,7 +69,7 @@ bytes 3. ca-certificates 20240203~22.04.1 deb cacache 18.0.3 npm call-bind-apply-helpers 1.0.2 npm -call-bound 1.0.3 npm +call-bound 1.0.4 npm catatonit 0.1.7-1 deb chalk 5.3.0 npm chownr 1.1.4 npm From 7f950342bee507cff52ff3fc85d81c3e1277dbb0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 5 Mar 2025 15:43:46 +0000 Subject: [PATCH 313/337] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9f3bef5..b138093 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -661,7 +661,7 @@ libgcrypt20 1. libgmp10 2:6.2.1+dfsg-3ubuntu1 deb libgnutls30 3.7.3-4ubuntu1.6 deb libgpg-error0 1.43-3 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.5 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.6 deb libhogweed6 3.7.3-1build2 deb libicu70 70.1-2 deb libidn2-0 2.3.2-2build1 deb @@ -669,10 +669,10 @@ libinih1 53 libip4tc2 1.8.7-1ubuntu5.2 deb libip6tc2 1.8.7-1ubuntu5.2 deb libjq1 1.6-2.1ubuntu3 deb -libk5crypto3 1.19.2-2ubuntu0.5 deb +libk5crypto3 1.19.2-2ubuntu0.6 deb libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.5 deb -libkrb5support0 1.19.2-2ubuntu0.5 deb +libkrb5-3 1.19.2-2ubuntu0.6 deb +libkrb5support0 1.19.2-2ubuntu0.6 deb libksba8 1.6.0-2ubuntu0.2 deb libldap-2.5-0 2.5.18+dfsg-0ubuntu0.22.04.3 deb libldap-common 2.5.18+dfsg-0ubuntu0.22.04.3 deb From 941bbcf8ce738d018cad5edba8aff198530ed56c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 10 Mar 2025 16:48:29 +0000 Subject: [PATCH 314/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b138093..003bc1e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm @types/cors 2.8.17 npm -@types/node 22.13.9 npm +@types/node 22.13.10 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From e5196966525ae72a0efcf7db80341cedfcbac116 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Mar 2025 21:42:28 +0000 Subject: [PATCH 315/337] Bot Updating Package Versions --- package_versions.txt | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 003bc1e..43d9634 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -166,7 +166,7 @@ github.com/Microsoft/hcsshim v0 github.com/Microsoft/hcsshim v0.12.9 go-module github.com/NVIDIA/go-nvlib v0.6.1 go-module (+3 duplicates) github.com/NVIDIA/go-nvml v0.12.4-1 go-module (+3 duplicates) -github.com/NVIDIA/nvidia-container-toolkit v1.17.4 go-module (+3 duplicates) +github.com/NVIDIA/nvidia-container-toolkit v1.17.5 go-module (+3 duplicates) github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module github.com/a8m/envsubst v1.4.2 go-module (+1 duplicate) github.com/agext/levenshtein v1.2.3 go-module @@ -251,6 +251,7 @@ github.com/containers/ocicrypt v1 github.com/coreos/go-systemd/v22 v22.5.0 go-module (+5 duplicates) github.com/cpuguy83/go-md2man/v2 v2.0.5 go-module (+1 duplicate) github.com/cyphar/filepath-securejoin v0.3.5 go-module (+1 duplicate) +github.com/cyphar/filepath-securejoin v0.4.1 go-module (+1 duplicate) github.com/davecgh/go-spew v1.1.1 go-module (+2 duplicates) github.com/deckarep/golang-set/v2 v2.3.0 go-module github.com/dimchansky/utfbom v1.1.1 go-module (+2 duplicates) @@ -398,8 +399,10 @@ github.com/opencontainers/image-spec v1 github.com/opencontainers/runc v1.1.0 go-module github.com/opencontainers/runc v1.2.3 go-module github.com/opencontainers/runc v1.2.4-0-g6c52b3f go-module +github.com/opencontainers/runc v1.2.5 go-module (+1 duplicate) github.com/opencontainers/runtime-spec v1.1.0 go-module (+4 duplicates) -github.com/opencontainers/runtime-spec v1.2.0 go-module (+5 duplicates) +github.com/opencontainers/runtime-spec v1.2.0 go-module (+1 duplicate) +github.com/opencontainers/runtime-spec v1.2.1 go-module (+3 duplicates) github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module (+5 duplicates) github.com/opencontainers/selinux v1.11.0 go-module (+2 duplicates) github.com/opencontainers/selinux v1.11.1 go-module @@ -537,8 +540,7 @@ golang.org/x/oauth2 v0 golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module golang.org/x/sync v0.10.0 go-module (+5 duplicates) golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module -golang.org/x/sys v0.26.0 go-module (+3 duplicates) -golang.org/x/sys v0.28.0 go-module (+7 duplicates) +golang.org/x/sys v0.28.0 go-module (+11 duplicates) golang.org/x/sys v0.29.0 go-module (+1 duplicate) golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module golang.org/x/term v0.27.0 go-module @@ -703,8 +705,8 @@ libnpmteam 6. libnpmversion 6.0.3 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.17.4-1 deb -libnvidia-container1 1.17.4-1 deb +libnvidia-container-tools 1.17.5-1 deb +libnvidia-container1 1.17.5-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.5 deb @@ -802,8 +804,8 @@ npm-pick-manifest 9. npm-profile 10.0.0 npm npm-registry-fetch 17.1.0 npm npm-user-validate 2.0.1 npm -nvidia-container-toolkit 1.17.4-1 deb -nvidia-container-toolkit-base 1.17.4-1 deb +nvidia-container-toolkit 1.17.5-1 deb +nvidia-container-toolkit-base 1.17.5-1 deb nvidia-docker2 2.14.0-1 deb object-assign 4.1.1 npm object-inspect 1.13.4 npm @@ -890,7 +892,8 @@ ssri 10 statuses 2.0.1 npm stdlib go1.17.9 go-module stdlib go1.22.10 go-module (+5 duplicates) -stdlib go1.23.4 go-module (+5 duplicates) +stdlib go1.23.4 go-module (+1 duplicate) +stdlib go1.23.5 go-module (+3 duplicates) stdlib go1.23.6 go-module (+2 duplicates) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) @@ -902,8 +905,7 @@ supports-color 9. systeminformation 5.25.11 npm sysvinit-utils 3.01-1ubuntu1 deb tags.cncf.io/container-device-interface v0.7.2 go-module -tags.cncf.io/container-device-interface v0.8.0 go-module (+3 duplicates) -tags.cncf.io/container-device-interface v0.8.1 go-module +tags.cncf.io/container-device-interface v0.8.1 go-module (+4 duplicates) tags.cncf.io/container-device-interface/specs-go v0.7.0 go-module tags.cncf.io/container-device-interface/specs-go v0.8.0 go-module (+4 duplicates) tar 1.34+dfsg-1ubuntu0.1.22.04.2 deb From ce80d3f9e052a240943a0dbd4b4f5eaab29703fb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 23 Mar 2025 03:18:06 +0000 Subject: [PATCH 316/337] Bot Updating Package Versions --- package_versions.txt | 45 +++++++++++++++++++++++--------------------- 1 file changed, 24 insertions(+), 21 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 43d9634..edea63d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm @types/cors 2.8.17 npm -@types/node 22.13.10 npm +@types/node 22.13.11 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -114,8 +114,8 @@ destroy 1. diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:28.0.1-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:28.0.1-1~ubuntu.22.04~jammy deb +docker-ce 5:28.0.2-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:28.0.2-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -217,7 +217,7 @@ github.com/containerd/console v1 github.com/containerd/containerd v1.6.2 go-module github.com/containerd/containerd v1.7.25 go-module (+4 duplicates) github.com/containerd/containerd/api v1.8.0 go-module (+5 duplicates) -github.com/containerd/containerd/v2 v2.0.2 go-module +github.com/containerd/containerd/v2 v2.0.4 go-module github.com/containerd/continuity v0.2.2 go-module github.com/containerd/continuity v0.4.4 go-module (+4 duplicates) github.com/containerd/continuity v0.4.5 go-module @@ -246,12 +246,12 @@ github.com/containerd/zfs v1 github.com/containernetworking/cni v1.1.2 go-module (+1 duplicate) github.com/containernetworking/cni v1.2.3 go-module github.com/containernetworking/plugins v1.2.0 go-module -github.com/containernetworking/plugins v1.5.1 go-module +github.com/containernetworking/plugins v1.6.2 go-module github.com/containers/ocicrypt v1.1.10 go-module github.com/coreos/go-systemd/v22 v22.5.0 go-module (+5 duplicates) github.com/cpuguy83/go-md2man/v2 v2.0.5 go-module (+1 duplicate) -github.com/cyphar/filepath-securejoin v0.3.5 go-module (+1 duplicate) -github.com/cyphar/filepath-securejoin v0.4.1 go-module (+1 duplicate) +github.com/cyphar/filepath-securejoin v0.3.5 go-module +github.com/cyphar/filepath-securejoin v0.4.1 go-module (+2 duplicates) github.com/davecgh/go-spew v1.1.1 go-module (+2 duplicates) github.com/deckarep/golang-set/v2 v2.3.0 go-module github.com/dimchansky/utfbom v1.1.1 go-module (+2 duplicates) @@ -259,12 +259,12 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.6.0 go-module (+2 duplicates) github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v28.0.1 go-module +github.com/docker/cli/cmd/docker v28.0.2 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v28.0.1 go-module (+1 duplicate) +github.com/docker/docker v28.0.2 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -365,7 +365,7 @@ github.com/mitchellh/hashstructure/v2 v2 github.com/mitchellh/mapstructure v1.4.3 go-module github.com/mitchellh/reflectwalk v1.0.2 go-module github.com/moby/buildkit v0.10.0-rc2.0.20220308185020-fdecd0ae108b go-module -github.com/moby/buildkit v0.20.0 go-module +github.com/moby/buildkit v0.20.1 go-module github.com/moby/docker-image-spec v1.3.1 go-module github.com/moby/ipvs v1.1.0 go-module github.com/moby/locker v1.0.1 go-module (+3 duplicates) @@ -397,9 +397,8 @@ github.com/opencontainers/go-digest v1 github.com/opencontainers/image-spec v1.0.2 go-module github.com/opencontainers/image-spec v1.1.0 go-module (+5 duplicates) github.com/opencontainers/runc v1.1.0 go-module -github.com/opencontainers/runc v1.2.3 go-module github.com/opencontainers/runc v1.2.4-0-g6c52b3f go-module -github.com/opencontainers/runc v1.2.5 go-module (+1 duplicate) +github.com/opencontainers/runc v1.2.5 go-module (+2 duplicates) github.com/opencontainers/runtime-spec v1.1.0 go-module (+4 duplicates) github.com/opencontainers/runtime-spec v1.2.0 go-module (+1 duplicate) github.com/opencontainers/runtime-spec v1.2.1 go-module (+3 duplicates) @@ -428,7 +427,7 @@ github.com/prometheus/procfs v0 github.com/prometheus/procfs v0.8.0 go-module github.com/qri-io/jsonpointer v0.1.0 go-module github.com/qri-io/jsonschema v0.1.1 go-module -github.com/rootless-containers/rootlesskit/v2 v2.3.2 go-module +github.com/rootless-containers/rootlesskit/v2 v2.3.4 go-module github.com/russross/blackfriday/v2 v2.1.0 go-module (+1 duplicate) github.com/sanathkr/go-yaml v0.0.0-20170819195128-ed9d249f429b go-module github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 go-module @@ -451,7 +450,7 @@ github.com/tinylib/msgp v1 github.com/tonistiigi/dchapes-mode v0.0.0-20241001053921-ca0759fec205 go-module github.com/tonistiigi/fsutil v0.0.0-20220315205639-9ed612626da3 go-module github.com/tonistiigi/fsutil v0.0.0-20250113203817-b14e27f4135a go-module -github.com/tonistiigi/go-actions-cache v0.0.0-20250219102945-1a5174abd055 go-module +github.com/tonistiigi/go-actions-cache v0.0.0-20250228231703-3e9a6642607f go-module github.com/tonistiigi/go-archvariant v1.0.0 go-module github.com/tonistiigi/go-csvvalue v0.0.0-20240710180619-ddb21b71c0b4 go-module github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module (+1 duplicate) @@ -524,7 +523,8 @@ go.uber.org/atomic v1 go.uber.org/multierr v1.8.0 go-module go.uber.org/zap v1.21.0 go-module golang.org/x/crypto v0.0.0-20211202192323-5770296d904e go-module -golang.org/x/crypto v0.31.0 go-module (+1 duplicate) +golang.org/x/crypto v0.31.0 go-module +golang.org/x/crypto v0.35.0 go-module golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 go-module golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f go-module golang.org/x/mod v0.17.0 go-module @@ -533,18 +533,21 @@ golang.org/x/mod v0 golang.org/x/net v0.0.0-20211216030914-fe4d6282115f go-module golang.org/x/net v0.24.0 go-module golang.org/x/net v0.25.0 go-module (+2 duplicates) -golang.org/x/net v0.33.0 go-module (+3 duplicates) +golang.org/x/net v0.33.0 go-module (+1 duplicate) +golang.org/x/net v0.36.0 go-module (+1 duplicate) golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 go-module golang.org/x/oauth2 v0.11.0 go-module -golang.org/x/oauth2 v0.23.0 go-module +golang.org/x/oauth2 v0.27.0 go-module golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module -golang.org/x/sync v0.10.0 go-module (+5 duplicates) +golang.org/x/sync v0.10.0 go-module (+4 duplicates) +golang.org/x/sync v0.11.0 go-module golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module golang.org/x/sys v0.28.0 go-module (+11 duplicates) -golang.org/x/sys v0.29.0 go-module (+1 duplicate) +golang.org/x/sys v0.31.0 go-module (+1 duplicate) golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module golang.org/x/term v0.27.0 go-module -golang.org/x/text v0.21.0 go-module (+5 duplicates) +golang.org/x/text v0.21.0 go-module (+4 duplicates) +golang.org/x/text v0.22.0 go-module golang.org/x/text v0.3.7 go-module golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 go-module @@ -894,7 +897,7 @@ stdlib go stdlib go1.22.10 go-module (+5 duplicates) stdlib go1.23.4 go-module (+1 duplicate) stdlib go1.23.5 go-module (+3 duplicates) -stdlib go1.23.6 go-module (+2 duplicates) +stdlib go1.23.7 go-module (+2 duplicates) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) string_decoder 1.3.0 npm From c234523fad19dc73c70f4dd82c6bd75709666639 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 24 Mar 2025 06:51:11 +0000 Subject: [PATCH 317/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index edea63d..fad814b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm @types/cors 2.8.17 npm -@types/node 22.13.11 npm +@types/node 22.13.12 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 08fc0482da2b8100458913675ea50446fc66732a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 24 Mar 2025 22:44:22 +0000 Subject: [PATCH 318/337] Bot Updating Package Versions --- package_versions.txt | 45 +++++++++++++++++++++----------------------- 1 file changed, 21 insertions(+), 24 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index fad814b..a9fe7e5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm @types/cors 2.8.17 npm -@types/node 22.13.12 npm +@types/node 22.13.13 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -86,7 +86,7 @@ code.cloudfoundry.org/clock v1 color-convert 2.0.1 npm color-name 1.1.4 npm common-ancestor-path 1.0.1 npm -containerd.io 1.7.25-1 deb +containerd.io 1.7.26-1 deb content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.7.1 npm @@ -215,7 +215,7 @@ github.com/containerd/cgroups/v3 v3 github.com/containerd/console v1.0.3 go-module (+5 duplicates) github.com/containerd/console v1.0.4 go-module (+1 duplicate) github.com/containerd/containerd v1.6.2 go-module -github.com/containerd/containerd v1.7.25 go-module (+4 duplicates) +github.com/containerd/containerd v1.7.26 go-module (+4 duplicates) github.com/containerd/containerd/api v1.8.0 go-module (+5 duplicates) github.com/containerd/containerd/v2 v2.0.4 go-module github.com/containerd/continuity v0.2.2 go-module @@ -231,14 +231,13 @@ github.com/containerd/go-runc v1 github.com/containerd/go-runc v1.1.0 go-module github.com/containerd/imgcrypt v1.1.8 go-module github.com/containerd/log v0.1.0 go-module (+6 duplicates) -github.com/containerd/nri v0.6.1 go-module +github.com/containerd/nri v0.8.0 go-module github.com/containerd/platforms v0.2.1 go-module (+3 duplicates) github.com/containerd/platforms v1.0.0-rc.1 go-module github.com/containerd/plugin v1.0.0 go-module github.com/containerd/stargz-snapshotter/estargz v0.16.3 go-module github.com/containerd/ttrpc v1.1.0 go-module -github.com/containerd/ttrpc v1.2.5 go-module (+4 duplicates) -github.com/containerd/ttrpc v1.2.7 go-module +github.com/containerd/ttrpc v1.2.7 go-module (+5 duplicates) github.com/containerd/typeurl v1.0.2 go-module (+1 duplicate) github.com/containerd/typeurl/v2 v2.1.1 go-module (+4 duplicates) github.com/containerd/typeurl/v2 v2.2.3 go-module @@ -250,8 +249,7 @@ github.com/containernetworking/plugins v1 github.com/containers/ocicrypt v1.1.10 go-module github.com/coreos/go-systemd/v22 v22.5.0 go-module (+5 duplicates) github.com/cpuguy83/go-md2man/v2 v2.0.5 go-module (+1 duplicate) -github.com/cyphar/filepath-securejoin v0.3.5 go-module -github.com/cyphar/filepath-securejoin v0.4.1 go-module (+2 duplicates) +github.com/cyphar/filepath-securejoin v0.4.1 go-module (+3 duplicates) github.com/davecgh/go-spew v1.1.1 go-module (+2 duplicates) github.com/deckarep/golang-set/v2 v2.3.0 go-module github.com/dimchansky/utfbom v1.1.1 go-module (+2 duplicates) @@ -275,7 +273,7 @@ github.com/docker/go-units v0 github.com/docker/go-units v0.5.0 go-module (+5 duplicates) github.com/docker/libtrust v0.0.0-20150526203908-9cbd2a1374f4 go-module github.com/dustin/go-humanize v1.0.0 go-module -github.com/elliotchance/orderedmap v1.7.1 go-module (+1 duplicate) +github.com/elliotchance/orderedmap v1.8.0 go-module (+1 duplicate) github.com/emicklei/go-restful/v3 v3.10.1 go-module github.com/fatih/color v1.18.0 go-module (+1 duplicate) github.com/felixge/httpsnoop v1.0.2 go-module @@ -288,10 +286,9 @@ github.com/fsnotify/fsnotify v1 github.com/fvbommel/sortorder v1.0.1 go-module github.com/go-jose/go-jose/v3 v3.0.3 go-module github.com/go-logr/logr v1.2.2 go-module -github.com/go-logr/logr v1.3.0 go-module (+1 duplicate) -github.com/go-logr/logr v1.4.2 go-module +github.com/go-logr/logr v1.4.2 go-module (+2 duplicates) github.com/go-logr/stdr v1.2.2 go-module (+3 duplicates) -github.com/goccy/go-json v0.10.4 go-module (+1 duplicate) +github.com/goccy/go-json v0.10.5 go-module (+1 duplicate) github.com/goccy/go-yaml v1.13.3 go-module (+1 duplicate) github.com/godbus/dbus/v5 v5.1.0 go-module (+5 duplicates) github.com/gofrs/flock v0.12.1 go-module @@ -357,7 +354,7 @@ github.com/matttproud/golang_protobuf_extensions v1 github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module github.com/miekg/dns v1.1.61 go-module github.com/miekg/pkcs11 v1.1.1 go-module -github.com/mikefarah/yq/v4 v0.0.0-20250112031739-8bf425b4d134 go-module (+1 duplicate) +github.com/mikefarah/yq/v4 v0.0.0-20250306030850-44465a83cd6f go-module (+1 duplicate) github.com/minio/sha256-simd v1.0.0 go-module (+1 duplicate) github.com/mistifyio/go-zfs/v3 v3.0.1 go-module (+1 duplicate) github.com/mitchellh/copystructure v1.2.0 go-module @@ -397,8 +394,8 @@ github.com/opencontainers/go-digest v1 github.com/opencontainers/image-spec v1.0.2 go-module github.com/opencontainers/image-spec v1.1.0 go-module (+5 duplicates) github.com/opencontainers/runc v1.1.0 go-module -github.com/opencontainers/runc v1.2.4-0-g6c52b3f go-module github.com/opencontainers/runc v1.2.5 go-module (+2 duplicates) +github.com/opencontainers/runc v1.2.5-0-g59923ef go-module github.com/opencontainers/runtime-spec v1.1.0 go-module (+4 duplicates) github.com/opencontainers/runtime-spec v1.2.0 go-module (+1 duplicate) github.com/opencontainers/runtime-spec v1.2.1 go-module (+3 duplicates) @@ -439,8 +436,8 @@ github.com/sirupsen/logrus v1 github.com/spdx/tools-golang v0.5.3 go-module github.com/spf13/cobra v1.4.0 go-module github.com/spf13/cobra v1.8.1 go-module (+2 duplicates) -github.com/spf13/pflag v1.0.5 go-module (+3 duplicates) -github.com/spf13/pflag v1.0.6 go-module +github.com/spf13/pflag v1.0.5 go-module (+1 duplicate) +github.com/spf13/pflag v1.0.6 go-module (+2 duplicates) github.com/stefanberger/go-pkcs11uri v0.0.0-20230803200340-78284954bff6 go-module github.com/stretchr/testify v1.10.0 go-module github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module (+6 duplicates) @@ -531,10 +528,9 @@ golang.org/x/mod v0 golang.org/x/mod v0.20.0 go-module (+3 duplicates) golang.org/x/mod v0.22.0 go-module golang.org/x/net v0.0.0-20211216030914-fe4d6282115f go-module -golang.org/x/net v0.24.0 go-module -golang.org/x/net v0.25.0 go-module (+2 duplicates) -golang.org/x/net v0.33.0 go-module (+1 duplicate) +golang.org/x/net v0.33.0 go-module (+3 duplicates) golang.org/x/net v0.36.0 go-module (+1 duplicate) +golang.org/x/net v0.37.0 go-module (+1 duplicate) golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 go-module golang.org/x/oauth2 v0.11.0 go-module golang.org/x/oauth2 v0.27.0 go-module @@ -542,12 +538,13 @@ golang.org/x/sync v0 golang.org/x/sync v0.10.0 go-module (+4 duplicates) golang.org/x/sync v0.11.0 go-module golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module -golang.org/x/sys v0.28.0 go-module (+11 duplicates) -golang.org/x/sys v0.31.0 go-module (+1 duplicate) +golang.org/x/sys v0.28.0 go-module (+9 duplicates) +golang.org/x/sys v0.31.0 go-module (+3 duplicates) golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module golang.org/x/term v0.27.0 go-module -golang.org/x/text v0.21.0 go-module (+4 duplicates) +golang.org/x/text v0.21.0 go-module (+2 duplicates) golang.org/x/text v0.22.0 go-module +golang.org/x/text v0.23.0 go-module (+1 duplicate) golang.org/x/text v0.3.7 go-module golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 go-module @@ -894,10 +891,10 @@ ssh2 1. ssri 10.0.6 npm statuses 2.0.1 npm stdlib go1.17.9 go-module -stdlib go1.22.10 go-module (+5 duplicates) -stdlib go1.23.4 go-module (+1 duplicate) stdlib go1.23.5 go-module (+3 duplicates) +stdlib go1.23.6 go-module (+5 duplicates) stdlib go1.23.7 go-module (+2 duplicates) +stdlib go1.24.1 go-module (+1 duplicate) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) string_decoder 1.3.0 npm From 7e916802eddb61d31fafe28154b3ba4b16ea0c9e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 25 Mar 2025 21:43:39 +0000 Subject: [PATCH 319/337] Bot Updating Package Versions --- package_versions.txt | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index a9fe7e5..fdcea10 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -114,8 +114,8 @@ destroy 1. diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -docker-ce 5:28.0.2-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:28.0.2-1~ubuntu.22.04~jammy deb +docker-ce 5:28.0.4-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:28.0.4-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -200,7 +200,8 @@ github.com/cespare/xxhash/v2 v2 github.com/cespare/xxhash/v2 v2.2.0 go-module github.com/cespare/xxhash/v2 v2.3.0 go-module github.com/checkpoint-restore/go-criu/v6 v6.3.0 go-module -github.com/cilium/ebpf v0.16.0 go-module (+1 duplicate) +github.com/cilium/ebpf v0.16.0 go-module +github.com/cilium/ebpf v0.17.3 go-module github.com/cilium/ebpf v0.9.1 go-module (+3 duplicates) github.com/cloudflare/cfssl v1.6.4 go-module github.com/cnabio/cnab-go v0.10.0-beta1 go-module @@ -257,12 +258,12 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.6.0 go-module (+2 duplicates) github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v28.0.2 go-module +github.com/docker/cli/cmd/docker v28.0.4 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v28.0.2 go-module (+1 duplicate) +github.com/docker/docker v28.0.4 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -295,7 +296,7 @@ github.com/gofrs/flock v0 github.com/gofrs/flock v0.8.0 go-module github.com/gogo/googleapis v1.4.1 go-module github.com/gogo/protobuf v1.3.2 go-module (+6 duplicates) -github.com/golang-jwt/jwt/v5 v5.2.1 go-module +github.com/golang-jwt/jwt/v5 v5.2.2 go-module github.com/golang/gddo v0.0.0-20190904175337-72a348e765d2 go-module github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da go-module github.com/golang/mock v1.6.0 go-module @@ -362,7 +363,7 @@ github.com/mitchellh/hashstructure/v2 v2 github.com/mitchellh/mapstructure v1.4.3 go-module github.com/mitchellh/reflectwalk v1.0.2 go-module github.com/moby/buildkit v0.10.0-rc2.0.20220308185020-fdecd0ae108b go-module -github.com/moby/buildkit v0.20.1 go-module +github.com/moby/buildkit v0.20.2 go-module github.com/moby/docker-image-spec v1.3.1 go-module github.com/moby/ipvs v1.1.0 go-module github.com/moby/locker v1.0.1 go-module (+3 duplicates) @@ -390,18 +391,19 @@ github.com/modern-go/reflect2 v1 github.com/morikuni/aec v1.0.0 go-module (+1 duplicate) github.com/mrunalp/fileutils v0.5.1 go-module github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 go-module +github.com/opencontainers/cgroups v0.0.1 go-module github.com/opencontainers/go-digest v1.0.0 go-module (+6 duplicates) github.com/opencontainers/image-spec v1.0.2 go-module github.com/opencontainers/image-spec v1.1.0 go-module (+5 duplicates) github.com/opencontainers/runc v1.1.0 go-module -github.com/opencontainers/runc v1.2.5 go-module (+2 duplicates) +github.com/opencontainers/runc v1.2.5 go-module (+1 duplicate) github.com/opencontainers/runc v1.2.5-0-g59923ef go-module github.com/opencontainers/runtime-spec v1.1.0 go-module (+4 duplicates) github.com/opencontainers/runtime-spec v1.2.0 go-module (+1 duplicate) github.com/opencontainers/runtime-spec v1.2.1 go-module (+3 duplicates) github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module (+5 duplicates) github.com/opencontainers/selinux v1.11.0 go-module (+2 duplicates) -github.com/opencontainers/selinux v1.11.1 go-module +github.com/opencontainers/selinux v1.12.0 go-module github.com/package-url/packageurl-go v0.1.1 go-module github.com/pelletier/go-toml v1.9.4 go-module github.com/pelletier/go-toml v1.9.5 go-module (+6 duplicates) @@ -523,7 +525,6 @@ golang.org/x/crypto v0 golang.org/x/crypto v0.31.0 go-module golang.org/x/crypto v0.35.0 go-module golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 go-module -golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f go-module golang.org/x/mod v0.17.0 go-module golang.org/x/mod v0.20.0 go-module (+3 duplicates) golang.org/x/mod v0.22.0 go-module @@ -653,7 +654,7 @@ libdb5.3 5. libdebconfclient0 0.261ubuntu1 deb libdevmapper1.02.1 2:1.02.175-2.1ubuntu5 deb libedit2 3.1-20210910-1build1 deb -libelf1 0.186-1build1 deb +libelf1 0.186-1ubuntu0.1 deb libexpat1 2.4.7-1ubuntu0.5 deb libext2fs2 1.46.5-2ubuntu1.2 deb libffi8 3.4.2-4 deb From 9f1bef97c541f1f23d050554b31a12161ccc15a0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 27 Mar 2025 07:41:10 +0000 Subject: [PATCH 320/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fdcea10..2b01c59 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm @types/cors 2.8.17 npm -@types/node 22.13.13 npm +@types/node 22.13.14 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From a47073e177742877523606f4f42db7235f870a29 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 28 Mar 2025 20:42:59 +0000 Subject: [PATCH 321/337] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2b01c59..a007b12 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -92,7 +92,7 @@ content-type 1. cookie 0.7.1 npm cookie 0.7.2 npm cookie-signature 1.0.6 npm -corepack 0.29.4 npm +corepack 0.32.0 npm coreutils 8.32-4.1ubuntu1.2 deb cors 2.8.5 npm cpu-features 0.0.10 npm @@ -791,7 +791,7 @@ netcat 1. netcat-openbsd 1.218-4ubuntu1 deb node-gyp 10.1.0 npm node-pty 0.10.1 npm -nodejs 18.20.6-1nodesource1 deb +nodejs 18.20.8-1nodesource1 deb nopt 7.2.1 npm normalize-package-data 6.0.2 npm npm 10.8.2 npm From fdeac817fa280ed99b910b1e85d3c32ce49f760b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 31 Mar 2025 23:40:57 +0000 Subject: [PATCH 322/337] Bot Updating Package Versions --- package_versions.txt | 29 +++++++++++++---------------- 1 file changed, 13 insertions(+), 16 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index a007b12..020129e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -86,7 +86,7 @@ code.cloudfoundry.org/clock v1 color-convert 2.0.1 npm color-name 1.1.4 npm common-ancestor-path 1.0.1 npm -containerd.io 1.7.26-1 deb +containerd.io 1.7.27-1 deb content-disposition 0.5.4 npm content-type 1.0.5 npm cookie 0.7.1 npm @@ -216,7 +216,7 @@ github.com/containerd/cgroups/v3 v3 github.com/containerd/console v1.0.3 go-module (+5 duplicates) github.com/containerd/console v1.0.4 go-module (+1 duplicate) github.com/containerd/containerd v1.6.2 go-module -github.com/containerd/containerd v1.7.26 go-module (+4 duplicates) +github.com/containerd/containerd v1.7.27 go-module (+4 duplicates) github.com/containerd/containerd/api v1.8.0 go-module (+5 duplicates) github.com/containerd/containerd/v2 v2.0.4 go-module github.com/containerd/continuity v0.2.2 go-module @@ -320,12 +320,12 @@ github.com/grpc-ecosystem/go-grpc-prometheus v1 github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 go-module github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 go-module -github.com/hashicorp/errwrap v1.1.0 go-module (+6 duplicates) +github.com/hashicorp/errwrap v1.1.0 go-module (+1 duplicate) github.com/hashicorp/go-immutable-radix v1.3.1 go-module github.com/hashicorp/go-immutable-radix/v2 v2.1.0 go-module github.com/hashicorp/go-memdb v1.3.2 go-module github.com/hashicorp/go-msgpack v0.5.5 go-module -github.com/hashicorp/go-multierror v1.1.1 go-module (+6 duplicates) +github.com/hashicorp/go-multierror v1.1.1 go-module (+1 duplicate) github.com/hashicorp/go-sockaddr v1.0.2 go-module github.com/hashicorp/go-version v1.3.0 go-module github.com/hashicorp/golang-lru v0.5.4 go-module @@ -334,7 +334,7 @@ github.com/hashicorp/memberlist v0 github.com/hashicorp/serf v0.8.5 go-module github.com/imdario/mergo v0.3.12 go-module github.com/in-toto/in-toto-golang v0.5.0 go-module -github.com/intel/goresctrl v0.3.0 go-module (+1 duplicate) +github.com/intel/goresctrl v0.5.0 go-module (+1 duplicate) github.com/ishidawataru/sctp v0.0.0-20230406120618-7ff4192f6ff2 go-module (+1 duplicate) github.com/jinzhu/copier v0.4.0 go-module (+1 duplicate) github.com/jmoiron/sqlx v1.3.3 go-module @@ -413,17 +413,17 @@ github.com/pkg/errors v0 github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 go-module github.com/pmezard/go-difflib v1.0.0 go-module github.com/prometheus/client_golang v1.12.1 go-module -github.com/prometheus/client_golang v1.14.0 go-module +github.com/prometheus/client_golang v1.16.0 go-module github.com/prometheus/client_golang v1.20.5 go-module github.com/prometheus/client_model v0.2.0 go-module github.com/prometheus/client_model v0.3.0 go-module github.com/prometheus/client_model v0.6.1 go-module github.com/prometheus/common v0.32.1 go-module -github.com/prometheus/common v0.37.0 go-module +github.com/prometheus/common v0.42.0 go-module github.com/prometheus/common v0.55.0 go-module +github.com/prometheus/procfs v0.10.1 go-module github.com/prometheus/procfs v0.15.1 go-module github.com/prometheus/procfs v0.7.3 go-module -github.com/prometheus/procfs v0.8.0 go-module github.com/qri-io/jsonpointer v0.1.0 go-module github.com/qri-io/jsonschema v0.1.1 go-module github.com/rootless-containers/rootlesskit/v2 v2.3.4 go-module @@ -619,7 +619,7 @@ just-diff 6. just-diff-apply 5.5.0 npm k8s.io/api v0.26.2 go-module k8s.io/apimachinery v0.22.4 go-module -k8s.io/apimachinery v0.26.2 go-module (+1 duplicate) +k8s.io/apimachinery v0.27.4 go-module (+1 duplicate) k8s.io/apiserver v0.26.2 go-module k8s.io/client-go v0.22.4 go-module k8s.io/client-go v0.26.2 go-module @@ -868,7 +868,7 @@ side-channel-list 1. side-channel-map 1.0.1 npm side-channel-weakmap 1.0.2 npm signal-exit 4.1.0 npm -sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 go-module +sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd go-module sigs.k8s.io/structured-merge-diff/v4 v4.2.1 go-module sigs.k8s.io/structured-merge-diff/v4 v4.2.3 go-module sigs.k8s.io/yaml v1.2.0 go-module @@ -893,8 +893,7 @@ ssri 10 statuses 2.0.1 npm stdlib go1.17.9 go-module stdlib go1.23.5 go-module (+3 duplicates) -stdlib go1.23.6 go-module (+5 duplicates) -stdlib go1.23.7 go-module (+2 duplicates) +stdlib go1.23.7 go-module (+8 duplicates) stdlib go1.24.1 go-module (+1 duplicate) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) @@ -905,10 +904,8 @@ sudo 1. supports-color 9.4.0 npm systeminformation 5.25.11 npm sysvinit-utils 3.01-1ubuntu1 deb -tags.cncf.io/container-device-interface v0.7.2 go-module -tags.cncf.io/container-device-interface v0.8.1 go-module (+4 duplicates) -tags.cncf.io/container-device-interface/specs-go v0.7.0 go-module -tags.cncf.io/container-device-interface/specs-go v0.8.0 go-module (+4 duplicates) +tags.cncf.io/container-device-interface v0.8.1 go-module (+5 duplicates) +tags.cncf.io/container-device-interface/specs-go v0.8.0 go-module (+5 duplicates) tar 1.34+dfsg-1ubuntu0.1.22.04.2 deb tar 6.2.1 npm tar-fs 2.0.1 npm From beb8fd8d2b41f6b99edb7bfae21326ab2de59f7c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 1 Apr 2025 16:50:30 +0000 Subject: [PATCH 323/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 020129e..eec77ad 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm @types/cors 2.8.17 npm -@types/node 22.13.14 npm +@types/node 22.13.17 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From b738ad8a7ec27a16646230b4508e262a240e8a9b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 4 Apr 2025 04:48:05 +0000 Subject: [PATCH 324/337] Bot Updating Package Versions --- package_versions.txt | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index eec77ad..abc0851 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm @types/cors 2.8.17 npm -@types/node 22.13.17 npm +@types/node 22.14.0 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -113,7 +113,7 @@ depd 2. destroy 1.2.0 npm diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb -dirmngr 2.2.27-3ubuntu2.1 deb +dirmngr 2.2.27-3ubuntu2.3 deb docker-ce 5:28.0.4-1~ubuntu.22.04~jammy deb docker-ce-cli 5:28.0.4-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm @@ -473,9 +473,9 @@ github.com/yuin/gopher-lua v1 github.com/zmap/zcrypto v0.0.0-20210511125630-18f1e0152cfc go-module github.com/zmap/zlint/v3 v3.1.0 go-module glob 10.4.2 npm -gnupg 2.2.27-3ubuntu2.1 deb -gnupg-l10n 2.2.27-3ubuntu2.1 deb -gnupg-utils 2.2.27-3ubuntu2.1 deb +gnupg 2.2.27-3ubuntu2.3 deb +gnupg-l10n 2.2.27-3ubuntu2.3 deb +gnupg-utils 2.2.27-3ubuntu2.3 deb go.etcd.io/bbolt v1.3.10 go-module go.etcd.io/bbolt v1.3.11 go-module go.etcd.io/etcd/client/pkg/v3 v3.5.16 go-module @@ -569,13 +569,13 @@ gopkg.in/inf.v0 v0 gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 go-module (+1 duplicate) gopkg.in/yaml.v2 v2.4.0 go-module (+6 duplicates) gopkg.in/yaml.v3 v3.0.1 go-module (+3 duplicates) -gpg 2.2.27-3ubuntu2.1 deb -gpg-agent 2.2.27-3ubuntu2.1 deb -gpg-wks-client 2.2.27-3ubuntu2.1 deb -gpg-wks-server 2.2.27-3ubuntu2.1 deb -gpgconf 2.2.27-3ubuntu2.1 deb -gpgsm 2.2.27-3ubuntu2.1 deb -gpgv 2.2.27-3ubuntu2.1 deb +gpg 2.2.27-3ubuntu2.3 deb +gpg-agent 2.2.27-3ubuntu2.3 deb +gpg-wks-client 2.2.27-3ubuntu2.3 deb +gpg-wks-server 2.2.27-3ubuntu2.3 deb +gpgconf 2.2.27-3ubuntu2.3 deb +gpgsm 2.2.27-3ubuntu2.3 deb +gpgv 2.2.27-3ubuntu2.3 deb graceful-fs 4.2.11 npm grep 3.7-1build1 deb gzip 1.10 binary @@ -737,12 +737,12 @@ libss2 1. libssh-4 0.9.6-2ubuntu0.22.04.3 deb libssl3 3.0.2-0ubuntu1.19 deb libstdc++6 12.3.0-1ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.12 deb +libsystemd0 249.11-0ubuntu3.15 deb libtasn1-6 4.18.0-4ubuntu0.1 deb libtinfo6 6.3-2ubuntu0.1 deb libtirpc-common 1.3.2-2ubuntu0.1 deb libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.12 deb +libudev1 249.11-0ubuntu3.15 deb libunistring2 1.0-1 deb libuuid1 2.37.2-4ubuntu3.4 deb libxtables12 1.8.7-1ubuntu5.2 deb @@ -917,10 +917,10 @@ treeverse 3. tuf-js 2.2.1 npm tweetnacl 0.14.5 npm type-is 1.6.18 npm -tzdata 2024b-0ubuntu0.22.04.1 deb +tzdata 2025a-0ubuntu0.22.04 deb ubuntu-keyring 2021.03.26 deb uidmap 1:4.8.1-2ubuntu2.2 deb -undici-types 6.20.0 npm +undici-types 6.21.0 npm unique-filename 3.0.0 npm unique-slug 4.0.0 npm unpipe 1.0.0 npm From e5bd06eb7eb037ddde825e6a1b7ae8e93f1c2634 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 8 Apr 2025 21:45:19 +0000 Subject: [PATCH 325/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index abc0851..21b793f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -655,7 +655,7 @@ libdebconfclient0 0. libdevmapper1.02.1 2:1.02.175-2.1ubuntu5 deb libedit2 3.1-20210910-1build1 deb libelf1 0.186-1ubuntu0.1 deb -libexpat1 2.4.7-1ubuntu0.5 deb +libexpat1 2.4.7-1ubuntu0.6 deb libext2fs2 1.46.5-2ubuntu1.2 deb libffi8 3.4.2-4 deb libfuse3-3 3.10.5-1build1 deb From 101b6b05e09914acc10eb9998d883caecbe6f2c3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 10 Apr 2025 22:45:17 +0000 Subject: [PATCH 326/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 21b793f..5d5885c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -917,7 +917,7 @@ treeverse 3. tuf-js 2.2.1 npm tweetnacl 0.14.5 npm type-is 1.6.18 npm -tzdata 2025a-0ubuntu0.22.04 deb +tzdata 2025b-0ubuntu0.22.04 deb ubuntu-keyring 2021.03.26 deb uidmap 1:4.8.1-2ubuntu2.2 deb undici-types 6.21.0 npm From c3f1b9112942ff89ada5352fdc6437cf923f01d3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 15 Apr 2025 17:44:24 +0000 Subject: [PATCH 327/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5d5885c..60c1102 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm @types/cors 2.8.17 npm -@types/node 22.14.0 npm +@types/node 22.14.1 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From 84147b0435992bcb0e6fc37d2f9fb50f85f43612 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 16 Apr 2025 06:51:55 +0000 Subject: [PATCH 328/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 60c1102..e725459 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -822,7 +822,7 @@ passwd 1: path-key 3.1.1 npm path-scurry 1.11.1 npm path-to-regexp 0.1.12 npm -perl-base 5.34.0-3ubuntu1.3 deb +perl-base 5.34.0-3ubuntu1.4 deb pigz 2.6-1 deb pinentry-curses 1.1.1-1build2 deb postcss-selector-parser 6.1.0 npm From d7bd84aacb17a136de5da42690aa34f7766bf51b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 22 Apr 2025 21:45:03 +0000 Subject: [PATCH 329/337] Bot Updating Package Versions --- package_versions.txt | 56 ++++++++++++++++++++++++++------------------ 1 file changed, 33 insertions(+), 23 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e725459..b3f69fc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -114,8 +114,8 @@ destroy 1. diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.3 deb -docker-ce 5:28.0.4-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:28.0.4-1~ubuntu.22.04~jammy deb +docker-ce 5:28.1.1-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:28.1.1-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -218,7 +218,7 @@ github.com/containerd/console v1 github.com/containerd/containerd v1.6.2 go-module github.com/containerd/containerd v1.7.27 go-module (+4 duplicates) github.com/containerd/containerd/api v1.8.0 go-module (+5 duplicates) -github.com/containerd/containerd/v2 v2.0.4 go-module +github.com/containerd/containerd/v2 v2.0.5 go-module github.com/containerd/continuity v0.2.2 go-module github.com/containerd/continuity v0.4.4 go-module (+4 duplicates) github.com/containerd/continuity v0.4.5 go-module @@ -258,12 +258,12 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.6.0 go-module (+2 duplicates) github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v28.0.4 go-module +github.com/docker/cli/cmd/docker v28.1.1 go-module github.com/docker/compose/v2 v2.5.0 go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v28.0.4 go-module (+1 duplicate) +github.com/docker/docker v28.1.1 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -305,7 +305,8 @@ github.com/golang/protobuf v1 github.com/google/btree v1.1.2 go-module github.com/google/certificate-transparency-go v1.1.4 go-module github.com/google/go-cmp v0.5.7 go-module -github.com/google/go-cmp v0.6.0 go-module (+5 duplicates) +github.com/google/go-cmp v0.6.0 go-module (+4 duplicates) +github.com/google/go-cmp v0.7.0 go-module github.com/google/gofuzz v1.2.0 go-module (+1 duplicate) github.com/google/s2a-go v0.1.7 go-module github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module (+1 duplicate) @@ -342,7 +343,7 @@ github.com/json-iterator/go v1 github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module github.com/klauspost/compress v1.15.0 go-module github.com/klauspost/compress v1.16.7 go-module (+3 duplicates) -github.com/klauspost/compress v1.17.11 go-module +github.com/klauspost/compress v1.18.0 go-module github.com/klauspost/cpuid/v2 v2.0.4 go-module (+1 duplicate) github.com/magiconair/properties v1.8.9 go-module (+1 duplicate) github.com/mattn/go-colorable v0.1.12 go-module @@ -363,14 +364,16 @@ github.com/mitchellh/hashstructure/v2 v2 github.com/mitchellh/mapstructure v1.4.3 go-module github.com/mitchellh/reflectwalk v1.0.2 go-module github.com/moby/buildkit v0.10.0-rc2.0.20220308185020-fdecd0ae108b go-module -github.com/moby/buildkit v0.20.2 go-module +github.com/moby/buildkit v0.21.0 go-module github.com/moby/docker-image-spec v1.3.1 go-module +github.com/moby/go-archive v0.1.0 go-module github.com/moby/ipvs v1.1.0 go-module github.com/moby/locker v1.0.1 go-module (+3 duplicates) github.com/moby/patternmatcher v0.6.0 go-module github.com/moby/pubsub v1.0.0 go-module github.com/moby/spdystream v0.2.0 go-module github.com/moby/swarmkit/v2 v2.0.0-20250103191802-8c1959736554 go-module +github.com/moby/sys/atomicwriter v0.1.0 go-module github.com/moby/sys/mount v0.3.4 go-module github.com/moby/sys/mountinfo v0.6.2 go-module (+4 duplicates) github.com/moby/sys/mountinfo v0.7.1 go-module @@ -382,7 +385,8 @@ github.com/moby/sys/signal v0 github.com/moby/sys/signal v0.7.1 go-module github.com/moby/sys/symlink v0.2.0 go-module (+1 duplicate) github.com/moby/sys/symlink v0.3.0 go-module (+2 duplicates) -github.com/moby/sys/user v0.3.0 go-module (+5 duplicates) +github.com/moby/sys/user v0.3.0 go-module (+4 duplicates) +github.com/moby/sys/user v0.4.0 go-module github.com/moby/sys/userns v0.1.0 go-module (+6 duplicates) github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 go-module github.com/moby/term v0.5.2 go-module @@ -394,7 +398,8 @@ github.com/munnerz/goautoneg v0 github.com/opencontainers/cgroups v0.0.1 go-module github.com/opencontainers/go-digest v1.0.0 go-module (+6 duplicates) github.com/opencontainers/image-spec v1.0.2 go-module -github.com/opencontainers/image-spec v1.1.0 go-module (+5 duplicates) +github.com/opencontainers/image-spec v1.1.0 go-module (+4 duplicates) +github.com/opencontainers/image-spec v1.1.1 go-module github.com/opencontainers/runc v1.1.0 go-module github.com/opencontainers/runc v1.2.5 go-module (+1 duplicate) github.com/opencontainers/runc v1.2.5-0-g59923ef go-module @@ -446,9 +451,9 @@ github.com/syndtr/gocapability v0 github.com/tchap/go-patricia/v2 v2.3.1 go-module github.com/theupdateframework/notary v0.6.1 go-module github.com/tinylib/msgp v1.1.8 go-module -github.com/tonistiigi/dchapes-mode v0.0.0-20241001053921-ca0759fec205 go-module +github.com/tonistiigi/dchapes-mode v0.0.0-20250318174251-73d941a28323 go-module github.com/tonistiigi/fsutil v0.0.0-20220315205639-9ed612626da3 go-module -github.com/tonistiigi/fsutil v0.0.0-20250113203817-b14e27f4135a go-module +github.com/tonistiigi/fsutil v0.0.0-20250410151801-5b74a7ad7583 go-module github.com/tonistiigi/go-actions-cache v0.0.0-20250228231703-3e9a6642607f go-module github.com/tonistiigi/go-archvariant v1.0.0 go-module github.com/tonistiigi/go-csvvalue v0.0.0-20240710180619-ddb21b71c0b4 go-module @@ -492,6 +497,7 @@ go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0 go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.29.0 go-module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 go-module (+1 duplicate) go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.56.0 go-module +go.opentelemetry.io/contrib/processors/baggagecopy v0.4.0 go-module go.opentelemetry.io/otel v1.21.0 go-module (+1 duplicate) go.opentelemetry.io/otel v1.31.0 go-module go.opentelemetry.io/otel v1.4.1 go-module @@ -523,33 +529,34 @@ go.uber.org/multierr v1 go.uber.org/zap v1.21.0 go-module golang.org/x/crypto v0.0.0-20211202192323-5770296d904e go-module golang.org/x/crypto v0.31.0 go-module -golang.org/x/crypto v0.35.0 go-module +golang.org/x/crypto v0.37.0 go-module golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 go-module golang.org/x/mod v0.17.0 go-module golang.org/x/mod v0.20.0 go-module (+3 duplicates) -golang.org/x/mod v0.22.0 go-module +golang.org/x/mod v0.24.0 go-module golang.org/x/net v0.0.0-20211216030914-fe4d6282115f go-module golang.org/x/net v0.33.0 go-module (+3 duplicates) -golang.org/x/net v0.36.0 go-module (+1 duplicate) golang.org/x/net v0.37.0 go-module (+1 duplicate) +golang.org/x/net v0.39.0 go-module (+1 duplicate) golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 go-module golang.org/x/oauth2 v0.11.0 go-module -golang.org/x/oauth2 v0.27.0 go-module +golang.org/x/oauth2 v0.29.0 go-module golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go-module golang.org/x/sync v0.10.0 go-module (+4 duplicates) -golang.org/x/sync v0.11.0 go-module +golang.org/x/sync v0.13.0 go-module golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module golang.org/x/sys v0.28.0 go-module (+9 duplicates) -golang.org/x/sys v0.31.0 go-module (+3 duplicates) +golang.org/x/sys v0.31.0 go-module (+1 duplicate) +golang.org/x/sys v0.32.0 go-module (+1 duplicate) golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module golang.org/x/term v0.27.0 go-module golang.org/x/text v0.21.0 go-module (+2 duplicates) -golang.org/x/text v0.22.0 go-module golang.org/x/text v0.23.0 go-module (+1 duplicate) +golang.org/x/text v0.24.0 go-module golang.org/x/text v0.3.7 go-module golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 go-module -golang.org/x/time v0.6.0 go-module +golang.org/x/time v0.11.0 go-module google.golang.org/api v0.155.0 go-module google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa go-module google.golang.org/genproto v0.0.0-20231211222908-989df2bf70f3 go-module (+4 duplicates) @@ -893,7 +900,8 @@ ssri 10 statuses 2.0.1 npm stdlib go1.17.9 go-module stdlib go1.23.5 go-module (+3 duplicates) -stdlib go1.23.7 go-module (+8 duplicates) +stdlib go1.23.7 go-module (+5 duplicates) +stdlib go1.23.8 go-module (+2 duplicates) stdlib go1.24.1 go-module (+1 duplicate) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) @@ -904,8 +912,10 @@ sudo 1. supports-color 9.4.0 npm systeminformation 5.25.11 npm sysvinit-utils 3.01-1ubuntu1 deb -tags.cncf.io/container-device-interface v0.8.1 go-module (+5 duplicates) -tags.cncf.io/container-device-interface/specs-go v0.8.0 go-module (+5 duplicates) +tags.cncf.io/container-device-interface v0.8.1 go-module (+4 duplicates) +tags.cncf.io/container-device-interface v1.0.1 go-module +tags.cncf.io/container-device-interface/specs-go v0.8.0 go-module (+4 duplicates) +tags.cncf.io/container-device-interface/specs-go v1.0.0 go-module tar 1.34+dfsg-1ubuntu0.1.22.04.2 deb tar 6.2.1 npm tar-fs 2.0.1 npm From 913f8d590e0a52c27e9eba7724fa374a5ccdf961 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 24 Apr 2025 22:45:42 +0000 Subject: [PATCH 330/337] Bot Updating Package Versions --- package_versions.txt | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b3f69fc..8acda02 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm @types/cors 2.8.17 npm -@types/node 22.14.1 npm +@types/node 22.15.0 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -166,7 +166,7 @@ github.com/Microsoft/hcsshim v0 github.com/Microsoft/hcsshim v0.12.9 go-module github.com/NVIDIA/go-nvlib v0.6.1 go-module (+3 duplicates) github.com/NVIDIA/go-nvml v0.12.4-1 go-module (+3 duplicates) -github.com/NVIDIA/nvidia-container-toolkit v1.17.5 go-module (+3 duplicates) +github.com/NVIDIA/nvidia-container-toolkit v1.17.6 go-module (+3 duplicates) github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module github.com/a8m/envsubst v1.4.2 go-module (+1 duplicate) github.com/agext/levenshtein v1.2.3 go-module @@ -401,8 +401,8 @@ github.com/opencontainers/image-spec v1 github.com/opencontainers/image-spec v1.1.0 go-module (+4 duplicates) github.com/opencontainers/image-spec v1.1.1 go-module github.com/opencontainers/runc v1.1.0 go-module -github.com/opencontainers/runc v1.2.5 go-module (+1 duplicate) github.com/opencontainers/runc v1.2.5-0-g59923ef go-module +github.com/opencontainers/runc v1.2.6 go-module (+1 duplicate) github.com/opencontainers/runtime-spec v1.1.0 go-module (+4 duplicates) github.com/opencontainers/runtime-spec v1.2.0 go-module (+1 duplicate) github.com/opencontainers/runtime-spec v1.2.1 go-module (+3 duplicates) @@ -713,8 +713,8 @@ libnpmteam 6. libnpmversion 6.0.3 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.17.5-1 deb -libnvidia-container1 1.17.5-1 deb +libnvidia-container-tools 1.17.6-1 deb +libnvidia-container1 1.17.6-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.5 deb @@ -812,8 +812,8 @@ npm-pick-manifest 9. npm-profile 10.0.0 npm npm-registry-fetch 17.1.0 npm npm-user-validate 2.0.1 npm -nvidia-container-toolkit 1.17.5-1 deb -nvidia-container-toolkit-base 1.17.5-1 deb +nvidia-container-toolkit 1.17.6-1 deb +nvidia-container-toolkit-base 1.17.6-1 deb nvidia-docker2 2.14.0-1 deb object-assign 4.1.1 npm object-inspect 1.13.4 npm @@ -899,9 +899,8 @@ ssh2 1. ssri 10.0.6 npm statuses 2.0.1 npm stdlib go1.17.9 go-module -stdlib go1.23.5 go-module (+3 duplicates) stdlib go1.23.7 go-module (+5 duplicates) -stdlib go1.23.8 go-module (+2 duplicates) +stdlib go1.23.8 go-module (+6 duplicates) stdlib go1.24.1 go-module (+1 duplicate) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) From bb36e87fef26b6af86bb3b4bb12e7f99d9c867f5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 29 Apr 2025 21:47:07 +0000 Subject: [PATCH 331/337] Bot Updating Package Versions --- package_versions.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8acda02..5492d4b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm @types/cors 2.8.17 npm -@types/node 22.15.0 npm +@types/node 22.15.3 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -54,7 +54,6 @@ base-passwd 3. base64-js 1.5.1 npm base64id 2.0.0 npm bash 5.1-6ubuntu1.1 deb -bash 5.1.16 binary bcrypt-pbkdf 1.0.2 npm bin-links 4.0.4 npm binary-extensions 2.3.0 npm @@ -585,7 +584,6 @@ gpgsm 2. gpgv 2.2.27-3ubuntu2.3 deb graceful-fs 4.2.11 npm grep 3.7-1build1 deb -gzip 1.10 binary gzip 1.10-4ubuntu4.1 deb has-symbols 1.1.0 npm hasown 2.0.2 npm From 693b8bd137386a24a12f0bc16aaff2f3618dd839 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 6 May 2025 21:45:24 +0000 Subject: [PATCH 332/337] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5492d4b..99d1788 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm @types/cors 2.8.17 npm -@types/node 22.15.3 npm +@types/node 22.15.14 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb From ab8968f2bb6e7c1c1a9bec1705f4f0e73d1e3c48 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 13 May 2025 21:45:09 +0000 Subject: [PATCH 333/337] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 99d1788..097cada 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -29,8 +29,8 @@ NAME VE @socket.io/component-emitter UNKNOWN npm (+1 duplicate) @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm -@types/cors 2.8.17 npm -@types/node 22.15.14 npm +@types/cors 2.8.18 npm +@types/node 22.15.17 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -107,7 +107,7 @@ debianutils 5. debug 2.6.9 npm (+3 duplicates) debug 4.3.5 npm debug 4.3.7 npm (+3 duplicates) -debug 4.4.0 npm +debug 4.4.1 npm depd 2.0.0 npm destroy 1.2.0 npm diff 5.2.0 npm From afa4a7caeb45ac93f775d6315dc9d41cace1ee11 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 18 May 2025 04:07:22 +0000 Subject: [PATCH 334/337] Bot Updating Package Versions --- package_versions.txt | 44 +++++++++++++++++++++----------------------- 1 file changed, 21 insertions(+), 23 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 097cada..32e0c6e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm @types/cors 2.8.18 npm -@types/node 22.15.17 npm +@types/node 22.15.18 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -163,14 +163,14 @@ github.com/Graylog2/go-gelf v0 github.com/Masterminds/semver v1.5.0 go-module github.com/Microsoft/hcsshim v0.11.7 go-module (+1 duplicate) github.com/Microsoft/hcsshim v0.12.9 go-module -github.com/NVIDIA/go-nvlib v0.6.1 go-module (+3 duplicates) +github.com/NVIDIA/go-nvlib v0.7.2 go-module (+3 duplicates) github.com/NVIDIA/go-nvml v0.12.4-1 go-module (+3 duplicates) -github.com/NVIDIA/nvidia-container-toolkit v1.17.6 go-module (+3 duplicates) +github.com/NVIDIA/nvidia-container-toolkit v1.17.7 go-module (+3 duplicates) github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module github.com/a8m/envsubst v1.4.2 go-module (+1 duplicate) github.com/agext/levenshtein v1.2.3 go-module github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412 go-module -github.com/alecthomas/participle/v2 v2.1.1 go-module (+1 duplicate) +github.com/alecthomas/participle/v2 v2.1.4 go-module (+1 duplicate) github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092 go-module github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 go-module github.com/armon/go-metrics v0.4.1 go-module @@ -257,8 +257,8 @@ github.com/distribution/distribution/v3 v3 github.com/distribution/reference v0.6.0 go-module (+2 duplicates) github.com/docker/buildx v0.8.1 go-module github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible go-module -github.com/docker/cli/cmd/docker v28.1.1 go-module -github.com/docker/compose/v2 v2.5.0 go-module +github.com/docker/cli/cmd/docker UNKNOWN go-module +github.com/docker/compose/v2 UNKNOWN go-module github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module @@ -355,7 +355,7 @@ github.com/matttproud/golang_protobuf_extensions v1 github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module github.com/miekg/dns v1.1.61 go-module github.com/miekg/pkcs11 v1.1.1 go-module -github.com/mikefarah/yq/v4 v0.0.0-20250306030850-44465a83cd6f go-module (+1 duplicate) +github.com/mikefarah/yq/v4 v0.0.0-20250410031946-f00e28295f0c go-module (+1 duplicate) github.com/minio/sha256-simd v1.0.0 go-module (+1 duplicate) github.com/mistifyio/go-zfs/v3 v3.0.1 go-module (+1 duplicate) github.com/mitchellh/copystructure v1.2.0 go-module @@ -377,7 +377,7 @@ github.com/moby/sys/mount v0 github.com/moby/sys/mountinfo v0.6.2 go-module (+4 duplicates) github.com/moby/sys/mountinfo v0.7.1 go-module github.com/moby/sys/mountinfo v0.7.2 go-module -github.com/moby/sys/reexec v0.1.0 go-module +github.com/moby/sys/reexec v0.1.0 go-module (+2 duplicates) github.com/moby/sys/sequential v0.6.0 go-module github.com/moby/sys/signal v0.6.0 go-module github.com/moby/sys/signal v0.7.0 go-module (+1 duplicate) @@ -399,8 +399,8 @@ github.com/opencontainers/go-digest v1 github.com/opencontainers/image-spec v1.0.2 go-module github.com/opencontainers/image-spec v1.1.0 go-module (+4 duplicates) github.com/opencontainers/image-spec v1.1.1 go-module +github.com/opencontainers/runc v0.0.0-20250213225849-59923ef18c98 go-module github.com/opencontainers/runc v1.1.0 go-module -github.com/opencontainers/runc v1.2.5-0-g59923ef go-module github.com/opencontainers/runc v1.2.6 go-module (+1 duplicate) github.com/opencontainers/runtime-spec v1.1.0 go-module (+4 duplicates) github.com/opencontainers/runtime-spec v1.2.0 go-module (+1 duplicate) @@ -535,8 +535,7 @@ golang.org/x/mod v0 golang.org/x/mod v0.24.0 go-module golang.org/x/net v0.0.0-20211216030914-fe4d6282115f go-module golang.org/x/net v0.33.0 go-module (+3 duplicates) -golang.org/x/net v0.37.0 go-module (+1 duplicate) -golang.org/x/net v0.39.0 go-module (+1 duplicate) +golang.org/x/net v0.39.0 go-module (+3 duplicates) golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 go-module golang.org/x/oauth2 v0.11.0 go-module golang.org/x/oauth2 v0.29.0 go-module @@ -545,13 +544,11 @@ golang.org/x/sync v0 golang.org/x/sync v0.13.0 go-module golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 go-module golang.org/x/sys v0.28.0 go-module (+9 duplicates) -golang.org/x/sys v0.31.0 go-module (+1 duplicate) -golang.org/x/sys v0.32.0 go-module (+1 duplicate) +golang.org/x/sys v0.32.0 go-module (+3 duplicates) golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b go-module golang.org/x/term v0.27.0 go-module golang.org/x/text v0.21.0 go-module (+2 duplicates) -golang.org/x/text v0.23.0 go-module (+1 duplicate) -golang.org/x/text v0.24.0 go-module +golang.org/x/text v0.24.0 go-module (+2 duplicates) golang.org/x/text v0.3.7 go-module golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 go-module @@ -682,8 +679,8 @@ libkeyutils1 1. libkrb5-3 1.19.2-2ubuntu0.6 deb libkrb5support0 1.19.2-2ubuntu0.6 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.18+dfsg-0ubuntu0.22.04.3 deb -libldap-common 2.5.18+dfsg-0ubuntu0.22.04.3 deb +libldap-2.5-0 2.5.19+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.19+dfsg-0ubuntu0.22.04.1 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb liblzo2-2 2.10-2build3 deb @@ -711,8 +708,8 @@ libnpmteam 6. libnpmversion 6.0.3 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.17.6-1 deb -libnvidia-container1 1.17.6-1 deb +libnvidia-container-tools 1.17.7-1 deb +libnvidia-container1 1.17.7-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.5 deb @@ -810,8 +807,8 @@ npm-pick-manifest 9. npm-profile 10.0.0 npm npm-registry-fetch 17.1.0 npm npm-user-validate 2.0.1 npm -nvidia-container-toolkit 1.17.6-1 deb -nvidia-container-toolkit-base 1.17.6-1 deb +nvidia-container-toolkit 1.17.7-1 deb +nvidia-container-toolkit-base 1.17.7-1 deb nvidia-docker2 2.14.0-1 deb object-assign 4.1.1 npm object-inspect 1.13.4 npm @@ -898,8 +895,9 @@ ssri 10 statuses 2.0.1 npm stdlib go1.17.9 go-module stdlib go1.23.7 go-module (+5 duplicates) -stdlib go1.23.8 go-module (+6 duplicates) -stdlib go1.24.1 go-module (+1 duplicate) +stdlib go1.23.8 go-module (+2 duplicates) +stdlib go1.23.9 go-module (+3 duplicates) +stdlib go1.24.2 go-module (+1 duplicate) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) string_decoder 1.3.0 npm From 5f26b2ec0deaee52b9096a87b30c189d3e1ff4d8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 20 May 2025 21:45:51 +0000 Subject: [PATCH 335/337] Bot Updating Package Versions --- package_versions.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 32e0c6e..7d30b04 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm @types/cors 2.8.18 npm -@types/node 22.15.18 npm +@types/node 22.15.20 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -818,6 +818,7 @@ openssl 3. p-map 4.0.0 npm package-json-from-dist 1.0.0 npm pacote 18.0.6 npm +pagent UNKNOWN binary parse-conflict-json 3.0.1 npm parseurl 1.3.3 npm passwd 1:4.8.1-2ubuntu2.2 deb From 9df13a83efb4a22e4aa959cebea435dfaae0cf09 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 29 May 2025 05:52:42 +0000 Subject: [PATCH 336/337] Bot Updating Package Versions --- package_versions.txt | 39 +++++++++++++++++++++------------------ 1 file changed, 21 insertions(+), 18 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 7d30b04..fce5e76 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm @types/cors 2.8.18 npm -@types/node 22.15.20 npm +@types/node 22.15.24 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -42,7 +42,7 @@ ansi-styles 4. ansi-styles 6.2.1 npm aproba 2.0.0 npm apt 2.4.13 deb -apt-transport-https 2.4.13 deb +apt-transport-https 2.4.14 deb apt-utils 2.4.13 deb archy 1.0.0 npm argparse 2.0.1 npm @@ -113,8 +113,8 @@ destroy 1. diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.3 deb -docker-ce 5:28.1.1-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:28.1.1-1~ubuntu.22.04~jammy deb +docker-ce 5:28.2.1-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:28.2.1-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -207,6 +207,7 @@ github.com/cnabio/cnab-go v0 github.com/cnabio/cnab-to-oci v0.3.1-beta1 go-module github.com/compose-spec/compose-go v1.2.4 go-module github.com/container-storage-interface/spec v1.5.0 go-module +github.com/containerd/accelerated-container-image v1.3.0 go-module github.com/containerd/aufs v1.0.0 go-module github.com/containerd/btrfs/v2 v2.0.0 go-module github.com/containerd/cgroups v1.1.0 go-module (+1 duplicate) @@ -216,7 +217,8 @@ github.com/containerd/console v1 github.com/containerd/console v1.0.4 go-module (+1 duplicate) github.com/containerd/containerd v1.6.2 go-module github.com/containerd/containerd v1.7.27 go-module (+4 duplicates) -github.com/containerd/containerd/api v1.8.0 go-module (+5 duplicates) +github.com/containerd/containerd/api v1.8.0 go-module (+4 duplicates) +github.com/containerd/containerd/api v1.9.0 go-module github.com/containerd/containerd/v2 v2.0.5 go-module github.com/containerd/continuity v0.2.2 go-module github.com/containerd/continuity v0.4.4 go-module (+4 duplicates) @@ -262,7 +264,7 @@ github.com/docker/compose/v2 UN github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v28.1.1 go-module (+1 duplicate) +github.com/docker/docker v28.2.1 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -363,7 +365,7 @@ github.com/mitchellh/hashstructure/v2 v2 github.com/mitchellh/mapstructure v1.4.3 go-module github.com/mitchellh/reflectwalk v1.0.2 go-module github.com/moby/buildkit v0.10.0-rc2.0.20220308185020-fdecd0ae108b go-module -github.com/moby/buildkit v0.21.0 go-module +github.com/moby/buildkit v0.22.0 go-module github.com/moby/docker-image-spec v1.3.1 go-module github.com/moby/go-archive v0.1.0 go-module github.com/moby/ipvs v1.1.0 go-module @@ -394,7 +396,7 @@ github.com/modern-go/reflect2 v1 github.com/morikuni/aec v1.0.0 go-module (+1 duplicate) github.com/mrunalp/fileutils v0.5.1 go-module github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 go-module -github.com/opencontainers/cgroups v0.0.1 go-module +github.com/opencontainers/cgroups v0.0.2 go-module github.com/opencontainers/go-digest v1.0.0 go-module (+6 duplicates) github.com/opencontainers/image-spec v1.0.2 go-module github.com/opencontainers/image-spec v1.1.0 go-module (+4 duplicates) @@ -403,8 +405,8 @@ github.com/opencontainers/runc v0 github.com/opencontainers/runc v1.1.0 go-module github.com/opencontainers/runc v1.2.6 go-module (+1 duplicate) github.com/opencontainers/runtime-spec v1.1.0 go-module (+4 duplicates) -github.com/opencontainers/runtime-spec v1.2.0 go-module (+1 duplicate) -github.com/opencontainers/runtime-spec v1.2.1 go-module (+3 duplicates) +github.com/opencontainers/runtime-spec v1.2.0 go-module +github.com/opencontainers/runtime-spec v1.2.1 go-module (+4 duplicates) github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module (+5 duplicates) github.com/opencontainers/selinux v1.11.0 go-module (+2 duplicates) github.com/opencontainers/selinux v1.12.0 go-module @@ -441,7 +443,8 @@ github.com/sirupsen/logrus v1 github.com/sirupsen/logrus v1.9.3 go-module (+11 duplicates) github.com/spdx/tools-golang v0.5.3 go-module github.com/spf13/cobra v1.4.0 go-module -github.com/spf13/cobra v1.8.1 go-module (+2 duplicates) +github.com/spf13/cobra v1.8.1 go-module (+1 duplicate) +github.com/spf13/cobra v1.9.1 go-module github.com/spf13/pflag v1.0.5 go-module (+1 duplicate) github.com/spf13/pflag v1.0.6 go-module (+2 duplicates) github.com/stefanberger/go-pkcs11uri v0.0.0-20230803200340-78284954bff6 go-module @@ -452,7 +455,7 @@ github.com/theupdateframework/notary v0 github.com/tinylib/msgp v1.1.8 go-module github.com/tonistiigi/dchapes-mode v0.0.0-20250318174251-73d941a28323 go-module github.com/tonistiigi/fsutil v0.0.0-20220315205639-9ed612626da3 go-module -github.com/tonistiigi/fsutil v0.0.0-20250410151801-5b74a7ad7583 go-module +github.com/tonistiigi/fsutil v0.0.0-20250417144416-3f76f8130144 go-module github.com/tonistiigi/go-actions-cache v0.0.0-20250228231703-3e9a6642607f go-module github.com/tonistiigi/go-archvariant v1.0.0 go-module github.com/tonistiigi/go-csvvalue v0.0.0-20240710180619-ddb21b71c0b4 go-module @@ -461,10 +464,10 @@ github.com/tonistiigi/vt100 v0 github.com/urfave/cli v1.22.12 go-module (+1 duplicate) github.com/urfave/cli v1.22.14 go-module github.com/urfave/cli/v2 v2.27.5 go-module (+1 duplicate) -github.com/vbatts/tar-split v0.11.6 go-module +github.com/vbatts/tar-split v0.12.1 go-module github.com/vishvananda/netlink v1.1.0 go-module github.com/vishvananda/netlink v1.2.1-beta.2 go-module -github.com/vishvananda/netlink v1.3.1-0.20250209162617-655392bc778a go-module +github.com/vishvananda/netlink v1.3.1 go-module github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df go-module github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f go-module github.com/vishvananda/netns v0.0.5 go-module @@ -645,7 +648,7 @@ libbrotli1 1. libbsd0 0.11.5-1 deb libbz2-1.0 1.0.8-5build1 deb libc-bin 2.35-0ubuntu3.9 deb -libc6 2.35-0ubuntu3.9 deb +libc6 2.35-0ubuntu3.10 deb libcap-ng0 0.7.9-2.2build3 deb libcap2 1:2.44-1ubuntu0.22.04.2 deb libcap2-bin 1:2.44-1ubuntu0.22.04.2 deb @@ -734,7 +737,7 @@ libsemanage-common 3. libsemanage2 3.3-1build2 deb libsepol2 3.3-1build1 deb libsmartcols1 2.37.2-4ubuntu3.4 deb -libsqlite3-0 3.37.2-2ubuntu0.3 deb +libsqlite3-0 3.37.2-2ubuntu0.4 deb libss2 1.46.5-2ubuntu1.2 deb libssh-4 0.9.6-2ubuntu0.22.04.3 deb libssl3 3.0.2-0ubuntu1.19 deb @@ -896,9 +899,9 @@ ssri 10 statuses 2.0.1 npm stdlib go1.17.9 go-module stdlib go1.23.7 go-module (+5 duplicates) -stdlib go1.23.8 go-module (+2 duplicates) stdlib go1.23.9 go-module (+3 duplicates) stdlib go1.24.2 go-module (+1 duplicate) +stdlib go1.24.3 go-module (+2 duplicates) string-width 4.2.3 npm (+1 duplicate) string-width 5.1.2 npm (+1 duplicate) string_decoder 1.3.0 npm @@ -906,7 +909,7 @@ strip-ansi 6. strip-ansi 7.1.0 npm (+1 duplicate) sudo 1.9.9-1ubuntu2.4 deb supports-color 9.4.0 npm -systeminformation 5.25.11 npm +systeminformation 5.27.1 npm sysvinit-utils 3.01-1ubuntu1 deb tags.cncf.io/container-device-interface v0.8.1 go-module (+4 duplicates) tags.cncf.io/container-device-interface v1.0.1 go-module From d7a1a7f8c7a6a81ed4f76f1fc9024e5ab517409f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 3 Jun 2025 21:46:09 +0000 Subject: [PATCH 337/337] Bot Updating Package Versions --- package_versions.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index fce5e76..788a5cb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,7 +30,7 @@ NAME VE @tufjs/canonical-json 2.0.0 npm @tufjs/models 2.0.1 npm @types/cors 2.8.18 npm -@types/node 22.15.24 npm +@types/node 22.15.29 npm abbrev 2.0.0 npm accepts 1.3.8 npm adduser 3.118ubuntu5 deb @@ -113,8 +113,8 @@ destroy 1. diff 5.2.0 npm diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.3 deb -docker-ce 5:28.2.1-1~ubuntu.22.04~jammy deb -docker-ce-cli 5:28.2.1-1~ubuntu.22.04~jammy deb +docker-ce 5:28.2.2-1~ubuntu.22.04~jammy deb +docker-ce-cli 5:28.2.2-1~ubuntu.22.04~jammy deb docker-modem 3.0.8 npm dockerode 3.3.5 npm dpkg 1.21.1ubuntu2.3 deb @@ -165,7 +165,7 @@ github.com/Microsoft/hcsshim v0 github.com/Microsoft/hcsshim v0.12.9 go-module github.com/NVIDIA/go-nvlib v0.7.2 go-module (+3 duplicates) github.com/NVIDIA/go-nvml v0.12.4-1 go-module (+3 duplicates) -github.com/NVIDIA/nvidia-container-toolkit v1.17.7 go-module (+3 duplicates) +github.com/NVIDIA/nvidia-container-toolkit v1.17.8 go-module (+3 duplicates) github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module github.com/a8m/envsubst v1.4.2 go-module (+1 duplicate) github.com/agext/levenshtein v1.2.3 go-module @@ -264,7 +264,7 @@ github.com/docker/compose/v2 UN github.com/docker/distribution v2.8.0+incompatible go-module github.com/docker/distribution v2.8.3+incompatible go-module github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible go-module -github.com/docker/docker v28.2.1 go-module (+1 duplicate) +github.com/docker/docker v28.2.2 go-module (+1 duplicate) github.com/docker/docker-credential-helpers v0.6.4 go-module github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module github.com/docker/go-connections v0.4.0 go-module @@ -711,8 +711,8 @@ libnpmteam 6. libnpmversion 6.0.3 npm libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb -libnvidia-container-tools 1.17.7-1 deb -libnvidia-container1 1.17.7-1 deb +libnvidia-container-tools 1.17.8-1 deb +libnvidia-container1 1.17.8-1 deb libonig5 6.9.7.1-2build1 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.5 deb @@ -810,8 +810,8 @@ npm-pick-manifest 9. npm-profile 10.0.0 npm npm-registry-fetch 17.1.0 npm npm-user-validate 2.0.1 npm -nvidia-container-toolkit 1.17.7-1 deb -nvidia-container-toolkit-base 1.17.7-1 deb +nvidia-container-toolkit 1.17.8-1 deb +nvidia-container-toolkit-base 1.17.8-1 deb nvidia-docker2 2.14.0-1 deb object-assign 4.1.1 npm object-inspect 1.13.4 npm