mirror of
https://github.com/linuxserver/docker-code-server
synced 2025-06-26 18:27:40 +00:00
Compare commits
33 Commits
4.22.1-ls2
...
4.92.2-ls2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
86227b0e2d | ||
|
|
deb7a4925c | ||
|
|
f203d3a7c1 | ||
|
|
9b20246cde | ||
|
|
9ca15d0f9d | ||
|
|
e4b105a61a | ||
|
|
218becb211 | ||
|
|
92e9eab4d5 | ||
|
|
89eb9d7478 | ||
|
|
0e9479744a | ||
|
|
8ba6ad1f09 | ||
|
|
3021ba30a7 | ||
|
|
1135a516fb | ||
|
|
a7e1890e72 | ||
|
|
64defa8774 | ||
|
|
d4a60059b5 | ||
|
|
a43c086ca2 | ||
|
|
6ee4ad2cae | ||
|
|
970ccd8ad0 | ||
|
|
7e9c990b0e | ||
|
|
b5003b3fcb | ||
|
|
d29b22e87d | ||
|
|
722941437f | ||
|
|
5a956a2027 | ||
|
|
747361b094 | ||
|
|
7100957e39 | ||
|
|
775affa6bf | ||
|
|
eaeab3349e | ||
|
|
ff420fc155 | ||
|
|
818d5ade66 | ||
|
|
1d46aa716e | ||
|
|
17570939d5 | ||
|
|
0c5f0c4a76 |
45
.github/workflows/external_trigger.yml
vendored
45
.github/workflows/external_trigger.yml
vendored
@@ -12,17 +12,20 @@ jobs:
|
|||||||
- name: External Trigger
|
- name: External Trigger
|
||||||
if: github.ref == 'refs/heads/master'
|
if: github.ref == 'refs/heads/master'
|
||||||
run: |
|
run: |
|
||||||
|
printf "# External trigger for docker-code-server\n\n" >> $GITHUB_STEP_SUMMARY
|
||||||
if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_CODE_SERVER_MASTER }}" ]; then
|
if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_CODE_SERVER_MASTER }}" ]; then
|
||||||
echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_CODE_SERVER_MASTER is set; skipping trigger. ****"
|
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
|
||||||
echo "Github secret \`PAUSE_EXTERNAL_TRIGGER_CODE_SERVER_MASTER\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY
|
echo "> Github secret \`PAUSE_EXTERNAL_TRIGGER_CODE_SERVER_MASTER\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
echo "**** External trigger running off of master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_CODE_SERVER_MASTER\". ****"
|
echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY
|
||||||
echo "External trigger running off of master branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_CODE_SERVER_MASTER\`" >> $GITHUB_STEP_SUMMARY
|
echo "> External trigger running off of master branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_CODE_SERVER_MASTER\`" >> $GITHUB_STEP_SUMMARY
|
||||||
echo "**** Retrieving external version ****"
|
printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY
|
||||||
EXT_RELEASE=$(curl -u ${{ secrets.CR_USER }}:${{ secrets.CR_PAT }} -sX GET https://api.github.com/repos/coder/code-server/releases/latest | jq -r '.tag_name' | sed 's|^v||')
|
EXT_RELEASE=$(curl -u ${{ secrets.CR_USER }}:${{ secrets.CR_PAT }} -sX GET https://api.github.com/repos/coder/code-server/releases/latest | jq -r '.tag_name' | sed 's|^v||')
|
||||||
|
echo "Type is \`custom_version_command\`" >> $GITHUB_STEP_SUMMARY
|
||||||
if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then
|
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 code-server branch master"
|
FAILURE_REASON="Can't retrieve external version for code-server branch master"
|
||||||
GHA_TRIGGER_URL="https://github.com/linuxserver/docker-code-server/actions/runs/${{ github.run_id }}"
|
GHA_TRIGGER_URL="https://github.com/linuxserver/docker-code-server/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,
|
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
|
exit 1
|
||||||
fi
|
fi
|
||||||
EXT_RELEASE=$(echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g')
|
EXT_RELEASE=$(echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g')
|
||||||
echo "**** External version: ${EXT_RELEASE} ****"
|
echo "External version: \`${EXT_RELEASE}\`" >> $GITHUB_STEP_SUMMARY
|
||||||
echo "External version: ${EXT_RELEASE}" >> $GITHUB_STEP_SUMMARY
|
echo "Retrieving last pushed version" >> $GITHUB_STEP_SUMMARY
|
||||||
echo "**** Retrieving last pushed version ****"
|
|
||||||
image="linuxserver/code-server"
|
image="linuxserver/code-server"
|
||||||
tag="latest"
|
tag="latest"
|
||||||
token=$(curl -sX GET \
|
token=$(curl -sX GET \
|
||||||
@@ -60,37 +62,34 @@ jobs:
|
|||||||
IMAGE_RELEASE=$(echo ${image_info} | jq -r '.Labels.build_version' | awk '{print $3}')
|
IMAGE_RELEASE=$(echo ${image_info} | jq -r '.Labels.build_version' | awk '{print $3}')
|
||||||
IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}')
|
IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}')
|
||||||
if [ -z "${IMAGE_VERSION}" ]; then
|
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 code-server tag latest"
|
FAILURE_REASON="Can't retrieve last pushed version for code-server tag latest"
|
||||||
curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680,
|
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"}],
|
"description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n"}],
|
||||||
"username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
|
"username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
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
|
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
|
exit 0
|
||||||
elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-code-server/job/master/lastBuild/api/json | jq -r '.building') == "true" ]; then
|
elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-code-server/job/master/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
|
exit 0
|
||||||
else
|
else
|
||||||
echo "**** New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build ****"
|
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
|
echo "New version \`${EXT_RELEASE}\` found; old version was \`${IMAGE_VERSION}\`. Triggering new build" >> $GITHUB_STEP_SUMMARY
|
||||||
response=$(curl -iX POST \
|
response=$(curl -iX POST \
|
||||||
https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-code-server/job/master/buildWithParameters?PACKAGE_CHECK=false \
|
https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-code-server/job/master/buildWithParameters?PACKAGE_CHECK=false \
|
||||||
--user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|")
|
--user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|")
|
||||||
echo "**** Jenkins job queue url: ${response%$'\r'} ****"
|
echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY
|
||||||
echo "**** Sleeping 10 seconds until job starts ****"
|
echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY
|
||||||
sleep 10
|
sleep 10
|
||||||
buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url')
|
buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url')
|
||||||
buildurl="${buildurl%$'\r'}"
|
buildurl="${buildurl%$'\r'}"
|
||||||
echo "**** Jenkins job build url: ${buildurl} ****"
|
echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY
|
||||||
echo "Jenkins job build url: ${buildurl}" >> $GITHUB_STEP_SUMMARY
|
echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY
|
||||||
echo "**** Attempting to change the Jenkins job description ****"
|
|
||||||
curl -iX POST \
|
curl -iX POST \
|
||||||
"${buildurl}submitDescription" \
|
"${buildurl}submitDescription" \
|
||||||
--user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \
|
--user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \
|
||||||
|
|||||||
24
.github/workflows/external_trigger_scheduler.yml
vendored
24
.github/workflows/external_trigger_scheduler.yml
vendored
@@ -15,31 +15,31 @@ jobs:
|
|||||||
|
|
||||||
- name: External Trigger Scheduler
|
- name: External Trigger Scheduler
|
||||||
run: |
|
run: |
|
||||||
echo "**** Branches found: ****"
|
printf "# External trigger scheduler for docker-code-server\n\n" >> $GITHUB_STEP_SUMMARY
|
||||||
git for-each-ref --format='%(refname:short)' refs/remotes
|
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:short)' refs/remotes)
|
for br in $(git for-each-ref --format='%(refname:lstrip=3)' refs/remotes)
|
||||||
do
|
do
|
||||||
br=$(echo "$br" | sed 's|origin/||g')
|
if [[ "${br}" == "HEAD" ]]; then
|
||||||
echo "**** Evaluating branch ${br} ****"
|
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-code-server/${br}/jenkins-vars.yml)
|
ls_jenkins_vars=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-code-server/${br}/jenkins-vars.yml)
|
||||||
ls_branch=$(echo "${ls_jenkins_vars}" | yq -r '.ls_branch')
|
ls_branch=$(echo "${ls_jenkins_vars}" | yq -r '.ls_branch')
|
||||||
ls_trigger=$(echo "${ls_jenkins_vars}" | yq -r '.external_type')
|
ls_trigger=$(echo "${ls_jenkins_vars}" | yq -r '.external_type')
|
||||||
if [[ "${br}" == "${ls_branch}" ]] && [[ "${ls_trigger}" != "os" ]]; then
|
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-code-server/${br}/.github/workflows/external_trigger.yml > /dev/null 2>&1; then
|
if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-code-server/${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." >> $GITHUB_STEP_SUMMARY
|
||||||
echo "Triggering external trigger workflow for branch ${br}" >> $GITHUB_STEP_SUMMARY
|
|
||||||
curl -iX POST \
|
curl -iX POST \
|
||||||
-H "Authorization: token ${{ secrets.CR_PAT }}" \
|
-H "Authorization: token ${{ secrets.CR_PAT }}" \
|
||||||
-H "Accept: application/vnd.github.v3+json" \
|
-H "Accept: application/vnd.github.v3+json" \
|
||||||
-d "{\"ref\":\"refs/heads/${br}\"}" \
|
-d "{\"ref\":\"refs/heads/${br}\"}" \
|
||||||
https://api.github.com/repos/linuxserver/docker-code-server/actions/workflows/external_trigger.yml/dispatches
|
https://api.github.com/repos/linuxserver/docker-code-server/actions/workflows/external_trigger.yml/dispatches
|
||||||
else
|
else
|
||||||
echo "**** Workflow doesn't exist; skipping trigger. ****"
|
echo "Skipping branch due to no external trigger workflow present." >> $GITHUB_STEP_SUMMARY
|
||||||
echo "Skipping branch ${br} due to no external trigger workflow present." >> $GITHUB_STEP_SUMMARY
|
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
echo "**** ${br} is either a dev branch, or has no external version; skipping trigger. ****"
|
echo "Skipping branch due to being detected as dev branch or having no external version." >> $GITHUB_STEP_SUMMARY
|
||||||
echo "Skipping branch ${br} due to being detected as dev branch or having no external version." >> $GITHUB_STEP_SUMMARY
|
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|||||||
22
.github/workflows/package_trigger.yml
vendored
22
.github/workflows/package_trigger.yml
vendored
@@ -12,29 +12,29 @@ jobs:
|
|||||||
- name: Package Trigger
|
- name: Package Trigger
|
||||||
if: github.ref == 'refs/heads/master'
|
if: github.ref == 'refs/heads/master'
|
||||||
run: |
|
run: |
|
||||||
|
printf "# Package trigger for docker-code-server\n\n" >> $GITHUB_STEP_SUMMARY
|
||||||
if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_CODE_SERVER_MASTER }}" ]; then
|
if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_CODE_SERVER_MASTER }}" ]; then
|
||||||
echo "**** Github secret PAUSE_PACKAGE_TRIGGER_CODE_SERVER_MASTER is set; skipping trigger. ****"
|
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
|
||||||
echo "Github secret \`PAUSE_PACKAGE_TRIGGER_CODE_SERVER_MASTER\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY
|
echo "> Github secret \`PAUSE_PACKAGE_TRIGGER_CODE_SERVER_MASTER\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-code-server/job/master/lastBuild/api/json | jq -r '.building') == "true" ]; then
|
if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-code-server/job/master/lastBuild/api/json | jq -r '.building') == "true" ]; then
|
||||||
echo "**** There already seems to be an active build on Jenkins; skipping package trigger ****"
|
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
|
||||||
echo "There already seems to be an active build on Jenkins; skipping package trigger" >> $GITHUB_STEP_SUMMARY
|
echo "> There already seems to be an active build on Jenkins; skipping package trigger" >> $GITHUB_STEP_SUMMARY
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
echo "**** Package trigger running off of master branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_CODE_SERVER_MASTER\". ****"
|
echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY
|
||||||
echo "Package trigger running off of master branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_CODE_SERVER_MASTER\`" >> $GITHUB_STEP_SUMMARY
|
echo "> Package trigger running off of master branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_CODE_SERVER_MASTER\`" >> $GITHUB_STEP_SUMMARY
|
||||||
response=$(curl -iX POST \
|
response=$(curl -iX POST \
|
||||||
https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-code-server/job/master/buildWithParameters?PACKAGE_CHECK=true \
|
https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-code-server/job/master/buildWithParameters?PACKAGE_CHECK=true \
|
||||||
--user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|")
|
--user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|")
|
||||||
echo "**** Jenkins job queue url: ${response%$'\r'} ****"
|
echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY
|
||||||
echo "**** Sleeping 10 seconds until job starts ****"
|
echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY
|
||||||
sleep 10
|
sleep 10
|
||||||
buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url')
|
buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url')
|
||||||
buildurl="${buildurl%$'\r'}"
|
buildurl="${buildurl%$'\r'}"
|
||||||
echo "**** Jenkins job build url: ${buildurl} ****"
|
echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY
|
||||||
echo "Jenkins job build url: ${buildurl}" >> $GITHUB_STEP_SUMMARY
|
echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY
|
||||||
echo "**** Attempting to change the Jenkins job description ****"
|
|
||||||
curl -iX POST \
|
curl -iX POST \
|
||||||
"${buildurl}submitDescription" \
|
"${buildurl}submitDescription" \
|
||||||
--user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \
|
--user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \
|
||||||
|
|||||||
18
.github/workflows/package_trigger_scheduler.yml
vendored
18
.github/workflows/package_trigger_scheduler.yml
vendored
@@ -15,17 +15,19 @@ jobs:
|
|||||||
|
|
||||||
- name: Package Trigger Scheduler
|
- name: Package Trigger Scheduler
|
||||||
run: |
|
run: |
|
||||||
echo "**** Branches found: ****"
|
printf "# Package trigger scheduler for docker-code-server\n\n" >> $GITHUB_STEP_SUMMARY
|
||||||
git for-each-ref --format='%(refname:short)' refs/remotes
|
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:short)' refs/remotes)
|
for br in $(git for-each-ref --format='%(refname:lstrip=3)' refs/remotes)
|
||||||
do
|
do
|
||||||
br=$(echo "$br" | sed 's|origin/||g')
|
if [[ "${br}" == "HEAD" ]]; then
|
||||||
echo "**** Evaluating branch ${br} ****"
|
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-code-server/${br}/jenkins-vars.yml | yq -r '.ls_branch')
|
ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-code-server/${br}/jenkins-vars.yml | yq -r '.ls_branch')
|
||||||
if [ "${br}" == "${ls_branch}" ]; then
|
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-code-server/${br}/.github/workflows/package_trigger.yml > /dev/null 2>&1; then
|
if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-code-server/${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
|
echo "Triggering package trigger workflow for branch ${br}" >> $GITHUB_STEP_SUMMARY
|
||||||
triggered_branches="${triggered_branches}${br} "
|
triggered_branches="${triggered_branches}${br} "
|
||||||
curl -iX POST \
|
curl -iX POST \
|
||||||
@@ -35,11 +37,9 @@ jobs:
|
|||||||
https://api.github.com/repos/linuxserver/docker-code-server/actions/workflows/package_trigger.yml/dispatches
|
https://api.github.com/repos/linuxserver/docker-code-server/actions/workflows/package_trigger.yml/dispatches
|
||||||
sleep 30
|
sleep 30
|
||||||
else
|
else
|
||||||
echo "**** Workflow doesn't exist; skipping trigger. ****"
|
|
||||||
echo "Skipping branch ${br} due to no package trigger workflow present." >> $GITHUB_STEP_SUMMARY
|
echo "Skipping branch ${br} due to no package trigger workflow present." >> $GITHUB_STEP_SUMMARY
|
||||||
fi
|
fi
|
||||||
else
|
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
|
echo "Skipping branch ${br} due to being detected as dev branch." >> $GITHUB_STEP_SUMMARY
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|||||||
2
.github/workflows/permissions.yml
vendored
2
.github/workflows/permissions.yml
vendored
@@ -5,6 +5,8 @@ on:
|
|||||||
- '**/run'
|
- '**/run'
|
||||||
- '**/finish'
|
- '**/finish'
|
||||||
- '**/check'
|
- '**/check'
|
||||||
|
- 'root/migrations/*'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
permission_check:
|
permission_check:
|
||||||
uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1
|
uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1
|
||||||
|
|||||||
119
Jenkinsfile
vendored
119
Jenkinsfile
vendored
@@ -17,6 +17,8 @@ pipeline {
|
|||||||
GITLAB_TOKEN=credentials('b6f0f1dd-6952-4cf6-95d1-9c06380283f0')
|
GITLAB_TOKEN=credentials('b6f0f1dd-6952-4cf6-95d1-9c06380283f0')
|
||||||
GITLAB_NAMESPACE=credentials('gitlab-namespace-id')
|
GITLAB_NAMESPACE=credentials('gitlab-namespace-id')
|
||||||
DOCKERHUB_TOKEN=credentials('docker-hub-ci-pat')
|
DOCKERHUB_TOKEN=credentials('docker-hub-ci-pat')
|
||||||
|
QUAYIO_API_TOKEN=credentials('quayio-repo-api-token')
|
||||||
|
GIT_SIGNING_KEY=credentials('484fbca6-9a4f-455e-b9e3-97ac98785f5f')
|
||||||
CONTAINER_NAME = 'code-server'
|
CONTAINER_NAME = 'code-server'
|
||||||
BUILD_VERSION_ARG = 'CODE_RELEASE'
|
BUILD_VERSION_ARG = 'CODE_RELEASE'
|
||||||
LS_USER = 'linuxserver'
|
LS_USER = 'linuxserver'
|
||||||
@@ -36,9 +38,23 @@ pipeline {
|
|||||||
CI_WEBPATH=''
|
CI_WEBPATH=''
|
||||||
}
|
}
|
||||||
stages {
|
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
|
// Setup all the basic environment variables needed for the build
|
||||||
stage("Set ENV Variables base"){
|
stage("Set ENV Variables base"){
|
||||||
steps{
|
steps{
|
||||||
|
echo "Running on node: ${NODE_NAME}"
|
||||||
sh '''#! /bin/bash
|
sh '''#! /bin/bash
|
||||||
containers=$(docker ps -aq)
|
containers=$(docker ps -aq)
|
||||||
if [[ -n "${containers}" ]]; then
|
if [[ -n "${containers}" ]]; then
|
||||||
@@ -245,7 +261,7 @@ pipeline {
|
|||||||
-v ${WORKSPACE}:/mnt \
|
-v ${WORKSPACE}:/mnt \
|
||||||
-e AWS_ACCESS_KEY_ID=\"${S3_KEY}\" \
|
-e AWS_ACCESS_KEY_ID=\"${S3_KEY}\" \
|
||||||
-e AWS_SECRET_ACCESS_KEY=\"${S3_SECRET}\" \
|
-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 && \
|
apk add --no-cache python3 && \
|
||||||
python3 -m venv /lsiopy && \
|
python3 -m venv /lsiopy && \
|
||||||
pip install --no-cache-dir -U pip && \
|
pip install --no-cache-dir -U pip && \
|
||||||
@@ -275,7 +291,7 @@ pipeline {
|
|||||||
# ${TEMPDIR}/unraid/docker-templates: Cloned docker-templates repo to check for logos
|
# ${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
|
# ${TEMPDIR}/unraid/templates: Cloned templates repo for commiting unraid template changes and pushing back to Github
|
||||||
git clone --branch master --depth 1 https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/docker-${CONTAINER_NAME}
|
git clone --branch master --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"
|
echo "Starting Stage 1 - Jenkinsfile update"
|
||||||
if [[ "$(md5sum Jenkinsfile | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile | awk '{ print $1 }')" ]]; then
|
if [[ "$(md5sum Jenkinsfile | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile | awk '{ print $1 }')" ]]; then
|
||||||
mkdir -p ${TEMPDIR}/repo
|
mkdir -p ${TEMPDIR}/repo
|
||||||
@@ -295,7 +311,7 @@ pipeline {
|
|||||||
echo "Jenkinsfile is up to date."
|
echo "Jenkinsfile is up to date."
|
||||||
fi
|
fi
|
||||||
echo "Starting 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"
|
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
|
for i in ${OLD_TEMPLATES}; do
|
||||||
if [[ -f "${i}" ]]; then
|
if [[ -f "${i}" ]]; then
|
||||||
TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}"
|
TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}"
|
||||||
@@ -352,7 +368,7 @@ pipeline {
|
|||||||
fi
|
fi
|
||||||
echo "Starting Stage 4 - External repo updates: Docs, Unraid Template and Readme Sync to Docker Hub"
|
echo "Starting Stage 4 - External repo updates: Docs, Unraid Template and Readme Sync to Docker Hub"
|
||||||
mkdir -p ${TEMPDIR}/docs
|
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
|
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/
|
cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md ${TEMPDIR}/docs/docker-documentation/docs/images/
|
||||||
cd ${TEMPDIR}/docs/docker-documentation
|
cd ${TEMPDIR}/docs/docker-documentation
|
||||||
@@ -370,8 +386,8 @@ pipeline {
|
|||||||
echo "Docs update not needed, skipping"
|
echo "Docs update not needed, skipping"
|
||||||
fi
|
fi
|
||||||
mkdir -p ${TEMPDIR}/unraid
|
mkdir -p ${TEMPDIR}/unraid
|
||||||
git clone https://github.com/linuxserver/docker-templates.git ${TEMPDIR}/unraid/docker-templates
|
git clone --depth=1 https://github.com/linuxserver/docker-templates.git ${TEMPDIR}/unraid/docker-templates
|
||||||
git clone https://github.com/linuxserver/templates.git ${TEMPDIR}/unraid/templates
|
git clone --depth=1 https://github.com/linuxserver/templates.git ${TEMPDIR}/unraid/templates
|
||||||
if [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-logo.png ]]; then
|
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
|
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
|
elif [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-icon.png ]]; then
|
||||||
@@ -381,7 +397,9 @@ pipeline {
|
|||||||
echo "Updating Unraid template"
|
echo "Updating Unraid template"
|
||||||
cd ${TEMPDIR}/unraid/templates/
|
cd ${TEMPDIR}/unraid/templates/
|
||||||
GH_TEMPLATES_DEFAULT_BRANCH=$(git remote show origin | grep "HEAD branch:" | sed 's|.*HEAD branch: ||')
|
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"
|
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/
|
cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/
|
||||||
git add -u unraid/${CONTAINER_NAME}.xml
|
git add -u unraid/${CONTAINER_NAME}.xml
|
||||||
@@ -474,10 +492,10 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* #######################
|
/* #######################
|
||||||
GitLab Mirroring
|
GitLab Mirroring and Quay.io Repo Visibility
|
||||||
####################### */
|
####################### */
|
||||||
// Ping into Gitlab to mirror this repo and have a registry endpoint
|
// Ping into Gitlab to mirror this repo and have a registry endpoint & mark this repo on Quay.io as public
|
||||||
stage("GitLab Mirror"){
|
stage("GitLab Mirror and Quay.io Visibility"){
|
||||||
when {
|
when {
|
||||||
environment name: 'EXIT_STATUS', value: ''
|
environment name: 'EXIT_STATUS', value: ''
|
||||||
}
|
}
|
||||||
@@ -493,6 +511,8 @@ pipeline {
|
|||||||
"visibility":"public"}' '''
|
"visibility":"public"}' '''
|
||||||
sh '''curl -H "Private-Token: ${GITLAB_TOKEN}" -X PUT "https://gitlab.com/api/v4/projects/Linuxserver.io%2F${LS_REPO}" \
|
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" '''
|
-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"}' ||: '''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* ###############
|
/* ###############
|
||||||
@@ -523,6 +543,7 @@ pipeline {
|
|||||||
--label \"org.opencontainers.image.title=Code-server\" \
|
--label \"org.opencontainers.image.title=Code-server\" \
|
||||||
--label \"org.opencontainers.image.description=[Code-server](https://coder.com) is VS Code running on a remote server, accessible through the browser. - Code on your Chromebook, tablet, and laptop with a consistent dev environment. - If you have a Windows or Mac workstation, more easily develop for Linux. - Take advantage of large cloud servers to speed up tests, compilations, downloads, and more. - Preserve battery life when you're on the go. - All intensive computation runs on your server. - You're no longer running excess instances of Chrome.\" \
|
--label \"org.opencontainers.image.description=[Code-server](https://coder.com) is VS Code running on a remote server, accessible through the browser. - Code on your Chromebook, tablet, and laptop with a consistent dev environment. - If you have a Windows or Mac workstation, more easily develop for Linux. - Take advantage of large cloud servers to speed up tests, compilations, downloads, and more. - Preserve battery life when you're on the go. - All intensive computation runs on your server. - You're no longer running excess instances of Chrome.\" \
|
||||||
--no-cache --pull -t ${IMAGE}:${META_TAG} --platform=linux/amd64 \
|
--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} ."
|
--build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -554,6 +575,7 @@ pipeline {
|
|||||||
--label \"org.opencontainers.image.title=Code-server\" \
|
--label \"org.opencontainers.image.title=Code-server\" \
|
||||||
--label \"org.opencontainers.image.description=[Code-server](https://coder.com) is VS Code running on a remote server, accessible through the browser. - Code on your Chromebook, tablet, and laptop with a consistent dev environment. - If you have a Windows or Mac workstation, more easily develop for Linux. - Take advantage of large cloud servers to speed up tests, compilations, downloads, and more. - Preserve battery life when you're on the go. - All intensive computation runs on your server. - You're no longer running excess instances of Chrome.\" \
|
--label \"org.opencontainers.image.description=[Code-server](https://coder.com) is VS Code running on a remote server, accessible through the browser. - Code on your Chromebook, tablet, and laptop with a consistent dev environment. - If you have a Windows or Mac workstation, more easily develop for Linux. - Take advantage of large cloud servers to speed up tests, compilations, downloads, and more. - Preserve battery life when you're on the go. - All intensive computation runs on your server. - You're no longer running excess instances of Chrome.\" \
|
||||||
--no-cache --pull -t ${IMAGE}:amd64-${META_TAG} --platform=linux/amd64 \
|
--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} ."
|
--build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -582,9 +604,10 @@ pipeline {
|
|||||||
--label \"org.opencontainers.image.title=Code-server\" \
|
--label \"org.opencontainers.image.title=Code-server\" \
|
||||||
--label \"org.opencontainers.image.description=[Code-server](https://coder.com) is VS Code running on a remote server, accessible through the browser. - Code on your Chromebook, tablet, and laptop with a consistent dev environment. - If you have a Windows or Mac workstation, more easily develop for Linux. - Take advantage of large cloud servers to speed up tests, compilations, downloads, and more. - Preserve battery life when you're on the go. - All intensive computation runs on your server. - You're no longer running excess instances of Chrome.\" \
|
--label \"org.opencontainers.image.description=[Code-server](https://coder.com) is VS Code running on a remote server, accessible through the browser. - Code on your Chromebook, tablet, and laptop with a consistent dev environment. - If you have a Windows or Mac workstation, more easily develop for Linux. - Take advantage of large cloud servers to speed up tests, compilations, downloads, and more. - Preserve battery life when you're on the go. - All intensive computation runs on your server. - You're no longer running excess instances of Chrome.\" \
|
||||||
--no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} --platform=linux/arm64 \
|
--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} ."
|
--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}"
|
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 "docker push ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}"
|
||||||
}
|
}
|
||||||
sh '''#! /bin/bash
|
sh '''#! /bin/bash
|
||||||
@@ -608,7 +631,7 @@ pipeline {
|
|||||||
sh '''#! /bin/bash
|
sh '''#! /bin/bash
|
||||||
set -e
|
set -e
|
||||||
TEMPDIR=$(mktemp -d)
|
TEMPDIR=$(mktemp -d)
|
||||||
if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false" ]; then
|
if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" != "true" ]; then
|
||||||
LOCAL_CONTAINER=${IMAGE}:amd64-${META_TAG}
|
LOCAL_CONTAINER=${IMAGE}:amd64-${META_TAG}
|
||||||
else
|
else
|
||||||
LOCAL_CONTAINER=${IMAGE}:${META_TAG}
|
LOCAL_CONTAINER=${IMAGE}:${META_TAG}
|
||||||
@@ -698,14 +721,14 @@ pipeline {
|
|||||||
set -e
|
set -e
|
||||||
docker pull ghcr.io/linuxserver/ci:latest
|
docker pull ghcr.io/linuxserver/ci:latest
|
||||||
if [ "${MULTIARCH}" == "true" ]; then
|
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}
|
docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG}
|
||||||
fi
|
fi
|
||||||
docker run --rm \
|
docker run --rm \
|
||||||
--shm-size=1gb \
|
--shm-size=1gb \
|
||||||
-v /var/run/docker.sock:/var/run/docker.sock \
|
-v /var/run/docker.sock:/var/run/docker.sock \
|
||||||
-e IMAGE=\"${IMAGE}\" \
|
-e IMAGE=\"${IMAGE}\" \
|
||||||
-e DELAY_START=\"${CI_DELAY}\" \
|
-e DOCKER_LOGS_TIMEOUT=\"${CI_DELAY}\" \
|
||||||
-e TAGS=\"${CI_TAGS}\" \
|
-e TAGS=\"${CI_TAGS}\" \
|
||||||
-e META_TAG=\"${META_TAG}\" \
|
-e META_TAG=\"${META_TAG}\" \
|
||||||
-e PORT=\"${CI_PORT}\" \
|
-e PORT=\"${CI_PORT}\" \
|
||||||
@@ -740,7 +763,7 @@ pipeline {
|
|||||||
passwordVariable: 'QUAYPASS'
|
passwordVariable: 'QUAYPASS'
|
||||||
]
|
]
|
||||||
]) {
|
]) {
|
||||||
retry(5) {
|
retry_backoff(5,5) {
|
||||||
sh '''#! /bin/bash
|
sh '''#! /bin/bash
|
||||||
set -e
|
set -e
|
||||||
echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin
|
echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin
|
||||||
@@ -758,7 +781,7 @@ pipeline {
|
|||||||
docker push ${PUSHIMAGE}:${META_TAG}
|
docker push ${PUSHIMAGE}:${META_TAG}
|
||||||
docker push ${PUSHIMAGE}:${EXT_RELEASE_TAG}
|
docker push ${PUSHIMAGE}:${EXT_RELEASE_TAG}
|
||||||
if [ -n "${SEMVER}" ]; then
|
if [ -n "${SEMVER}" ]; then
|
||||||
docker push ${PUSHIMAGE}:${SEMVER}
|
docker push ${PUSHIMAGE}:${SEMVER}
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
'''
|
'''
|
||||||
@@ -781,7 +804,7 @@ pipeline {
|
|||||||
passwordVariable: 'QUAYPASS'
|
passwordVariable: 'QUAYPASS'
|
||||||
]
|
]
|
||||||
]) {
|
]) {
|
||||||
retry(5) {
|
retry_backoff(5,5) {
|
||||||
sh '''#! /bin/bash
|
sh '''#! /bin/bash
|
||||||
set -e
|
set -e
|
||||||
echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin
|
echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin
|
||||||
@@ -789,7 +812,7 @@ pipeline {
|
|||||||
echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --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
|
echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin
|
||||||
if [ "${CI}" == "false" ]; then
|
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}
|
docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG}
|
||||||
fi
|
fi
|
||||||
for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do
|
for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do
|
||||||
@@ -813,35 +836,13 @@ pipeline {
|
|||||||
docker push ${MANIFESTIMAGE}:amd64-${SEMVER}
|
docker push ${MANIFESTIMAGE}:amd64-${SEMVER}
|
||||||
docker push ${MANIFESTIMAGE}:arm64v8-${SEMVER}
|
docker push ${MANIFESTIMAGE}:arm64v8-${SEMVER}
|
||||||
fi
|
fi
|
||||||
docker manifest push --purge ${MANIFESTIMAGE}:latest || :
|
done
|
||||||
docker manifest create ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:amd64-latest ${MANIFESTIMAGE}:arm64v8-latest
|
for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do
|
||||||
docker manifest annotate ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:arm64v8-latest --os linux --arch arm64 --variant v8
|
docker buildx imagetools create -t ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:amd64-latest ${MANIFESTIMAGE}:arm64v8-latest
|
||||||
docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} || :
|
docker buildx imagetools create -t ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG}
|
||||||
docker manifest create ${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}
|
||||||
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
|
|
||||||
if [ -n "${SEMVER}" ]; then
|
if [ -n "${SEMVER}" ]; then
|
||||||
docker manifest push --purge ${MANIFESTIMAGE}:${SEMVER} || :
|
docker buildx imagetools create -t ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${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-latest")
|
|
||||||
if [[ $(echo "$digest" | jq -r '.layers') != "null" ]]; then
|
|
||||||
docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-latest || :
|
|
||||||
docker manifest create ${MANIFESTIMAGE}:arm32v7-latest ${MANIFESTIMAGE}:amd64-latest
|
|
||||||
docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-latest
|
|
||||||
fi
|
|
||||||
docker manifest push --purge ${MANIFESTIMAGE}:latest
|
|
||||||
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
|
fi
|
||||||
done
|
done
|
||||||
'''
|
'''
|
||||||
@@ -866,7 +867,7 @@ pipeline {
|
|||||||
"object": "'${COMMIT_SHA}'",\
|
"object": "'${COMMIT_SHA}'",\
|
||||||
"message": "Tagging Release '${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}' to master",\
|
"message": "Tagging Release '${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}' to master",\
|
||||||
"type": "commit",\
|
"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"
|
echo "Pushing New release for Tag"
|
||||||
sh '''#! /bin/bash
|
sh '''#! /bin/bash
|
||||||
echo "Updating to ${EXT_RELEASE_CLEAN}" > releasebody.json
|
echo "Updating to ${EXT_RELEASE_CLEAN}" > releasebody.json
|
||||||
@@ -998,6 +999,13 @@ EOF
|
|||||||
###################### */
|
###################### */
|
||||||
post {
|
post {
|
||||||
always {
|
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{
|
script{
|
||||||
if (env.EXIT_STATUS == "ABORTED"){
|
if (env.EXIT_STATUS == "ABORTED"){
|
||||||
sh 'echo "build aborted"'
|
sh 'echo "build aborted"'
|
||||||
@@ -1027,3 +1035,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
|
||||||
|
}
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ Find us at:
|
|||||||
|
|
||||||
# [linuxserver/code-server](https://github.com/linuxserver/docker-code-server)
|
# [linuxserver/code-server](https://github.com/linuxserver/docker-code-server)
|
||||||
|
|
||||||
[](https://scarf.sh/gateway/linuxserver-ci/docker/linuxserver%2Fcode-server)
|
[](https://scarf.sh)
|
||||||
[](https://github.com/linuxserver/docker-code-server)
|
[](https://github.com/linuxserver/docker-code-server)
|
||||||
[](https://github.com/linuxserver/docker-code-server/releases)
|
[](https://github.com/linuxserver/docker-code-server/releases)
|
||||||
[](https://github.com/linuxserver/docker-code-server/packages)
|
[](https://github.com/linuxserver/docker-code-server/packages)
|
||||||
|
|||||||
@@ -11,50 +11,51 @@ NAME VERSION
|
|||||||
@phc/format 1.0.0 npm
|
@phc/format 1.0.0 npm
|
||||||
@tootallnate/once 3.0.0 npm
|
@tootallnate/once 3.0.0 npm
|
||||||
@tootallnate/quickjs-emscripten 0.23.0 npm
|
@tootallnate/quickjs-emscripten 0.23.0 npm
|
||||||
|
@vscode/deviceid 0.1.1 npm
|
||||||
@vscode/iconv-lite-umd 0.7.0 npm
|
@vscode/iconv-lite-umd 0.7.0 npm
|
||||||
@vscode/proxy-agent 0.19.1 npm
|
@vscode/proxy-agent 0.22.0 npm
|
||||||
@vscode/ripgrep 1.15.9 npm
|
@vscode/ripgrep 1.15.9 npm
|
||||||
@vscode/spdlog 0.15.0 npm
|
@vscode/spdlog 0.15.0 npm
|
||||||
@vscode/vscode-languagedetection 1.0.21 npm
|
@vscode/vscode-languagedetection 1.0.21 npm
|
||||||
@vscode/windows-process-tree 0.6.0 npm
|
@vscode/windows-process-tree 0.6.0 npm
|
||||||
@vscode/windows-registry 1.1.0 npm
|
@vscode/windows-registry 1.1.0 npm
|
||||||
@xterm/addon-canvas 0.6.0-beta.31 npm
|
@xterm/addon-clipboard 0.2.0-beta.34 npm
|
||||||
@xterm/addon-image 0.7.0-beta.29 npm
|
@xterm/addon-image 0.9.0-beta.51 npm
|
||||||
@xterm/addon-search 0.14.0-beta.31 npm
|
@xterm/addon-search 0.16.0-beta.51 npm
|
||||||
@xterm/addon-serialize 0.12.0-beta.31 npm
|
@xterm/addon-serialize 0.14.0-beta.51 npm
|
||||||
@xterm/addon-unicode11 0.7.0-beta.31 npm
|
@xterm/addon-unicode11 0.9.0-beta.51 npm
|
||||||
@xterm/addon-webgl 0.17.0-beta.31 npm
|
@xterm/addon-webgl 0.19.0-beta.51 npm
|
||||||
@xterm/headless 5.4.0-beta.31 npm
|
@xterm/headless 5.6.0-beta.51 npm
|
||||||
@xterm/xterm 5.4.0-beta.31 npm
|
@xterm/xterm 5.6.0-beta.51 npm
|
||||||
abbrev 1.1.1 npm
|
abbrev 1.1.1 npm
|
||||||
accepts 1.3.8 npm
|
accepts 1.3.8 npm
|
||||||
adduser 3.118ubuntu5 deb
|
adduser 3.118ubuntu5 deb
|
||||||
agent-base 6.0.2 npm
|
agent-base 6.0.2 npm
|
||||||
agent-base 7.1.0 npm (+1 duplicate)
|
agent-base 7.1.0 npm (+1 duplicate)
|
||||||
|
agent-base 7.1.1 npm
|
||||||
ansi-regex 5.0.1 npm
|
ansi-regex 5.0.1 npm
|
||||||
aproba 2.0.0 npm
|
aproba 2.0.0 npm
|
||||||
apt 2.4.11 deb
|
apt 2.4.12 deb
|
||||||
apt-utils 2.4.11 deb
|
apt-utils 2.4.12 deb
|
||||||
are-we-there-yet 2.0.0 npm
|
are-we-there-yet 2.0.0 npm
|
||||||
argon2 0.31.1 npm
|
argon2 0.31.1 npm
|
||||||
argparse 2.0.1 npm
|
argparse 2.0.1 npm
|
||||||
array-flatten 2.1.1 npm
|
array-flatten 3.0.0 npm
|
||||||
ast-types 0.13.4 npm
|
ast-types 0.13.4 npm
|
||||||
balanced-match 1.0.2 npm
|
balanced-match 1.0.2 npm
|
||||||
base-files 12ubuntu4.3 deb
|
base-files 12ubuntu4.6 deb
|
||||||
base-passwd 3.5.52build1 deb
|
base-passwd 3.5.52build1 deb
|
||||||
base64-js 1.5.1 npm
|
base64-js 1.5.1 npm
|
||||||
bash 5.1-6ubuntu1 deb
|
bash 5.1-6ubuntu1.1 deb
|
||||||
bash 5.1.16 binary
|
|
||||||
basic-ftp 5.0.3 npm
|
basic-ftp 5.0.3 npm
|
||||||
bat 1.0.0 npm
|
bat 1.0.0 npm
|
||||||
beep-boop 1.2.3 npm
|
beep-boop 1.2.3 npm
|
||||||
bindings 1.5.0 npm
|
bindings 1.5.0 npm
|
||||||
bl 4.1.0 npm
|
bl 4.1.0 npm
|
||||||
body-parser 1.19.0 npm
|
body-parser 2.0.0-beta.2 npm
|
||||||
brace-expansion 1.1.11 npm
|
brace-expansion 1.1.11 npm
|
||||||
braces 3.0.2 npm
|
braces 3.0.3 npm
|
||||||
bsdutils 1:2.37.2-4ubuntu3 deb
|
bsdutils 1:2.37.2-4ubuntu3.4 deb
|
||||||
buffer 5.7.1 npm
|
buffer 5.7.1 npm
|
||||||
buffer-alloc 1.2.0 npm
|
buffer-alloc 1.2.0 npm
|
||||||
buffer-alloc-unsafe 1.1.0 npm
|
buffer-alloc-unsafe 1.1.0 npm
|
||||||
@@ -62,13 +63,16 @@ buffer-crc32 0.2.13
|
|||||||
buffer-fill 1.0.0 npm
|
buffer-fill 1.0.0 npm
|
||||||
builtin-notebook-renderers 1.0.0 npm
|
builtin-notebook-renderers 1.0.0 npm
|
||||||
bytes 3.0.0 npm
|
bytes 3.0.0 npm
|
||||||
bytes 3.1.0 npm
|
bytes 3.1.2 npm
|
||||||
ca-certificates 20230311ubuntu0.22.04.1 deb
|
ca-certificates 20230311ubuntu0.22.04.1 deb
|
||||||
|
call-bind 1.0.2 npm
|
||||||
|
call-bind 1.0.7 npm
|
||||||
|
catatonit 0.1.7-1 deb
|
||||||
charenc 0.0.2 npm
|
charenc 0.0.2 npm
|
||||||
chownr 1.1.4 npm
|
chownr 1.1.4 npm
|
||||||
chownr 2.0.0 npm
|
chownr 2.0.0 npm
|
||||||
clojure 1.0.0 npm
|
clojure 1.0.0 npm
|
||||||
code-server 4.22.1 npm
|
code-server 4.92.2 npm
|
||||||
coffeescript 1.0.0 npm
|
coffeescript 1.0.0 npm
|
||||||
color-support 1.1.3 npm
|
color-support 1.1.3 npm
|
||||||
compressible 2.0.18 npm
|
compressible 2.0.18 npm
|
||||||
@@ -76,43 +80,45 @@ compression 1.7.4
|
|||||||
concat-map 0.0.1 npm
|
concat-map 0.0.1 npm
|
||||||
configuration-editing 1.0.0 npm
|
configuration-editing 1.0.0 npm
|
||||||
console-control-strings 1.1.0 npm
|
console-control-strings 1.1.0 npm
|
||||||
content-disposition 0.5.3 npm
|
content-disposition 0.5.4 npm
|
||||||
content-type 1.0.5 npm
|
content-type 1.0.5 npm
|
||||||
cookie 0.4.0 npm (+1 duplicate)
|
cookie 0.4.0 npm
|
||||||
cookie 0.4.1 npm
|
cookie 0.4.1 npm
|
||||||
|
cookie 0.6.0 npm
|
||||||
cookie-parser 1.4.6 npm
|
cookie-parser 1.4.6 npm
|
||||||
cookie-signature 1.0.6 npm
|
cookie-signature 1.0.6 npm
|
||||||
coreutils 8.32-4.1ubuntu1 deb
|
coreutils 8.32-4.1ubuntu1.2 deb
|
||||||
cpp 1.0.0 npm
|
cpp 1.0.0 npm
|
||||||
cron 3.0pl1-137ubuntu3 deb
|
cron 3.0pl1-137ubuntu3 deb
|
||||||
crypt 0.0.2 npm
|
crypt 0.0.2 npm
|
||||||
csharp 1.0.0 npm
|
csharp 1.0.0 npm
|
||||||
css 1.0.0 npm
|
css 1.0.0 npm
|
||||||
css-language-features 1.0.0 npm
|
css-language-features 1.0.0 npm
|
||||||
curl 7.81.0-1ubuntu1.15 deb
|
curl 7.81.0-1ubuntu1.17 deb
|
||||||
dart 1.0.0 npm
|
dart 1.0.0 npm
|
||||||
dash 0.5.11+git20210903+057cd650a4ed-3build1 deb
|
dash 0.5.11+git20210903+057cd650a4ed-3build1 deb
|
||||||
data-uri-to-buffer 5.0.1 npm
|
data-uri-to-buffer 5.0.1 npm
|
||||||
debconf 1.5.79ubuntu1 deb
|
debconf 1.5.79ubuntu1 deb
|
||||||
debianutils 5.5-1ubuntu2 deb
|
debianutils 5.5-1ubuntu2 deb
|
||||||
debug 2.6.9 npm (+3 duplicates)
|
debug 2.6.9 npm (+1 duplicate)
|
||||||
debug 3.1.0 npm (+1 duplicate)
|
debug 3.1.0 npm (+2 duplicates)
|
||||||
debug 4.3.4 npm (+1 duplicate)
|
debug 4.3.4 npm (+1 duplicate)
|
||||||
debug-auto-launch 1.0.0 npm
|
debug-auto-launch 1.0.0 npm
|
||||||
debug-server-ready 1.0.0 npm
|
debug-server-ready 1.0.0 npm
|
||||||
decompress-response 6.0.0 npm
|
decompress-response 6.0.0 npm
|
||||||
deep-extend 0.6.0 npm
|
deep-extend 0.6.0 npm
|
||||||
|
define-data-property 1.1.4 npm
|
||||||
degenerator 5.0.1 npm
|
degenerator 5.0.1 npm
|
||||||
delegates 1.0.0 npm
|
delegates 1.0.0 npm
|
||||||
depd 1.1.2 npm
|
depd 2.0.0 npm
|
||||||
destroy 1.0.4 npm
|
destroy 1.2.0 npm
|
||||||
detect-libc 2.0.1 npm
|
detect-libc 2.0.1 npm
|
||||||
detect-libc 2.0.2 npm
|
detect-libc 2.0.2 npm
|
||||||
diff 1.0.0 npm
|
diff 1.0.0 npm
|
||||||
diffutils 1:3.8-0ubuntu2 deb
|
diffutils 1:3.8-0ubuntu2 deb
|
||||||
dirmngr 2.2.27-3ubuntu2.1 deb
|
dirmngr 2.2.27-3ubuntu2.1 deb
|
||||||
docker 1.0.0 npm
|
docker 1.0.0 npm
|
||||||
dpkg 1.21.1ubuntu2.2 deb
|
dpkg 1.21.1ubuntu2.3 deb
|
||||||
e2fsprogs 1.46.5-2ubuntu1.1 deb
|
e2fsprogs 1.46.5-2ubuntu1.1 deb
|
||||||
ee-first 1.1.1 npm
|
ee-first 1.1.1 npm
|
||||||
emmet 1.0.0 npm
|
emmet 1.0.0 npm
|
||||||
@@ -120,6 +126,8 @@ emoji-regex 8.0.0
|
|||||||
encodeurl 1.0.2 npm
|
encodeurl 1.0.2 npm
|
||||||
end-of-stream 1.4.4 npm
|
end-of-stream 1.4.4 npm
|
||||||
env-paths 2.2.1 npm
|
env-paths 2.2.1 npm
|
||||||
|
es-define-property 1.0.0 npm
|
||||||
|
es-errors 1.3.0 npm
|
||||||
es6-promisify 7.0.0 npm
|
es6-promisify 7.0.0 npm
|
||||||
escape-html 1.0.3 npm
|
escape-html 1.0.3 npm
|
||||||
escodegen 2.1.0 npm
|
escodegen 2.1.0 npm
|
||||||
@@ -129,28 +137,33 @@ esutils 2.0.3
|
|||||||
etag 1.8.1 npm
|
etag 1.8.1 npm
|
||||||
eventemitter3 4.0.7 npm
|
eventemitter3 4.0.7 npm
|
||||||
expand-template 2.0.3 npm
|
expand-template 2.0.3 npm
|
||||||
express 5.0.0-alpha.8 npm
|
express 5.0.0-beta.3 npm
|
||||||
extension-editing 1.0.0 npm
|
extension-editing 1.0.0 npm
|
||||||
fd-slicer 1.1.0 npm
|
fd-slicer 1.1.0 npm
|
||||||
file-uri-to-path 1.0.0 npm
|
file-uri-to-path 1.0.0 npm
|
||||||
fill-range 7.0.1 npm
|
fill-range 7.1.1 npm
|
||||||
finalhandler 1.1.2 npm
|
finalhandler 1.2.0 npm
|
||||||
findutils 4.8.0-1ubuntu3 deb
|
findutils 4.8.0-1ubuntu3 deb
|
||||||
follow-redirects 1.15.4 npm
|
follow-redirects 1.15.6 npm
|
||||||
forwarded 0.2.0 npm
|
forwarded 0.2.0 npm
|
||||||
fresh 0.5.2 npm
|
fresh 0.5.2 npm
|
||||||
fs-constants 1.0.0 npm
|
fs-constants 1.0.0 npm
|
||||||
|
fs-extra 11.2.0 npm
|
||||||
fs-extra 8.1.0 npm
|
fs-extra 8.1.0 npm
|
||||||
fs-minipass 2.1.0 npm
|
fs-minipass 2.1.0 npm
|
||||||
fs.realpath 1.0.0 npm
|
fs.realpath 1.0.0 npm
|
||||||
fsharp 1.0.0 npm
|
fsharp 1.0.0 npm
|
||||||
|
function-bind 1.1.1 npm (+2 duplicates)
|
||||||
|
function-bind 1.1.2 npm
|
||||||
gauge 3.0.2 npm
|
gauge 3.0.2 npm
|
||||||
gcc-12-base 12.3.0-1ubuntu1~22.04 deb
|
gcc-12-base 12.3.0-1ubuntu1~22.04 deb
|
||||||
|
get-intrinsic 1.2.1 npm
|
||||||
|
get-intrinsic 1.2.4 npm (+2 duplicates)
|
||||||
get-uri 6.0.1 npm
|
get-uri 6.0.1 npm
|
||||||
git 1.0.0 npm
|
git 1.0.0 npm
|
||||||
git 1:2.34.1-1ubuntu1.10 deb
|
git 1:2.34.1-1ubuntu1.11 deb
|
||||||
git-base 1.0.0 npm
|
git-base 1.0.0 npm
|
||||||
git-man 1:2.34.1-1ubuntu1.10 deb
|
git-man 1:2.34.1-1ubuntu1.11 deb
|
||||||
github 0.0.1 npm
|
github 0.0.1 npm
|
||||||
github-authentication 0.0.2 npm
|
github-authentication 0.0.2 npm
|
||||||
github-from-package 0.0.0 npm
|
github-from-package 0.0.0 npm
|
||||||
@@ -159,6 +172,7 @@ gnupg 2.2.27-3ubuntu2.1
|
|||||||
gnupg-l10n 2.2.27-3ubuntu2.1 deb
|
gnupg-l10n 2.2.27-3ubuntu2.1 deb
|
||||||
gnupg-utils 2.2.27-3ubuntu2.1 deb
|
gnupg-utils 2.2.27-3ubuntu2.1 deb
|
||||||
go 1.0.0 npm
|
go 1.0.0 npm
|
||||||
|
gopd 1.0.1 npm
|
||||||
gpg 2.2.27-3ubuntu2.1 deb
|
gpg 2.2.27-3ubuntu2.1 deb
|
||||||
gpg-agent 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-client 2.2.27-3ubuntu2.1 deb
|
||||||
@@ -173,13 +187,17 @@ grunt 1.0.0
|
|||||||
gulp 1.0.0 npm
|
gulp 1.0.0 npm
|
||||||
gzip 1.10-4ubuntu4.1 deb
|
gzip 1.10-4ubuntu4.1 deb
|
||||||
handlebars 1.0.0 npm
|
handlebars 1.0.0 npm
|
||||||
|
has 1.0.3 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
|
has-unicode 2.0.1 npm
|
||||||
|
hasown 2.0.0 npm
|
||||||
hlsl 1.0.0 npm
|
hlsl 1.0.0 npm
|
||||||
hostname 3.23ubuntu2 deb
|
hostname 3.23ubuntu2 deb
|
||||||
html 1.0.0 npm
|
html 1.0.0 npm
|
||||||
html-language-features 1.0.0 npm
|
html-language-features 1.0.0 npm
|
||||||
http-errors 1.7.2 npm
|
http-errors 2.0.0 npm
|
||||||
http-errors 1.7.3 npm
|
|
||||||
http-proxy 1.18.1 npm
|
http-proxy 1.18.1 npm
|
||||||
http-proxy-agent 7.0.0 npm
|
http-proxy-agent 7.0.0 npm
|
||||||
http-proxy-agent 7.0.2 npm
|
http-proxy-agent 7.0.2 npm
|
||||||
@@ -187,17 +205,17 @@ httpolyglot 0.1.2
|
|||||||
https-proxy-agent 5.0.1 npm
|
https-proxy-agent 5.0.1 npm
|
||||||
https-proxy-agent 7.0.2 npm
|
https-proxy-agent 7.0.2 npm
|
||||||
https-proxy-agent 7.0.4 npm
|
https-proxy-agent 7.0.4 npm
|
||||||
i18next 23.8.2 npm
|
i18next 23.11.3 npm
|
||||||
iconv-lite 0.4.24 npm
|
iconv-lite 0.5.2 npm
|
||||||
ieee754 1.2.1 npm
|
ieee754 1.2.1 npm
|
||||||
inflight 1.0.6 npm
|
inflight 1.0.6 npm
|
||||||
inherits 2.0.3 npm
|
|
||||||
inherits 2.0.4 npm (+1 duplicate)
|
inherits 2.0.4 npm (+1 duplicate)
|
||||||
ini 1.0.0 npm
|
ini 1.0.0 npm
|
||||||
ini 1.3.8 npm
|
ini 1.3.8 npm
|
||||||
init-system-helpers 1.62 deb
|
init-system-helpers 1.62 deb
|
||||||
ip 1.1.9 npm
|
ip 1.1.9 npm
|
||||||
ip 2.0.1 npm (+1 duplicate)
|
ip 2.0.1 npm
|
||||||
|
ip-address 9.0.5 npm
|
||||||
ipaddr.js 1.9.1 npm
|
ipaddr.js 1.9.1 npm
|
||||||
ipynb 1.0.0 npm
|
ipynb 1.0.0 npm
|
||||||
is-buffer 1.1.6 npm
|
is-buffer 1.1.6 npm
|
||||||
@@ -205,44 +223,48 @@ is-extglob 2.1.1
|
|||||||
is-fullwidth-code-point 3.0.0 npm
|
is-fullwidth-code-point 3.0.0 npm
|
||||||
is-glob 4.0.3 npm
|
is-glob 4.0.3 npm
|
||||||
is-number 7.0.0 npm
|
is-number 7.0.0 npm
|
||||||
|
is-promise 4.0.0 npm
|
||||||
isexe 2.0.0 npm
|
isexe 2.0.0 npm
|
||||||
jake 1.0.0 npm
|
jake 1.0.0 npm
|
||||||
java 1.0.0 npm
|
java 1.0.0 npm
|
||||||
javascript 1.0.0 npm
|
javascript 1.0.0 npm
|
||||||
jq 1.6-2.1ubuntu3 deb
|
jq 1.6-2.1ubuntu3 deb
|
||||||
js-debug 1.87.0 npm
|
js-base64 3.7.7 npm
|
||||||
js-debug-companion 1.1.2 npm
|
js-debug 1.92.0 npm
|
||||||
|
js-debug-companion 1.1.3 npm
|
||||||
js-yaml 4.1.0 npm
|
js-yaml 4.1.0 npm
|
||||||
jschardet 3.0.0 npm
|
jsbn 1.1.0 npm
|
||||||
|
jschardet 3.1.3 npm
|
||||||
json 1.0.0 npm
|
json 1.0.0 npm
|
||||||
json-language-features 1.0.0 npm
|
json-language-features 1.0.0 npm
|
||||||
jsonfile 4.0.0 npm
|
jsonfile 4.0.0 npm
|
||||||
|
jsonfile 6.1.0 npm
|
||||||
julia 1.0.0 npm
|
julia 1.0.0 npm
|
||||||
just-performance 4.3.0 npm
|
just-performance 4.3.0 npm
|
||||||
kerberos 2.0.1 npm
|
kerberos 2.1.1-alpha.0 npm
|
||||||
latex 1.0.0 npm
|
latex 1.0.0 npm
|
||||||
less 1.0.0 npm
|
less 1.0.0 npm
|
||||||
less 590-1ubuntu0.22.04.2 deb
|
less 590-1ubuntu0.22.04.3 deb
|
||||||
libacl1 2.3.1-1 deb
|
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
|
libassuan0 2.5.5-1build1 deb
|
||||||
libatomic1 12.3.0-1ubuntu1~22.04 deb
|
libatomic1 12.3.0-1ubuntu1~22.04 deb
|
||||||
libattr1 1:2.5.1-1build1 deb
|
libattr1 1:2.5.1-1build1 deb
|
||||||
libaudit-common 1:3.0.7-1build1 deb
|
libaudit-common 1:3.0.7-1build1 deb
|
||||||
libaudit1 1:3.0.7-1build1 deb
|
libaudit1 1:3.0.7-1build1 deb
|
||||||
libblkid1 2.37.2-4ubuntu3 deb
|
libblkid1 2.37.2-4ubuntu3.4 deb
|
||||||
libbrotli1 1.0.9-2build6 deb
|
libbrotli1 1.0.9-2build6 deb
|
||||||
libbsd0 0.11.5-1 deb
|
libbsd0 0.11.5-1 deb
|
||||||
libbz2-1.0 1.0.8-5build1 deb
|
libbz2-1.0 1.0.8-5build1 deb
|
||||||
libc-bin 2.35-0ubuntu3.1 deb
|
libc-bin 2.35-0ubuntu3.8 deb
|
||||||
libc6 2.35-0ubuntu3.1 deb
|
libc6 2.35-0ubuntu3.8 deb
|
||||||
libcap-ng0 0.7.9-2.2build3 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.1 deb
|
||||||
libcbor0.8 0.8.0-2ubuntu1 deb
|
libcbor0.8 0.8.0-2ubuntu1 deb
|
||||||
libcom-err2 1.46.5-2ubuntu1.1 deb
|
libcom-err2 1.46.5-2ubuntu1.1 deb
|
||||||
libcrypt1 1:4.4.27-1 deb
|
libcrypt1 1:4.4.27-1 deb
|
||||||
libcurl3-gnutls 7.81.0-1ubuntu1.15 deb
|
libcurl3-gnutls 7.81.0-1ubuntu1.17 deb
|
||||||
libcurl4 7.81.0-1ubuntu1.15 deb
|
libcurl4 7.81.0-1ubuntu1.17 deb
|
||||||
libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb
|
libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb
|
||||||
libdebconfclient0 0.261ubuntu1 deb
|
libdebconfclient0 0.261ubuntu1 deb
|
||||||
libedit2 3.1-20210910-1build1 deb
|
libedit2 3.1-20210910-1build1 deb
|
||||||
@@ -256,39 +278,39 @@ libgcrypt20 1.9.4-3ubuntu3
|
|||||||
libgdbm-compat4 1.23-1 deb
|
libgdbm-compat4 1.23-1 deb
|
||||||
libgdbm6 1.23-1 deb
|
libgdbm6 1.23-1 deb
|
||||||
libgmp10 2:6.2.1+dfsg-3ubuntu1 deb
|
libgmp10 2:6.2.1+dfsg-3ubuntu1 deb
|
||||||
libgnutls30 3.7.3-4ubuntu1.2 deb
|
libgnutls30 3.7.3-4ubuntu1.5 deb
|
||||||
libgpg-error0 1.43-3 deb
|
libgpg-error0 1.43-3 deb
|
||||||
libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb
|
libgssapi-krb5-2 1.19.2-2ubuntu0.4 deb
|
||||||
libhogweed6 3.7.3-1build2 deb
|
libhogweed6 3.7.3-1build2 deb
|
||||||
libidn2-0 2.3.2-2build1 deb
|
libidn2-0 2.3.2-2build1 deb
|
||||||
libjq1 1.6-2.1ubuntu3 deb
|
libjq1 1.6-2.1ubuntu3 deb
|
||||||
libk5crypto3 1.19.2-2ubuntu0.2 deb
|
libk5crypto3 1.19.2-2ubuntu0.4 deb
|
||||||
libkeyutils1 1.6.1-2ubuntu3 deb
|
libkeyutils1 1.6.1-2ubuntu3 deb
|
||||||
libkrb5-3 1.19.2-2ubuntu0.2 deb
|
libkrb5-3 1.19.2-2ubuntu0.4 deb
|
||||||
libkrb5support0 1.19.2-2ubuntu0.2 deb
|
libkrb5support0 1.19.2-2ubuntu0.4 deb
|
||||||
libksba8 1.6.0-2ubuntu0.2 deb
|
libksba8 1.6.0-2ubuntu0.2 deb
|
||||||
libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.2 deb
|
libldap-2.5-0 2.5.18+dfsg-0ubuntu0.22.04.2 deb
|
||||||
libldap-common 2.5.16+dfsg-0ubuntu0.22.04.2 deb
|
libldap-common 2.5.18+dfsg-0ubuntu0.22.04.2 deb
|
||||||
liblz4-1 1.9.3-2build2 deb
|
liblz4-1 1.9.3-2build2 deb
|
||||||
liblzma5 5.2.5-2ubuntu1 deb
|
liblzma5 5.2.5-2ubuntu1 deb
|
||||||
libmd0 1.0.4-1build1 deb
|
libmd0 1.0.4-1build1 deb
|
||||||
libmount1 2.37.2-4ubuntu3 deb
|
libmount1 2.37.2-4ubuntu3.4 deb
|
||||||
libncurses6 6.3-2ubuntu0.1 deb
|
libncurses6 6.3-2ubuntu0.1 deb
|
||||||
libncursesw6 6.3-2ubuntu0.1 deb
|
libncursesw6 6.3-2ubuntu0.1 deb
|
||||||
libnettle8 3.7.3-1build2 deb
|
libnettle8 3.7.3-1build2 deb
|
||||||
libnghttp2-14 1.43.0-1ubuntu0.1 deb
|
libnghttp2-14 1.43.0-1ubuntu0.2 deb
|
||||||
libnpth0 1.6-3build2 deb
|
libnpth0 1.6-3build2 deb
|
||||||
libnsl2 1.3.0-2build2 deb
|
libnsl2 1.3.0-2build2 deb
|
||||||
libonig5 6.9.7.1-2build1 deb
|
libonig5 6.9.7.1-2build1 deb
|
||||||
libp11-kit0 0.24.0-6build1 deb
|
libp11-kit0 0.24.0-6build1 deb
|
||||||
libpam-modules 1.4.0-11ubuntu2.3 deb
|
libpam-modules 1.4.0-11ubuntu2.4 deb
|
||||||
libpam-modules-bin 1.4.0-11ubuntu2.3 deb
|
libpam-modules-bin 1.4.0-11ubuntu2.4 deb
|
||||||
libpam-runtime 1.4.0-11ubuntu2.3 deb
|
libpam-runtime 1.4.0-11ubuntu2.4 deb
|
||||||
libpam0g 1.4.0-11ubuntu2.3 deb
|
libpam0g 1.4.0-11ubuntu2.4 deb
|
||||||
libpcre2-8-0 10.39-3ubuntu0.1 deb
|
libpcre2-8-0 10.39-3ubuntu0.1 deb
|
||||||
libpcre3 2:8.39-13ubuntu0.22.04.1 deb
|
libpcre3 2:8.39-13ubuntu0.22.04.1 deb
|
||||||
libperl5.34 5.34.0-3ubuntu1.3 deb
|
libperl5.34 5.34.0-3ubuntu1.3 deb
|
||||||
libprocps8 2:3.3.17-6ubuntu2 deb
|
libprocps8 2:3.3.17-6ubuntu2.1 deb
|
||||||
libpsl5 0.21.0-1.2build2 deb
|
libpsl5 0.21.0-1.2build2 deb
|
||||||
libreadline8 8.1.2-1 deb
|
libreadline8 8.1.2-1 deb
|
||||||
librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb
|
librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb
|
||||||
@@ -300,20 +322,20 @@ libselinux1 3.3-1build2
|
|||||||
libsemanage-common 3.3-1build2 deb
|
libsemanage-common 3.3-1build2 deb
|
||||||
libsemanage2 3.3-1build2 deb
|
libsemanage2 3.3-1build2 deb
|
||||||
libsepol2 3.3-1build1 deb
|
libsepol2 3.3-1build1 deb
|
||||||
libsmartcols1 2.37.2-4ubuntu3 deb
|
libsmartcols1 2.37.2-4ubuntu3.4 deb
|
||||||
libsqlite3-0 3.37.2-2ubuntu0.3 deb
|
libsqlite3-0 3.37.2-2ubuntu0.3 deb
|
||||||
libss2 1.46.5-2ubuntu1.1 deb
|
libss2 1.46.5-2ubuntu1.1 deb
|
||||||
libssh-4 0.9.6-2ubuntu0.22.04.3 deb
|
libssh-4 0.9.6-2ubuntu0.22.04.3 deb
|
||||||
libssl3 3.0.2-0ubuntu1.10 deb
|
libssl3 3.0.2-0ubuntu1.17 deb
|
||||||
libstdc++6 12.3.0-1ubuntu1~22.04 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
|
libtasn1-6 4.18.0-4build1 deb
|
||||||
libtinfo6 6.3-2ubuntu0.1 deb
|
libtinfo6 6.3-2ubuntu0.1 deb
|
||||||
libtirpc-common 1.3.2-2ubuntu0.1 deb
|
libtirpc-common 1.3.2-2ubuntu0.1 deb
|
||||||
libtirpc3 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
|
libunistring2 1.0-1 deb
|
||||||
libuuid1 2.37.2-4ubuntu3 deb
|
libuuid1 2.37.2-4ubuntu3.4 deb
|
||||||
libx11-6 2:1.7.5-1ubuntu0.3 deb
|
libx11-6 2:1.7.5-1ubuntu0.3 deb
|
||||||
libx11-data 2:1.7.5-1ubuntu0.3 deb
|
libx11-data 2:1.7.5-1ubuntu0.3 deb
|
||||||
libxau6 1:1.0.9-1build5 deb
|
libxau6 1:1.0.9-1build5 deb
|
||||||
@@ -324,9 +346,9 @@ libxmuu1 2:1.1.3-3
|
|||||||
libxxhash0 0.8.1-1 deb
|
libxxhash0 0.8.1-1 deb
|
||||||
libzstd1 1.4.8+dfsg-3build1 deb
|
libzstd1 1.4.8+dfsg-3build1 deb
|
||||||
limiter 2.1.0 npm
|
limiter 2.1.0 npm
|
||||||
locales 2.35-0ubuntu3.6 deb
|
locales 2.35-0ubuntu3.8 deb
|
||||||
log 1.0.0 npm
|
log 1.0.0 npm
|
||||||
login 1:4.8.1-2ubuntu2.1 deb
|
login 1:4.8.1-2ubuntu2.2 deb
|
||||||
logsave 1.46.5-2ubuntu1.1 deb
|
logsave 1.46.5-2ubuntu1.1 deb
|
||||||
lru-cache 6.0.0 npm (+1 duplicate)
|
lru-cache 6.0.0 npm (+1 duplicate)
|
||||||
lru-cache 7.18.3 npm
|
lru-cache 7.18.3 npm
|
||||||
@@ -346,7 +368,6 @@ merge-descriptors 1.0.1
|
|||||||
methods 1.1.2 npm
|
methods 1.1.2 npm
|
||||||
micromatch 4.0.5 npm
|
micromatch 4.0.5 npm
|
||||||
microsoft-authentication 0.0.1 npm
|
microsoft-authentication 0.0.1 npm
|
||||||
mime 1.6.0 npm
|
|
||||||
mime-db 1.52.0 npm
|
mime-db 1.52.0 npm
|
||||||
mime-types 2.1.35 npm
|
mime-types 2.1.35 npm
|
||||||
mimic-response 3.1.0 npm
|
mimic-response 3.1.0 npm
|
||||||
@@ -357,10 +378,10 @@ minipass 5.0.0
|
|||||||
minizlib 2.1.2 npm
|
minizlib 2.1.2 npm
|
||||||
mkdirp 1.0.4 npm (+1 duplicate)
|
mkdirp 1.0.4 npm (+1 duplicate)
|
||||||
mkdirp-classic 0.5.3 npm
|
mkdirp-classic 0.5.3 npm
|
||||||
mount 2.37.2-4ubuntu3 deb
|
mount 2.37.2-4ubuntu3.4 deb
|
||||||
ms 2.0.0 npm (+1 duplicate)
|
ms 2.0.0 npm (+1 duplicate)
|
||||||
ms 2.1.1 npm
|
|
||||||
ms 2.1.2 npm (+1 duplicate)
|
ms 2.1.2 npm (+1 duplicate)
|
||||||
|
ms 2.1.3 npm
|
||||||
nano 6.2-1 deb
|
nano 6.2-1 deb
|
||||||
napi-build-utils 1.0.2 npm
|
napi-build-utils 1.0.2 npm
|
||||||
native-watchdog 1.4.2 npm
|
native-watchdog 1.4.2 npm
|
||||||
@@ -372,34 +393,36 @@ netbase 6.3
|
|||||||
netcat 1.218-4ubuntu1 deb
|
netcat 1.218-4ubuntu1 deb
|
||||||
netcat-openbsd 1.218-4ubuntu1 deb
|
netcat-openbsd 1.218-4ubuntu1 deb
|
||||||
netmask 2.0.2 npm
|
netmask 2.0.2 npm
|
||||||
node 18.17.1 binary
|
node 20.11.1 binary
|
||||||
node-abi 3.8.0 npm
|
node-abi 3.8.0 npm
|
||||||
node-addon-api 3.2.1 npm
|
node-addon-api 3.2.1 npm
|
||||||
node-addon-api 4.3.0 npm
|
node-addon-api 6.1.0 npm
|
||||||
node-addon-api 7.0.0 npm
|
node-addon-api 7.0.0 npm
|
||||||
node-addon-api 7.1.0 npm
|
node-addon-api 7.1.0 npm
|
||||||
node-fetch 2.7.0 npm
|
node-fetch 2.7.0 npm
|
||||||
node-gyp-build 4.3.0 npm
|
node-gyp-build 4.8.1 npm
|
||||||
node-pty 1.1.0-beta6 npm
|
node-pty 1.1.0-beta11 npm
|
||||||
nopt 5.0.0 npm
|
nopt 5.0.0 npm
|
||||||
npm 1.0.1 npm
|
npm 1.0.1 npm
|
||||||
npmlog 5.0.1 npm
|
npmlog 5.0.1 npm
|
||||||
nw-pre-gyp-module-test 0.0.1 npm
|
nw-pre-gyp-module-test 0.0.1 npm
|
||||||
object-assign 4.1.1 npm
|
object-assign 4.1.1 npm
|
||||||
|
object-inspect 1.12.3 npm
|
||||||
|
object-inspect 1.13.1 npm
|
||||||
objective-c 1.0.0 npm
|
objective-c 1.0.0 npm
|
||||||
on-finished 2.3.0 npm
|
on-finished 2.4.1 npm
|
||||||
on-headers 1.0.2 npm
|
on-headers 1.0.2 npm
|
||||||
once 1.4.0 npm (+1 duplicate)
|
once 1.4.0 npm (+1 duplicate)
|
||||||
openssh-client 1:8.9p1-3ubuntu0.6 deb
|
openssh-client 1:8.9p1-3ubuntu0.10 deb
|
||||||
openssl 3.0.2-0ubuntu1.15 deb
|
openssl 3.0.2-0ubuntu1.17 deb
|
||||||
os-tmpdir 1.0.2 npm
|
os-tmpdir 1.0.2 npm
|
||||||
pac-proxy-agent 7.0.1 npm
|
pac-proxy-agent 7.0.1 npm
|
||||||
pac-resolver 7.0.0 npm
|
pac-resolver 7.0.0 npm
|
||||||
parseurl 1.3.3 npm
|
parseurl 1.3.3 npm
|
||||||
passwd 1:4.8.1-2ubuntu2.1 deb
|
passwd 1:4.8.1-2ubuntu2.2 deb
|
||||||
patch 2.7.6-7build2 deb
|
patch 2.7.6-7build2 deb
|
||||||
path-is-absolute 1.0.1 npm
|
path-is-absolute 1.0.1 npm
|
||||||
path-to-regexp 0.1.7 npm
|
path-to-regexp 3.2.0 npm
|
||||||
pem 1.14.8 npm
|
pem 1.14.8 npm
|
||||||
pend 1.2.0 npm
|
pend 1.2.0 npm
|
||||||
perl 1.0.0 npm
|
perl 1.0.0 npm
|
||||||
@@ -411,8 +434,8 @@ php-language-features 1.0.0
|
|||||||
picomatch 2.3.1 npm
|
picomatch 2.3.1 npm
|
||||||
pinentry-curses 1.1.1-1build2 deb
|
pinentry-curses 1.1.1-1build2 deb
|
||||||
powershell 1.0.0 npm
|
powershell 1.0.0 npm
|
||||||
prebuild-install 7.1.1 npm
|
prebuild-install 7.1.2 npm
|
||||||
procps 2:3.3.17-6ubuntu2 deb
|
procps 2:3.3.17-6ubuntu2.1 deb
|
||||||
proxy-addr 2.0.7 npm
|
proxy-addr 2.0.7 npm
|
||||||
proxy-agent 6.4.0 npm
|
proxy-agent 6.4.0 npm
|
||||||
proxy-from-env 1.1.0 npm (+1 duplicate)
|
proxy-from-env 1.1.0 npm (+1 duplicate)
|
||||||
@@ -420,10 +443,11 @@ publicsuffix 20211207.1025-1
|
|||||||
pug 1.0.0 npm
|
pug 1.0.0 npm
|
||||||
pump 3.0.0 npm
|
pump 3.0.0 npm
|
||||||
python 1.0.0 npm
|
python 1.0.0 npm
|
||||||
qs 6.9.7 npm
|
qs 6.11.0 npm (+1 duplicate)
|
||||||
|
qs 6.12.1 npm
|
||||||
r 1.0.0 npm
|
r 1.0.0 npm
|
||||||
range-parser 1.2.1 npm
|
range-parser 1.2.1 npm
|
||||||
raw-body 2.4.0 npm
|
raw-body 3.0.0-beta.1 npm
|
||||||
razor 1.0.0 npm
|
razor 1.0.0 npm
|
||||||
rc 1.2.8 npm
|
rc 1.2.8 npm
|
||||||
readable-stream 3.6.0 npm
|
readable-stream 3.6.0 npm
|
||||||
@@ -435,10 +459,10 @@ requires-port 1.0.0
|
|||||||
restructuredtext 1.0.0 npm
|
restructuredtext 1.0.0 npm
|
||||||
rimraf 3.0.2 npm
|
rimraf 3.0.2 npm
|
||||||
rotating-file-stream 3.2.1 npm
|
rotating-file-stream 3.2.1 npm
|
||||||
router 2.0.0-alpha.1 npm
|
router 2.0.0-beta.2 npm
|
||||||
ruby 1.0.0 npm
|
ruby 1.0.0 npm
|
||||||
rust 1.0.0 npm
|
rust 1.0.0 npm
|
||||||
safe-buffer 5.1.2 npm (+2 duplicates)
|
safe-buffer 5.1.2 npm
|
||||||
safe-buffer 5.2.1 npm (+1 duplicate)
|
safe-buffer 5.2.1 npm (+1 duplicate)
|
||||||
safe-compare 1.1.4 npm
|
safe-compare 1.1.4 npm
|
||||||
safer-buffer 2.1.2 npm
|
safer-buffer 2.1.2 npm
|
||||||
@@ -446,26 +470,31 @@ scss 1.0.0
|
|||||||
search-result 1.0.0 npm
|
search-result 1.0.0 npm
|
||||||
sed 4.8-1ubuntu2 deb
|
sed 4.8-1ubuntu2 deb
|
||||||
semver 6.3.1 npm
|
semver 6.3.1 npm
|
||||||
semver 7.5.4 npm (+1 duplicate)
|
semver 7.5.4 npm
|
||||||
send 0.17.1 npm
|
semver 7.6.0 npm
|
||||||
|
send 1.0.0-beta.2 npm
|
||||||
sensible-utils 0.0.17 deb
|
sensible-utils 0.0.17 deb
|
||||||
serve-static 1.14.1 npm
|
serve-static 2.0.0-beta.2 npm
|
||||||
set-blocking 2.0.0 npm
|
set-blocking 2.0.0 npm
|
||||||
setprototypeof 1.1.0 npm
|
set-function-length 1.2.2 npm
|
||||||
setprototypeof 1.1.1 npm
|
setprototypeof 1.2.0 npm
|
||||||
shaderlab 1.0.0 npm
|
shaderlab 1.0.0 npm
|
||||||
shellscript 1.0.0 npm
|
shellscript 1.0.0 npm
|
||||||
|
side-channel 1.0.4 npm
|
||||||
|
side-channel 1.0.6 npm
|
||||||
signal-exit 3.0.7 npm
|
signal-exit 3.0.7 npm
|
||||||
simple-browser 1.0.0 npm
|
simple-browser 1.0.0 npm
|
||||||
simple-concat 1.0.1 npm
|
simple-concat 1.0.1 npm
|
||||||
simple-get 4.0.1 npm
|
simple-get 4.0.1 npm
|
||||||
smart-buffer 4.2.0 npm (+1 duplicate)
|
smart-buffer 4.2.0 npm (+1 duplicate)
|
||||||
socks 2.7.1 npm (+1 duplicate)
|
socks 2.7.1 npm
|
||||||
socks-proxy-agent 8.0.1 npm
|
socks 2.8.3 npm
|
||||||
socks-proxy-agent 8.0.2 npm
|
socks-proxy-agent 8.0.2 npm
|
||||||
|
socks-proxy-agent 8.0.4 npm
|
||||||
source-map 0.6.1 npm
|
source-map 0.6.1 npm
|
||||||
|
sprintf-js 1.1.3 npm
|
||||||
sql 1.0.0 npm
|
sql 1.0.0 npm
|
||||||
statuses 1.5.0 npm
|
statuses 2.0.1 npm
|
||||||
string-width 4.2.3 npm
|
string-width 4.2.3 npm
|
||||||
string_decoder 1.3.0 npm (+1 duplicate)
|
string_decoder 1.3.0 npm (+1 duplicate)
|
||||||
strip-ansi 6.0.1 npm
|
strip-ansi 6.0.1 npm
|
||||||
@@ -473,11 +502,11 @@ strip-json-comments 2.0.1
|
|||||||
sudo 1.9.9-1ubuntu2.4 deb
|
sudo 1.9.9-1ubuntu2.4 deb
|
||||||
swift 1.0.0 npm
|
swift 1.0.0 npm
|
||||||
sysvinit-utils 3.01-1ubuntu1 deb
|
sysvinit-utils 3.01-1ubuntu1 deb
|
||||||
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 6.2.1 npm
|
||||||
tar-fs 2.1.1 npm
|
tar-fs 2.1.1 npm
|
||||||
tar-stream 2.2.0 npm
|
tar-stream 2.2.0 npm
|
||||||
tas-client-umd 0.1.8 npm
|
tas-client-umd 0.2.0 npm
|
||||||
theme-abyss 1.0.0 npm
|
theme-abyss 1.0.0 npm
|
||||||
theme-defaults 1.0.0 npm
|
theme-defaults 1.0.0 npm
|
||||||
theme-kimbie-dark 1.0.0 npm
|
theme-kimbie-dark 1.0.0 npm
|
||||||
@@ -489,34 +518,35 @@ theme-solarized-dark 1.0.0
|
|||||||
theme-solarized-light 1.0.0 npm
|
theme-solarized-light 1.0.0 npm
|
||||||
theme-tomorrow-night-blue 1.0.0 npm
|
theme-tomorrow-night-blue 1.0.0 npm
|
||||||
to-regex-range 5.0.1 npm
|
to-regex-range 5.0.1 npm
|
||||||
toidentifier 1.0.0 npm
|
toidentifier 1.0.1 npm
|
||||||
tr46 0.0.3 npm
|
tr46 0.0.3 npm
|
||||||
tslib 2.6.2 npm
|
tslib 2.6.2 npm
|
||||||
tunnel-agent 0.6.0 npm
|
tunnel-agent 0.6.0 npm
|
||||||
tunnel-forwarding 1.0.0 npm
|
tunnel-forwarding 1.0.0 npm
|
||||||
type-is 1.6.18 npm
|
type-is 1.6.18 npm
|
||||||
typescript 1.0.0 npm
|
typescript 1.0.0 npm
|
||||||
typescript 5.3.2 npm
|
typescript 5.5.4 npm
|
||||||
typescript-language-features 1.0.0 npm
|
typescript-language-features 1.0.0 npm
|
||||||
tzdata 2024a-0ubuntu0.22.04 deb
|
tzdata 2024a-0ubuntu0.22.04.1 deb
|
||||||
ubuntu-keyring 2021.03.26 deb
|
ubuntu-keyring 2021.03.26 deb
|
||||||
universalify 0.1.2 npm
|
universalify 0.1.2 npm
|
||||||
|
universalify 2.0.1 npm
|
||||||
unpipe 1.0.0 npm
|
unpipe 1.0.0 npm
|
||||||
usrmerge 25ubuntu2 deb
|
usrmerge 25ubuntu2 deb
|
||||||
util-deprecate 1.0.2 npm (+1 duplicate)
|
util-deprecate 1.0.2 npm (+1 duplicate)
|
||||||
util-linux 2.37.2-4ubuntu3 deb
|
util-linux 2.37.2-4ubuntu3.4 deb
|
||||||
utils-merge 1.0.1 npm
|
utils-merge 1.0.1 npm
|
||||||
|
uuid 9.0.1 npm
|
||||||
vary 1.1.2 npm
|
vary 1.1.2 npm
|
||||||
vb 1.0.0 npm
|
vb 1.0.0 npm
|
||||||
vscode-css-languageserver 1.0.0 npm
|
vscode-css-languageserver 1.0.0 npm
|
||||||
vscode-extensions 0.0.1 npm
|
vscode-extensions 0.0.1 npm
|
||||||
vscode-html-languageserver 1.0.0 npm
|
vscode-html-languageserver 1.0.0 npm
|
||||||
vscode-js-profile-table 1.0.8 npm
|
vscode-js-profile-table 1.0.9 npm
|
||||||
vscode-json-languageserver 1.3.4 npm
|
vscode-json-languageserver 1.3.4 npm
|
||||||
vscode-markdown-languageserver 0.4.0 npm
|
|
||||||
vscode-oniguruma 1.7.0 npm
|
vscode-oniguruma 1.7.0 npm
|
||||||
vscode-regexpp 3.1.0 npm
|
vscode-regexpp 3.1.0 npm
|
||||||
vscode-reh 1.87.2 npm
|
vscode-reh 1.92.2 npm
|
||||||
vscode-textmate 9.0.0 npm
|
vscode-textmate 9.0.0 npm
|
||||||
vscode-theme-seti 1.0.0 npm
|
vscode-theme-seti 1.0.0 npm
|
||||||
webidl-conversions 3.0.1 npm
|
webidl-conversions 3.0.1 npm
|
||||||
@@ -524,12 +554,13 @@ whatwg-url 5.0.0
|
|||||||
which 2.0.2 npm
|
which 2.0.2 npm
|
||||||
wide-align 1.1.5 npm
|
wide-align 1.1.5 npm
|
||||||
wrappy 1.0.2 npm (+1 duplicate)
|
wrappy 1.0.2 npm (+1 duplicate)
|
||||||
ws 8.14.2 npm
|
ws 8.17.1 npm
|
||||||
xauth 1:1.1-1build2 deb
|
xauth 1:1.1-1build2 deb
|
||||||
xdg-basedir 4.0.0 npm
|
xdg-basedir 4.0.0 npm
|
||||||
xml 1.0.0 npm
|
xml 1.0.0 npm
|
||||||
yallist 4.0.0 npm (+1 duplicate)
|
yallist 4.0.0 npm (+1 duplicate)
|
||||||
yaml 1.0.0 npm
|
yaml 1.0.0 npm
|
||||||
yauzl 2.10.0 npm
|
yauzl 2.10.0 npm
|
||||||
|
yauzl 3.1.1 npm
|
||||||
yazl 2.4.3 npm
|
yazl 2.4.3 npm
|
||||||
zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb
|
zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb
|
||||||
|
|||||||
Reference in New Issue
Block a user