mirror of
https://github.com/linuxserver/docker-code-server.git
synced 2026-05-04 19:46:13 +02:00
Compare commits
No commits in common. "master" and "4.111.0-ls323" have entirely different histories.
master
...
4.111.0-ls
108
Jenkinsfile
vendored
108
Jenkinsfile
vendored
@ -75,7 +75,6 @@ pipeline {
|
|||||||
'''
|
'''
|
||||||
script{
|
script{
|
||||||
env.EXIT_STATUS = ''
|
env.EXIT_STATUS = ''
|
||||||
env.CI_TEST_ATTEMPTED = ''
|
|
||||||
env.LS_RELEASE = sh(
|
env.LS_RELEASE = sh(
|
||||||
script: '''docker run --rm quay.io/skopeo/stable:v1 inspect docker://ghcr.io/${LS_USER}/${CONTAINER_NAME}:latest 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}:latest 2>/dev/null | jq -r '.Labels.build_version' | awk '{print $3}' | grep '\\-ls' || : ''',
|
||||||
returnStdout: true).trim()
|
returnStdout: true).trim()
|
||||||
@ -872,7 +871,6 @@ pipeline {
|
|||||||
script{
|
script{
|
||||||
env.CI_URL = 'https://ci-tests.linuxserver.io/' + env.IMAGE + '/' + env.META_TAG + '/index.html'
|
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'
|
env.CI_JSON_URL = 'https://ci-tests.linuxserver.io/' + env.IMAGE + '/' + env.META_TAG + '/report.json'
|
||||||
env.CI_TEST_ATTEMPTED = 'true'
|
|
||||||
}
|
}
|
||||||
sh '''#! /bin/bash
|
sh '''#! /bin/bash
|
||||||
set -e
|
set -e
|
||||||
@ -1075,58 +1073,13 @@ EOF
|
|||||||
) '''
|
) '''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// 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: 'EXIT_STATUS', value: ''
|
||||||
}
|
}
|
||||||
/* ######################
|
steps {
|
||||||
Comment on PR and Send status to Discord
|
|
||||||
###################### */
|
|
||||||
post {
|
|
||||||
always {
|
|
||||||
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"){
|
|
||||||
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} '''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
script {
|
|
||||||
if (env.GITHUBIMAGE =~ /lspipepr/){
|
|
||||||
if (env.CI_TEST_ATTEMPTED == "true"){
|
|
||||||
sh '''#! /bin/bash
|
sh '''#! /bin/bash
|
||||||
# Function to retrieve JSON data from URL
|
# Function to retrieve JSON data from URL
|
||||||
get_json() {
|
get_json() {
|
||||||
@ -1195,9 +1148,15 @@ EOF
|
|||||||
-d "{\\"body\\": \\"I am a bot, here is the pushed image/manifest for this PR: \\n\\n\\`${GITHUBIMAGE}:${META_TAG}\\`\\"}"
|
-d "{\\"body\\": \\"I am a bot, here is the pushed image/manifest for this PR: \\n\\n\\`${GITHUBIMAGE}:${META_TAG}\\`\\"}"
|
||||||
fi
|
fi
|
||||||
'''
|
'''
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/* ######################
|
||||||
|
Send status to Discord
|
||||||
|
###################### */
|
||||||
|
post {
|
||||||
|
always {
|
||||||
sh '''#!/bin/bash
|
sh '''#!/bin/bash
|
||||||
rm -rf /config/.ssh/id_sign
|
rm -rf /config/.ssh/id_sign
|
||||||
rm -rf /config/.ssh/id_sign.pub
|
rm -rf /config/.ssh/id_sign.pub
|
||||||
@ -1205,6 +1164,49 @@ EOF
|
|||||||
git config --global --unset user.signingkey
|
git config --global --unset user.signingkey
|
||||||
git config --global --unset commit.gpgsign
|
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"){
|
||||||
|
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} '''
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
cleanup {
|
cleanup {
|
||||||
sh '''#! /bin/bash
|
sh '''#! /bin/bash
|
||||||
|
|||||||
@ -1,50 +1,44 @@
|
|||||||
NAME VERSION TYPE
|
NAME VERSION TYPE
|
||||||
@anthropic-ai/sandbox-runtime 0.0.42 npm
|
@anthropic-ai/sandbox-runtime 0.0.23 npm
|
||||||
@babel/runtime 7.28.6 npm
|
@babel/runtime 7.28.6 npm
|
||||||
@coder/logger 3.0.1 npm
|
@coder/logger 3.0.1 npm
|
||||||
@emnapi/runtime 1.9.2 npm (+1 duplicate)
|
|
||||||
@epic-web/invariant 1.0.0 npm
|
@epic-web/invariant 1.0.0 npm
|
||||||
@github/copilot 1.0.24 npm
|
|
||||||
@github/copilot 1.0.28 npm
|
|
||||||
@github/copilot-sdk 0.2.2 npm
|
|
||||||
@img/sharp-wasm32 0.34.5 npm (+1 duplicate)
|
|
||||||
@isaacs/fs-minipass 4.0.1 npm
|
|
||||||
@microsoft/1ds-core-js 3.2.13 npm
|
@microsoft/1ds-core-js 3.2.13 npm
|
||||||
@microsoft/1ds-post-js 3.2.13 npm
|
@microsoft/1ds-post-js 3.2.13 npm
|
||||||
@microsoft/applicationinsights-core-js 2.8.15 npm
|
@microsoft/applicationinsights-core-js 2.8.15 npm
|
||||||
@microsoft/applicationinsights-shims 2.0.2 npm
|
@microsoft/applicationinsights-shims 2.0.2 npm
|
||||||
@microsoft/dynamicproto-js 1.1.9 npm
|
@microsoft/dynamicproto-js 1.1.9 npm
|
||||||
@parcel/watcher 2.5.6 npm
|
@parcel/watcher 2.5.6 npm
|
||||||
|
@parcel/watcher-linux-x64-glibc 2.5.6 npm
|
||||||
|
@parcel/watcher-linux-x64-musl 2.5.6 npm
|
||||||
@phc/format 1.0.0 npm
|
@phc/format 1.0.0 npm
|
||||||
@pondwader/socks5-server 1.0.10 npm
|
@pondwader/socks5-server 1.0.10 npm
|
||||||
@tootallnate/once 3.0.1 npm
|
@tootallnate/once 3.0.1 npm
|
||||||
@tootallnate/quickjs-emscripten 0.23.0 npm
|
@tootallnate/quickjs-emscripten 0.23.0 npm
|
||||||
@types/lodash 4.17.23 npm
|
@types/lodash 4.17.23 npm
|
||||||
@types/lodash-es 4.17.12 npm
|
@types/lodash-es 4.17.12 npm
|
||||||
@vscode/copilot-typescript-server-plugin 1.0.0 npm
|
|
||||||
@vscode/deviceid 0.1.4 npm
|
@vscode/deviceid 0.1.4 npm
|
||||||
@vscode/fs-copyfile 2.0.0 npm
|
|
||||||
@vscode/iconv-lite-umd 0.7.1 npm
|
@vscode/iconv-lite-umd 0.7.1 npm
|
||||||
@vscode/native-watchdog 1.4.6 npm
|
@vscode/native-watchdog 1.4.6 npm
|
||||||
@vscode/proxy-agent 0.41.0 npm
|
@vscode/proxy-agent 0.38.0 npm
|
||||||
@vscode/ripgrep 1.17.1 npm
|
@vscode/ripgrep 1.17.0 npm
|
||||||
@vscode/spdlog 0.15.8 npm
|
@vscode/spdlog 0.15.7 npm
|
||||||
@vscode/sqlite3 5.1.12-vscode npm
|
@vscode/tree-sitter-wasm 0.3.0 npm
|
||||||
@vscode/tree-sitter-wasm 0.3.1 npm
|
|
||||||
@vscode/vscode-languagedetection 1.0.23 npm
|
@vscode/vscode-languagedetection 1.0.23 npm
|
||||||
@xterm/addon-clipboard 0.3.0-beta.197 npm
|
@vscode/windows-process-tree 0.6.3 npm
|
||||||
@xterm/addon-image 0.10.0-beta.197 npm
|
@vscode/windows-registry 1.2.0 npm
|
||||||
@xterm/addon-ligatures 0.11.0-beta.197 npm
|
@xterm/addon-clipboard 0.3.0-beta.168 npm
|
||||||
@xterm/addon-progress 0.3.0-beta.197 npm
|
@xterm/addon-image 0.10.0-beta.168 npm
|
||||||
@xterm/addon-search 0.17.0-beta.197 npm
|
@xterm/addon-ligatures 0.11.0-beta.168 npm
|
||||||
@xterm/addon-serialize 0.15.0-beta.197 npm
|
@xterm/addon-progress 0.3.0-beta.168 npm
|
||||||
@xterm/addon-unicode11 0.10.0-beta.197 npm
|
@xterm/addon-search 0.17.0-beta.168 npm
|
||||||
@xterm/addon-webgl 0.20.0-beta.196 npm
|
@xterm/addon-serialize 0.15.0-beta.168 npm
|
||||||
@xterm/headless 6.1.0-beta.197 npm
|
@xterm/addon-unicode11 0.10.0-beta.168 npm
|
||||||
@xterm/xterm 6.1.0-beta.197 npm
|
@xterm/addon-webgl 0.20.0-beta.167 npm
|
||||||
Microsoft.PowerShell.PSReadLine 2.4.3 dotnet
|
@xterm/headless 6.1.0-beta.168 npm
|
||||||
Microsoft.PowerShell.PSReadLine.Polyfiller 1.0.0.0 dotnet (+1 duplicate)
|
@xterm/xterm 6.1.0-beta.168 npm
|
||||||
Microsoft.PowerShell.Pager 1.0.0.0 dotnet
|
ConPTY Interface Library 1.23.251008001 binary (+1 duplicate)
|
||||||
|
Console Window and PTY Host (Open Source) 1.23.251008001 binary (+1 duplicate)
|
||||||
accepts 2.0.0 npm
|
accepts 2.0.0 npm
|
||||||
adduser 3.137ubuntu1 deb
|
adduser 3.137ubuntu1 deb
|
||||||
agent-base 7.1.1 npm
|
agent-base 7.1.1 npm
|
||||||
@ -53,19 +47,18 @@ apt 2.8.3 d
|
|||||||
apt-utils 2.8.3 deb
|
apt-utils 2.8.3 deb
|
||||||
argon2 0.44.0 npm
|
argon2 0.44.0 npm
|
||||||
argparse 2.0.1 npm
|
argparse 2.0.1 npm
|
||||||
asn1 0.2.6 npm
|
|
||||||
ast-types 0.13.4 npm
|
ast-types 0.13.4 npm
|
||||||
base-files 13ubuntu10.4 deb
|
base-files 13ubuntu10.4 deb
|
||||||
base-passwd 3.6.3build1 deb
|
base-passwd 3.6.3build1 deb
|
||||||
base64-js 1.5.1 npm
|
base64-js 1.5.1 npm
|
||||||
bash 5.2.21-2ubuntu4 deb
|
bash 5.2.21-2ubuntu4 deb
|
||||||
basic-ftp 5.3.0 npm
|
basic-ftp 5.2.0 npm
|
||||||
bat 10.0.0 npm
|
bat 10.0.0 npm
|
||||||
bcrypt-pbkdf 1.0.2 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 2.2.2 npm
|
body-parser 2.2.2 npm
|
||||||
bsdutils 1:2.39.3-9ubuntu6.5 deb
|
bsdutils 1:2.39.3-9ubuntu6.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
|
||||||
@ -79,10 +72,9 @@ call-bound 1.0.4 n
|
|||||||
catatonit 0.1.7-1 deb
|
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 3.0.0 npm
|
|
||||||
clojure 10.0.0 npm
|
clojure 10.0.0 npm
|
||||||
code-server 1.117.0 npm
|
code-server 1.111.0 npm
|
||||||
code-server 4.117.0 npm
|
code-server 4.111.0 npm
|
||||||
coffeescript 10.0.0 npm
|
coffeescript 10.0.0 npm
|
||||||
commander 12.1.0 npm
|
commander 12.1.0 npm
|
||||||
commander 8.3.0 npm
|
commander 8.3.0 npm
|
||||||
@ -95,8 +87,7 @@ cookie 0.7.2 n
|
|||||||
cookie-parser 1.4.7 npm
|
cookie-parser 1.4.7 npm
|
||||||
cookie-signature 1.0.6 npm
|
cookie-signature 1.0.6 npm
|
||||||
cookie-signature 1.2.2 npm
|
cookie-signature 1.2.2 npm
|
||||||
copilot-chat 0.45.0 npm
|
coreutils 9.4-3ubuntu6.1 deb
|
||||||
coreutils 9.4-3ubuntu6.2 deb
|
|
||||||
cpp 10.0.0 npm
|
cpp 10.0.0 npm
|
||||||
cron 3.0pl1-184ubuntu2 deb
|
cron 3.0pl1-184ubuntu2 deb
|
||||||
cron-daemon-common 3.0pl1-184ubuntu2 deb
|
cron-daemon-common 3.0pl1-184ubuntu2 deb
|
||||||
@ -153,7 +144,7 @@ fd-slicer 1.1.0 n
|
|||||||
file-uri-to-path 1.0.0 npm
|
file-uri-to-path 1.0.0 npm
|
||||||
finalhandler 2.1.1 npm
|
finalhandler 2.1.1 npm
|
||||||
findutils 4.9.0-5build1 deb
|
findutils 4.9.0-5build1 deb
|
||||||
follow-redirects 1.16.0 npm
|
follow-redirects 1.15.11 npm
|
||||||
forwarded 0.2.0 npm
|
forwarded 0.2.0 npm
|
||||||
fresh 2.0.0 npm
|
fresh 2.0.0 npm
|
||||||
fs-constants 1.0.0 npm
|
fs-constants 1.0.0 npm
|
||||||
@ -221,9 +212,9 @@ isexe 2.0.0 n
|
|||||||
jake 10.0.0 npm
|
jake 10.0.0 npm
|
||||||
java 10.0.0 npm
|
java 10.0.0 npm
|
||||||
javascript 10.0.0 npm
|
javascript 10.0.0 npm
|
||||||
jq 1.7.1-3ubuntu0.24.04.2 deb
|
jq 1.7.1-3ubuntu0.24.04.1 deb
|
||||||
js-base64 3.7.7 npm
|
js-base64 3.7.7 npm
|
||||||
js-debug 1.117.0 npm
|
js-debug 1.110.0 npm
|
||||||
js-debug-companion 1.1.3 npm
|
js-debug-companion 1.1.3 npm
|
||||||
js-yaml 4.1.1 npm
|
js-yaml 4.1.1 npm
|
||||||
jsbn 1.1.0 npm
|
jsbn 1.1.0 npm
|
||||||
@ -241,21 +232,21 @@ latex 10.0.0 n
|
|||||||
less 10.0.0 npm
|
less 10.0.0 npm
|
||||||
less 590-2ubuntu2.1 deb
|
less 590-2ubuntu2.1 deb
|
||||||
libacl1 2.3.2-1build1.1 deb
|
libacl1 2.3.2-1build1.1 deb
|
||||||
libapparmor1 4.0.1really4.0.1-0ubuntu0.24.04.6 deb
|
libapparmor1 4.0.1really4.0.1-0ubuntu0.24.04.5 deb
|
||||||
libapt-pkg6.0t64 2.8.3 deb
|
libapt-pkg6.0t64 2.8.3 deb
|
||||||
libassuan0 2.5.6-1build1 deb
|
libassuan0 2.5.6-1build1 deb
|
||||||
libatomic1 14.2.0-4ubuntu2~24.04.1 deb
|
libatomic1 14.2.0-4ubuntu2~24.04.1 deb
|
||||||
libattr1 1:2.5.2-1build1.1 deb
|
libattr1 1:2.5.2-1build1.1 deb
|
||||||
libaudit-common 1:3.1.2-2.1build1.1 deb
|
libaudit-common 1:3.1.2-2.1build1.1 deb
|
||||||
libaudit1 1:3.1.2-2.1build1.1 deb
|
libaudit1 1:3.1.2-2.1build1.1 deb
|
||||||
libblkid1 2.39.3-9ubuntu6.5 deb
|
libblkid1 2.39.3-9ubuntu6.4 deb
|
||||||
libbrotli1 1.1.0-2build2 deb
|
libbrotli1 1.1.0-2build2 deb
|
||||||
libbsd0 0.12.1-1build1.1 deb
|
libbsd0 0.12.1-1build1.1 deb
|
||||||
libbz2-1.0 1.0.8-5.1build0.1 deb
|
libbz2-1.0 1.0.8-5.1build0.1 deb
|
||||||
libc-bin 2.39-0ubuntu8.7 deb
|
libc-bin 2.39-0ubuntu8.7 deb
|
||||||
libc6 2.39-0ubuntu8.7 deb
|
libc6 2.39-0ubuntu8.7 deb
|
||||||
libcap-ng0 0.8.4-2build2 deb
|
libcap-ng0 0.8.4-2build2 deb
|
||||||
libcap2 1:2.66-5ubuntu2.4 deb
|
libcap2 1:2.66-5ubuntu2.2 deb
|
||||||
libcbor0.10 0.10.2-1.2ubuntu2 deb
|
libcbor0.10 0.10.2-1.2ubuntu2 deb
|
||||||
libcom-err2 1.47.0-2.4~exp1ubuntu4.1 deb
|
libcom-err2 1.47.0-2.4~exp1ubuntu4.1 deb
|
||||||
libcrypt1 1:4.4.36-4build1 deb
|
libcrypt1 1:4.4.36-4build1 deb
|
||||||
@ -279,7 +270,7 @@ libgpg-error0 1.47-3build2.1 d
|
|||||||
libgssapi-krb5-2 1.20.1-6ubuntu2.6 deb
|
libgssapi-krb5-2 1.20.1-6ubuntu2.6 deb
|
||||||
libhogweed6t64 3.9.1-2.2build1.1 deb
|
libhogweed6t64 3.9.1-2.2build1.1 deb
|
||||||
libidn2-0 2.3.7-2build1.1 deb
|
libidn2-0 2.3.7-2build1.1 deb
|
||||||
libjq1 1.7.1-3ubuntu0.24.04.2 deb
|
libjq1 1.7.1-3ubuntu0.24.04.1 deb
|
||||||
libk5crypto3 1.20.1-6ubuntu2.6 deb
|
libk5crypto3 1.20.1-6ubuntu2.6 deb
|
||||||
libkeyutils1 1.6.3-3build1 deb
|
libkeyutils1 1.6.3-3build1 deb
|
||||||
libkrb5-3 1.20.1-6ubuntu2.6 deb
|
libkrb5-3 1.20.1-6ubuntu2.6 deb
|
||||||
@ -290,7 +281,7 @@ libldap2 2.6.10+dfsg-0ubuntu0.24.04.1 d
|
|||||||
liblz4-1 1.9.4-1build1.1 deb
|
liblz4-1 1.9.4-1build1.1 deb
|
||||||
liblzma5 5.6.1+really5.4.5-1ubuntu0.2 deb
|
liblzma5 5.6.1+really5.4.5-1ubuntu0.2 deb
|
||||||
libmd0 1.1.0-2build1.1 deb
|
libmd0 1.1.0-2build1.1 deb
|
||||||
libmount1 2.39.3-9ubuntu6.5 deb
|
libmount1 2.39.3-9ubuntu6.4 deb
|
||||||
libncursesw6 6.4+20240113-1ubuntu2 deb
|
libncursesw6 6.4+20240113-1ubuntu2 deb
|
||||||
libnettle8t64 3.9.1-2.2build1.1 deb
|
libnettle8t64 3.9.1-2.2build1.1 deb
|
||||||
libnghttp2-14 1.59.0-1ubuntu0.2 deb
|
libnghttp2-14 1.59.0-1ubuntu0.2 deb
|
||||||
@ -315,18 +306,18 @@ libselinux1 3.5-2ubuntu2.1 d
|
|||||||
libsemanage-common 3.5-1build5 deb
|
libsemanage-common 3.5-1build5 deb
|
||||||
libsemanage2 3.5-1build5 deb
|
libsemanage2 3.5-1build5 deb
|
||||||
libsepol2 3.5-2build1 deb
|
libsepol2 3.5-2build1 deb
|
||||||
libsmartcols1 2.39.3-9ubuntu6.5 deb
|
libsmartcols1 2.39.3-9ubuntu6.4 deb
|
||||||
libsqlite3-0 3.45.1-1ubuntu2.5 deb
|
libsqlite3-0 3.45.1-1ubuntu2.5 deb
|
||||||
libss2 1.47.0-2.4~exp1ubuntu4.1 deb
|
libss2 1.47.0-2.4~exp1ubuntu4.1 deb
|
||||||
libssh-4 0.10.6-2ubuntu0.4 deb
|
libssh-4 0.10.6-2ubuntu0.3 deb
|
||||||
libssl3t64 3.0.13-0ubuntu3.9 deb
|
libssl3t64 3.0.13-0ubuntu3.7 deb
|
||||||
libstdc++6 14.2.0-4ubuntu2~24.04.1 deb
|
libstdc++6 14.2.0-4ubuntu2~24.04.1 deb
|
||||||
libsystemd0 255.4-1ubuntu8.15 deb
|
libsystemd0 255.4-1ubuntu8.12 deb
|
||||||
libtasn1-6 4.19.0-3ubuntu0.24.04.2 deb
|
libtasn1-6 4.19.0-3ubuntu0.24.04.2 deb
|
||||||
libtinfo6 6.4+20240113-1ubuntu2 deb
|
libtinfo6 6.4+20240113-1ubuntu2 deb
|
||||||
libudev1 255.4-1ubuntu8.15 deb
|
libudev1 255.4-1ubuntu8.12 deb
|
||||||
libunistring5 1.1-2build1.1 deb
|
libunistring5 1.1-2build1.1 deb
|
||||||
libuuid1 2.39.3-9ubuntu6.5 deb
|
libuuid1 2.39.3-9ubuntu6.4 deb
|
||||||
libx11-6 2:1.8.7-1build1 deb
|
libx11-6 2:1.8.7-1build1 deb
|
||||||
libx11-data 2:1.8.7-1build1 deb
|
libx11-data 2:1.8.7-1build1 deb
|
||||||
libxau6 1:1.0.9-1build6 deb
|
libxau6 1:1.0.9-1build6 deb
|
||||||
@ -338,7 +329,7 @@ libxxhash0 0.8.2-2build1 d
|
|||||||
libzstd1 1.5.5+dfsg2-2build1.1 deb
|
libzstd1 1.5.5+dfsg2-2build1.1 deb
|
||||||
limiter 2.1.0 npm
|
limiter 2.1.0 npm
|
||||||
locales 2.39-0ubuntu8.7 deb
|
locales 2.39-0ubuntu8.7 deb
|
||||||
lodash-es 4.18.1 npm
|
lodash-es 4.17.23 npm
|
||||||
log 10.0.0 npm
|
log 10.0.0 npm
|
||||||
login 1:4.13+dfsg1-4ubuntu3.2 deb
|
login 1:4.13+dfsg1-4ubuntu3.2 deb
|
||||||
logsave 1.47.0-2.4~exp1ubuntu4.1 deb
|
logsave 1.47.0-2.4~exp1ubuntu4.1 deb
|
||||||
@ -362,11 +353,9 @@ mime-db 1.54.0 n
|
|||||||
mime-types 3.0.2 npm
|
mime-types 3.0.2 npm
|
||||||
mimic-response 3.1.0 npm
|
mimic-response 3.1.0 npm
|
||||||
minimist 1.2.8 npm
|
minimist 1.2.8 npm
|
||||||
minipass 7.1.3 npm
|
|
||||||
minizlib 3.1.0 npm
|
|
||||||
mkdirp 1.0.4 npm
|
mkdirp 1.0.4 npm
|
||||||
mkdirp-classic 0.5.3 npm
|
mkdirp-classic 0.5.3 npm
|
||||||
mount 2.39.3-9ubuntu6.5 deb
|
mount 2.39.3-9ubuntu6.4 deb
|
||||||
ms 2.0.0 npm
|
ms 2.0.0 npm
|
||||||
ms 2.1.2 npm
|
ms 2.1.2 npm
|
||||||
ms 2.1.3 npm
|
ms 2.1.3 npm
|
||||||
@ -380,19 +369,20 @@ net-tools 2.10-0.1ubuntu4.4 d
|
|||||||
netbase 6.4 deb
|
netbase 6.4 deb
|
||||||
netcat-openbsd 1.226-1ubuntu2 deb
|
netcat-openbsd 1.226-1ubuntu2 deb
|
||||||
netmask 2.0.2 npm
|
netmask 2.0.2 npm
|
||||||
node 22.22.1 binary
|
node 22.22.0 binary
|
||||||
node-abi 3.8.0 npm
|
node-abi 3.8.0 npm
|
||||||
|
node-addon-api 7.1.0 npm
|
||||||
node-addon-api 8.6.0 npm
|
node-addon-api 8.6.0 npm
|
||||||
node-gyp-build 4.8.4 npm
|
node-gyp-build 4.8.4 npm
|
||||||
node-pty 1.2.0-beta.12 npm
|
node-pty 1.2.0-beta.10 npm
|
||||||
npm 1.0.1 npm
|
npm 1.0.1 npm
|
||||||
object-inspect 1.13.4 npm
|
object-inspect 1.13.4 npm
|
||||||
objective-c 10.0.0 npm
|
objective-c 10.0.0 npm
|
||||||
on-finished 2.4.1 npm
|
on-finished 2.4.1 npm
|
||||||
on-headers 1.1.0 npm
|
on-headers 1.1.0 npm
|
||||||
once 1.4.0 npm (+1 duplicate)
|
once 1.4.0 npm (+1 duplicate)
|
||||||
openssh-client 1:9.6p1-3ubuntu13.16 deb
|
openssh-client 1:9.6p1-3ubuntu13.15 deb
|
||||||
openssl 3.0.13-0ubuntu3.9 deb
|
openssl 3.0.13-0ubuntu3.7 deb
|
||||||
opentype.js 0.8.0 npm
|
opentype.js 0.8.0 npm
|
||||||
os-tmpdir 1.0.2 npm
|
os-tmpdir 1.0.2 npm
|
||||||
pac-proxy-agent 7.2.0 npm
|
pac-proxy-agent 7.2.0 npm
|
||||||
@ -401,7 +391,7 @@ parseurl 1.3.3 n
|
|||||||
passwd 1:4.13+dfsg1-4ubuntu3.2 deb
|
passwd 1:4.13+dfsg1-4ubuntu3.2 deb
|
||||||
patch 2.7.6-7build3 deb
|
patch 2.7.6-7build3 deb
|
||||||
path-key 3.1.1 npm
|
path-key 3.1.1 npm
|
||||||
path-to-regexp 8.4.2 npm
|
path-to-regexp 8.3.0 npm
|
||||||
pem 1.14.8 npm
|
pem 1.14.8 npm
|
||||||
pend 1.2.0 npm
|
pend 1.2.0 npm
|
||||||
perl 10.0.0 npm
|
perl 10.0.0 npm
|
||||||
@ -410,9 +400,10 @@ perl-base 5.38.2-3.2ubuntu0.2 d
|
|||||||
perl-modules-5.38 5.38.2-3.2ubuntu0.2 deb
|
perl-modules-5.38 5.38.2-3.2ubuntu0.2 deb
|
||||||
php 10.0.0 npm
|
php 10.0.0 npm
|
||||||
php-language-features 10.0.0 npm
|
php-language-features 10.0.0 npm
|
||||||
picomatch 4.0.4 npm
|
picomatch 4.0.3 npm
|
||||||
pinentry-curses 1.2.1-3ubuntu5 deb
|
pinentry-curses 1.2.1-3ubuntu5 deb
|
||||||
powershell 10.0.0 npm
|
powershell 10.0.0 npm
|
||||||
|
prebuild-install 7.1.2 npm
|
||||||
procps 2:4.0.4-4ubuntu3.2 deb
|
procps 2:4.0.4-4ubuntu3.2 deb
|
||||||
prompt 10.0.0 npm
|
prompt 10.0.0 npm
|
||||||
proxy-addr 2.0.7 npm
|
proxy-addr 2.0.7 npm
|
||||||
@ -439,7 +430,7 @@ ruby 10.0.0 n
|
|||||||
rust 10.0.0 npm
|
rust 10.0.0 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 (+1 duplicate)
|
safer-buffer 2.1.2 npm
|
||||||
scss 10.0.0 npm
|
scss 10.0.0 npm
|
||||||
search-result 10.0.0 npm
|
search-result 10.0.0 npm
|
||||||
sed 4.9-2build1 deb
|
sed 4.9-2build1 deb
|
||||||
@ -469,20 +460,19 @@ socks-proxy-agent 8.0.5 n
|
|||||||
source-map 0.6.1 npm
|
source-map 0.6.1 npm
|
||||||
sprintf-js 1.1.3 npm
|
sprintf-js 1.1.3 npm
|
||||||
sql 10.0.0 npm
|
sql 10.0.0 npm
|
||||||
ssh2 1.17.0 npm
|
|
||||||
statuses 2.0.2 npm
|
statuses 2.0.2 npm
|
||||||
string_decoder 1.3.0 npm
|
string_decoder 1.3.0 npm
|
||||||
strip-json-comments 2.0.1 npm
|
strip-json-comments 2.0.1 npm
|
||||||
sudo 1.9.15p5-3ubuntu5.24.04.2 deb
|
sudo 1.9.15p5-3ubuntu5.24.04.2 deb
|
||||||
swift 10.0.0 npm
|
swift 10.0.0 npm
|
||||||
systemd-standalone-sysusers 255.4-1ubuntu8.15 deb
|
systemd-standalone-sysusers 255.4-1ubuntu8.12 deb
|
||||||
sysvinit-utils 3.08-6ubuntu3 deb
|
sysvinit-utils 3.08-6ubuntu3 deb
|
||||||
tar 1.35+dfsg-3build1 deb
|
tar 1.35+dfsg-3build1 deb
|
||||||
tar 7.5.13 npm
|
|
||||||
tar-fs 2.1.4 npm
|
tar-fs 2.1.4 npm
|
||||||
tar-stream 2.2.0 npm
|
tar-stream 2.2.0 npm
|
||||||
tas-client 0.3.1 npm
|
tas-client 0.3.1 npm
|
||||||
terminal-suggest 1.0.1 npm
|
terminal-suggest 1.0.1 npm
|
||||||
|
theme-2026 0.1.0 npm
|
||||||
theme-abyss 10.0.0 npm
|
theme-abyss 10.0.0 npm
|
||||||
theme-defaults 10.0.0 npm
|
theme-defaults 10.0.0 npm
|
||||||
theme-kimbie-dark 10.0.0 npm
|
theme-kimbie-dark 10.0.0 npm
|
||||||
@ -495,23 +485,21 @@ theme-solarized-light 10.0.0 n
|
|||||||
theme-tomorrow-night-blue 10.0.0 npm
|
theme-tomorrow-night-blue 10.0.0 npm
|
||||||
tiny-inflate 1.0.3 npm
|
tiny-inflate 1.0.3 npm
|
||||||
toidentifier 1.0.1 npm
|
toidentifier 1.0.1 npm
|
||||||
tslib 2.8.1 npm
|
tslib 2.8.1 npm (+1 duplicate)
|
||||||
tunnel-agent 0.6.0 npm
|
tunnel-agent 0.6.0 npm
|
||||||
tunnel-forwarding 10.0.0 npm
|
tunnel-forwarding 10.0.0 npm
|
||||||
tweetnacl 0.14.5 npm
|
|
||||||
type-is 2.0.1 npm
|
type-is 2.0.1 npm
|
||||||
typescript 10.0.0 npm
|
typescript 10.0.0 npm
|
||||||
typescript 5.9.3 npm
|
typescript 5.9.3 npm (+1 duplicate)
|
||||||
typescript 6.0.3 npm
|
|
||||||
typescript-language-features 10.0.0 npm
|
typescript-language-features 10.0.0 npm
|
||||||
tzdata 2026a-0ubuntu0.24.04.1 deb
|
tzdata 2025b-0ubuntu0.24.04.1 deb
|
||||||
ubuntu-keyring 2023.11.28.1 deb
|
ubuntu-keyring 2023.11.28.1 deb
|
||||||
undici 7.24.4 npm
|
undici 7.19.0 npm
|
||||||
universalify 2.0.1 npm
|
universalify 2.0.1 npm
|
||||||
unminimize 0.2.1 deb
|
unminimize 0.2.1 deb
|
||||||
unpipe 1.0.0 npm
|
unpipe 1.0.0 npm
|
||||||
util-deprecate 1.0.2 npm
|
util-deprecate 1.0.2 npm
|
||||||
util-linux 2.39.3-9ubuntu6.5 deb
|
util-linux 2.39.3-9ubuntu6.4 deb
|
||||||
uuid 9.0.1 npm
|
uuid 9.0.1 npm
|
||||||
vary 1.1.2 npm
|
vary 1.1.2 npm
|
||||||
vb 10.0.0 npm
|
vb 10.0.0 npm
|
||||||
@ -520,23 +508,20 @@ vscode-extensions 0.0.1 n
|
|||||||
vscode-html-languageserver 10.0.0 npm
|
vscode-html-languageserver 10.0.0 npm
|
||||||
vscode-js-profile-table 1.0.10 npm
|
vscode-js-profile-table 1.0.10 npm
|
||||||
vscode-json-languageserver 1.3.4 npm
|
vscode-json-languageserver 1.3.4 npm
|
||||||
vscode-jsonrpc 8.2.1 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-textmate 9.3.2 npm
|
vscode-textmate 9.3.2 npm
|
||||||
vscode-theme-seti 10.0.0 npm
|
vscode-theme-seti 10.0.0 npm
|
||||||
which 2.0.2 npm
|
which 2.0.2 npm
|
||||||
wrappy 1.0.2 npm (+1 duplicate)
|
wrappy 1.0.2 npm (+1 duplicate)
|
||||||
ws 8.19.0 npm (+1 duplicate)
|
ws 8.19.0 npm
|
||||||
xauth 1:1.1.2-1build1 deb
|
xauth 1:1.1.2-1build1 deb
|
||||||
xdg-basedir 4.0.0 npm
|
xdg-basedir 4.0.0 npm
|
||||||
xml 10.0.0 npm
|
xml 10.0.0 npm
|
||||||
yallist 4.0.0 npm
|
yallist 4.0.0 npm
|
||||||
yallist 5.0.0 npm
|
|
||||||
yaml 10.0.0 npm
|
yaml 10.0.0 npm
|
||||||
yauzl 2.10.0 npm
|
yauzl 2.10.0 npm
|
||||||
yauzl 3.1.1 npm
|
yauzl 3.1.1 npm
|
||||||
yazl 2.4.3 npm
|
yazl 2.4.3 npm
|
||||||
zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb
|
zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb
|
||||||
zod 3.25.76 npm
|
zod 3.25.76 npm
|
||||||
zod 4.3.6 npm
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user