mirror of
https://github.com/linuxserver/docker-swag.git
synced 2026-05-03 09:24:27 +09:00
Compare commits
4 Commits
5.4.0-ls44
...
5.5.0-ls45
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
005a68591d | ||
|
|
01bfb62124 | ||
|
|
04ad8386bf | ||
|
|
b409073642 |
108
Jenkinsfile
vendored
108
Jenkinsfile
vendored
@@ -76,6 +76,7 @@ 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()
|
||||||
@@ -871,6 +872,7 @@ 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
|
||||||
@@ -1073,13 +1075,58 @@ 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() {
|
||||||
@@ -1148,15 +1195,9 @@ 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
|
||||||
@@ -1164,49 +1205,6 @@ 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,7 +1,7 @@
|
|||||||
NAME VERSION TYPE
|
NAME VERSION TYPE
|
||||||
Simple Launcher 1.1.0.14 binary (+5 duplicates)
|
Simple Launcher 1.1.0.14 binary (+5 duplicates)
|
||||||
acl-libs 2.3.2-r1 apk
|
acl-libs 2.3.2-r1 apk
|
||||||
acme 5.4.0 python
|
acme 5.5.0 python
|
||||||
alpine-baselayout 3.7.0-r0 apk
|
alpine-baselayout 3.7.0-r0 apk
|
||||||
alpine-baselayout-data 3.7.0-r0 apk
|
alpine-baselayout-data 3.7.0-r0 apk
|
||||||
alpine-keys 2.5-r0 apk
|
alpine-keys 2.5-r0 apk
|
||||||
@@ -22,8 +22,8 @@ azure-mgmt-dns 9.0.0 python
|
|||||||
backports-tarfile 1.2.0 python
|
backports-tarfile 1.2.0 python
|
||||||
bash 5.2.37-r0 apk
|
bash 5.2.37-r0 apk
|
||||||
beautifulsoup4 4.14.3 python
|
beautifulsoup4 4.14.3 python
|
||||||
boto3 1.42.73 python
|
boto3 1.42.84 python
|
||||||
botocore 1.42.73 python
|
botocore 1.42.84 python
|
||||||
brotli-libs 1.1.0-r2 apk
|
brotli-libs 1.1.0-r2 apk
|
||||||
bs4 0.0.2 python
|
bs4 0.0.2 python
|
||||||
busybox 1.37.0-r20 apk
|
busybox 1.37.0-r20 apk
|
||||||
@@ -33,18 +33,18 @@ c-client 2007f-r15 apk
|
|||||||
ca-certificates 20250911-r0 apk
|
ca-certificates 20250911-r0 apk
|
||||||
ca-certificates-bundle 20250911-r0 apk
|
ca-certificates-bundle 20250911-r0 apk
|
||||||
catatonit 0.2.1-r0 apk
|
catatonit 0.2.1-r0 apk
|
||||||
certbot 5.4.0 python
|
certbot 5.5.0 python
|
||||||
certbot-dns-acmedns 0.1.0 python
|
certbot-dns-acmedns 0.1.0 python
|
||||||
certbot-dns-aliyun 2.0.0 python
|
certbot-dns-aliyun 2.0.0 python
|
||||||
certbot-dns-azure 1.5.0 python
|
certbot-dns-azure 1.5.0 python
|
||||||
certbot-dns-bunny 3.0.0 python
|
certbot-dns-bunny 3.0.0 python
|
||||||
certbot-dns-cloudflare 5.4.0 python
|
certbot-dns-cloudflare 5.5.0 python
|
||||||
certbot-dns-cpanel 0.4.0 python
|
certbot-dns-cpanel 0.4.0 python
|
||||||
certbot-dns-desec 1.3.2 python
|
certbot-dns-desec 1.3.2 python
|
||||||
certbot-dns-digitalocean 5.4.0 python
|
certbot-dns-digitalocean 5.5.0 python
|
||||||
certbot-dns-directadmin 1.0.15 python
|
certbot-dns-directadmin 1.0.15 python
|
||||||
certbot-dns-dnsimple 5.4.0 python
|
certbot-dns-dnsimple 5.5.0 python
|
||||||
certbot-dns-dnsmadeeasy 5.4.0 python
|
certbot-dns-dnsmadeeasy 5.5.0 python
|
||||||
certbot-dns-dnspod 0.1.0 python
|
certbot-dns-dnspod 0.1.0 python
|
||||||
certbot-dns-do 0.31.0 python
|
certbot-dns-do 0.31.0 python
|
||||||
certbot-dns-domeneshop 0.2.9 python
|
certbot-dns-domeneshop 0.2.9 python
|
||||||
@@ -52,35 +52,35 @@ certbot-dns-dreamhost 1.0 python
|
|||||||
certbot-dns-duckdns 1.8.0 python
|
certbot-dns-duckdns 1.8.0 python
|
||||||
certbot-dns-dynudns 0.0.6 python
|
certbot-dns-dynudns 0.0.6 python
|
||||||
certbot-dns-freedns 0.2.0 python
|
certbot-dns-freedns 0.2.0 python
|
||||||
certbot-dns-gehirn 5.4.0 python
|
certbot-dns-gehirn 5.5.0 python
|
||||||
certbot-dns-glesys 2.1.0 python
|
certbot-dns-glesys 2.1.0 python
|
||||||
certbot-dns-godaddy 2.8.0 python
|
certbot-dns-godaddy 2.8.0 python
|
||||||
certbot-dns-google 5.4.0 python
|
certbot-dns-google 5.5.0 python
|
||||||
certbot-dns-he 1.0.0 python
|
certbot-dns-he 1.0.0 python
|
||||||
certbot-dns-hetzner 3.0.0 python
|
certbot-dns-hetzner 3.0.0 python
|
||||||
certbot-dns-hetzner-cloud 1.0.5 python
|
certbot-dns-hetzner-cloud 1.0.5 python
|
||||||
certbot-dns-infomaniak 0.2.4 python
|
certbot-dns-infomaniak 0.2.4 python
|
||||||
certbot-dns-inwx 3.0.3 python
|
certbot-dns-inwx 3.0.3 python
|
||||||
certbot-dns-ionos 2024.11.9 python
|
certbot-dns-ionos 2024.11.9 python
|
||||||
certbot-dns-linode 5.4.0 python
|
certbot-dns-linode 5.5.0 python
|
||||||
certbot-dns-loopia 1.0.1 python
|
certbot-dns-loopia 1.0.1 python
|
||||||
certbot-dns-luadns 5.4.0 python
|
certbot-dns-luadns 5.5.0 python
|
||||||
certbot-dns-namecheap 1.0.0 python
|
certbot-dns-namecheap 1.0.0 python
|
||||||
certbot-dns-netcup 2.0.0 python
|
certbot-dns-netcup 2.0.3 python
|
||||||
certbot-dns-njalla 2.0.2 python
|
certbot-dns-njalla 2.0.2 python
|
||||||
certbot-dns-nsone 5.4.0 python
|
certbot-dns-nsone 5.5.0 python
|
||||||
certbot-dns-ovh 5.4.0 python
|
certbot-dns-ovh 5.5.0 python
|
||||||
certbot-dns-porkbun 0.11.0 python
|
certbot-dns-porkbun 0.11.0 python
|
||||||
certbot-dns-rfc2136 5.4.0 python
|
certbot-dns-rfc2136 5.5.0 python
|
||||||
certbot-dns-route53 5.4.0 python
|
certbot-dns-route53 5.5.0 python
|
||||||
certbot-dns-sakuracloud 5.4.0 python
|
certbot-dns-sakuracloud 5.5.0 python
|
||||||
certbot-dns-standalone 1.2.1 python
|
certbot-dns-standalone 1.2.1 python
|
||||||
certbot-dns-transip 0.5.2 python
|
certbot-dns-transip 0.5.2 python
|
||||||
certbot-dns-vultr 1.1.0 python
|
certbot-dns-vultr 1.1.0 python
|
||||||
certbot-plugin-gandi 1.5.0 python
|
certbot-plugin-gandi 1.5.0 python
|
||||||
certifi 2026.2.25 python
|
certifi 2026.2.25 python
|
||||||
cffi 2.0.0 python
|
cffi 2.0.0 python
|
||||||
charset-normalizer 3.4.6 python
|
charset-normalizer 3.4.7 python
|
||||||
cli UNKNOWN binary
|
cli UNKNOWN binary
|
||||||
cli-32 UNKNOWN binary
|
cli-32 UNKNOWN binary
|
||||||
cli-64 UNKNOWN binary
|
cli-64 UNKNOWN binary
|
||||||
@@ -93,7 +93,7 @@ coreutils 9.7-r1 apk
|
|||||||
coreutils-env 9.7-r1 apk
|
coreutils-env 9.7-r1 apk
|
||||||
coreutils-fmt 9.7-r1 apk
|
coreutils-fmt 9.7-r1 apk
|
||||||
coreutils-sha512sum 9.7-r1 apk
|
coreutils-sha512sum 9.7-r1 apk
|
||||||
cryptography 46.0.5 python
|
cryptography 46.0.6 python
|
||||||
curl 8.14.1-r2 apk
|
curl 8.14.1-r2 apk
|
||||||
distro 1.9.0 python
|
distro 1.9.0 python
|
||||||
dns-lexicon 3.23.2 python
|
dns-lexicon 3.23.2 python
|
||||||
@@ -121,11 +121,11 @@ gnupg-keyboxd 2.4.9-r0 apk
|
|||||||
gnupg-utils 2.4.9-r0 apk
|
gnupg-utils 2.4.9-r0 apk
|
||||||
gnupg-wks-client 2.4.9-r0 apk
|
gnupg-wks-client 2.4.9-r0 apk
|
||||||
gnutls 3.8.12-r0 apk
|
gnutls 3.8.12-r0 apk
|
||||||
google-api-core 2.30.0 python
|
google-api-core 2.30.2 python
|
||||||
google-api-python-client 2.193.0 python
|
google-api-python-client 2.193.0 python
|
||||||
google-auth 2.49.1 python
|
google-auth 2.49.1 python
|
||||||
google-auth-httplib2 0.3.0 python
|
google-auth-httplib2 0.3.1 python
|
||||||
googleapis-common-protos 1.73.0 python
|
googleapis-common-protos 1.74.0 python
|
||||||
gpg 2.4.9-r0 apk
|
gpg 2.4.9-r0 apk
|
||||||
gpg-agent 2.4.9-r0 apk
|
gpg-agent 2.4.9-r0 apk
|
||||||
gpg-wks-server 2.4.9-r0 apk
|
gpg-wks-server 2.4.9-r0 apk
|
||||||
@@ -135,7 +135,7 @@ gui UNKNOWN binary
|
|||||||
gui-32 UNKNOWN binary
|
gui-32 UNKNOWN binary
|
||||||
gui-64 UNKNOWN binary
|
gui-64 UNKNOWN binary
|
||||||
gui-arm64 UNKNOWN binary
|
gui-arm64 UNKNOWN binary
|
||||||
hcloud 2.17.0 python
|
hcloud 2.17.1 python
|
||||||
httplib2 0.31.2 python
|
httplib2 0.31.2 python
|
||||||
icu-data-en 76.1-r1 apk
|
icu-data-en 76.1-r1 apk
|
||||||
icu-libs 76.1-r1 apk
|
icu-libs 76.1-r1 apk
|
||||||
@@ -188,7 +188,7 @@ libmnl 1.0.5-r2 apk
|
|||||||
libncursesw 6.5_p20250503-r0 apk
|
libncursesw 6.5_p20250503-r0 apk
|
||||||
libnftnl 1.2.9-r0 apk
|
libnftnl 1.2.9-r0 apk
|
||||||
libpanelw 6.5_p20250503-r0 apk
|
libpanelw 6.5_p20250503-r0 apk
|
||||||
libpng 1.6.55-r0 apk
|
libpng 1.6.56-r0 apk
|
||||||
libpq 17.9-r0 apk
|
libpq 17.9-r0 apk
|
||||||
libproc2 4.0.4-r3 apk
|
libproc2 4.0.4-r3 apk
|
||||||
libpsl 0.21.5-r3 apk
|
libpsl 0.21.5-r3 apk
|
||||||
@@ -234,25 +234,25 @@ ncurses-terminfo-base 6.5_p20250503-r0 apk
|
|||||||
netcat-openbsd 1.229.1-r0 apk
|
netcat-openbsd 1.229.1-r0 apk
|
||||||
nettle 3.10.2-r0 apk
|
nettle 3.10.2-r0 apk
|
||||||
nghttp2-libs 1.65.0-r0 apk
|
nghttp2-libs 1.65.0-r0 apk
|
||||||
nginx 1.28.2-r0 apk
|
nginx 1.28.3-r0 apk
|
||||||
nginx-mod-devel-kit 1.28.2-r0 apk
|
nginx-mod-devel-kit 1.28.3-r0 apk
|
||||||
nginx-mod-http-brotli 1.28.2-r0 apk
|
nginx-mod-http-brotli 1.28.3-r0 apk
|
||||||
nginx-mod-http-dav-ext 1.28.2-r0 apk
|
nginx-mod-http-dav-ext 1.28.3-r0 apk
|
||||||
nginx-mod-http-echo 1.28.2-r0 apk
|
nginx-mod-http-echo 1.28.3-r0 apk
|
||||||
nginx-mod-http-fancyindex 1.28.2-r0 apk
|
nginx-mod-http-fancyindex 1.28.3-r0 apk
|
||||||
nginx-mod-http-geoip2 1.28.2-r0 apk
|
nginx-mod-http-geoip2 1.28.3-r0 apk
|
||||||
nginx-mod-http-headers-more 1.28.2-r0 apk
|
nginx-mod-http-headers-more 1.28.3-r0 apk
|
||||||
nginx-mod-http-image-filter 1.28.2-r0 apk
|
nginx-mod-http-image-filter 1.28.3-r0 apk
|
||||||
nginx-mod-http-perl 1.28.2-r0 apk
|
nginx-mod-http-perl 1.28.3-r0 apk
|
||||||
nginx-mod-http-redis2 1.28.2-r0 apk
|
nginx-mod-http-redis2 1.28.3-r0 apk
|
||||||
nginx-mod-http-set-misc 1.28.2-r0 apk
|
nginx-mod-http-set-misc 1.28.3-r0 apk
|
||||||
nginx-mod-http-upload-progress 1.28.2-r0 apk
|
nginx-mod-http-upload-progress 1.28.3-r0 apk
|
||||||
nginx-mod-http-xslt-filter 1.28.2-r0 apk
|
nginx-mod-http-xslt-filter 1.28.3-r0 apk
|
||||||
nginx-mod-mail 1.28.2-r0 apk
|
nginx-mod-mail 1.28.3-r0 apk
|
||||||
nginx-mod-rtmp 1.28.2-r0 apk
|
nginx-mod-rtmp 1.28.3-r0 apk
|
||||||
nginx-mod-stream 1.28.2-r0 apk
|
nginx-mod-stream 1.28.3-r0 apk
|
||||||
nginx-mod-stream-geoip2 1.28.2-r0 apk
|
nginx-mod-stream-geoip2 1.28.3-r0 apk
|
||||||
nginx-vim 1.28.2-r0 apk
|
nginx-vim 1.28.3-r0 apk
|
||||||
npth 1.8-r0 apk
|
npth 1.8-r0 apk
|
||||||
oniguruma 6.9.10-r0 apk
|
oniguruma 6.9.10-r0 apk
|
||||||
openssl 3.5.5-r0 apk
|
openssl 3.5.5-r0 apk
|
||||||
@@ -260,7 +260,7 @@ p11-kit 0.25.5-r2 apk
|
|||||||
packaging 26.0 python (+1 duplicate)
|
packaging 26.0 python (+1 duplicate)
|
||||||
parsedatetime 2.6 python
|
parsedatetime 2.6 python
|
||||||
pcre2 10.46-r0 apk
|
pcre2 10.46-r0 apk
|
||||||
perl 5.40.3-r0 apk
|
perl 5.40.4-r0 apk
|
||||||
perl-error 0.17030-r0 apk
|
perl-error 0.17030-r0 apk
|
||||||
perl-git 2.49.1-r0 apk
|
perl-git 2.49.1-r0 apk
|
||||||
php84 8.4.16-r0 apk
|
php84 8.4.16-r0 apk
|
||||||
@@ -317,8 +317,8 @@ pkb-client 2.3.1 python
|
|||||||
platformdirs 4.4.0 python
|
platformdirs 4.4.0 python
|
||||||
popt 1.19-r4 apk
|
popt 1.19-r4 apk
|
||||||
procps-ng 4.0.4-r3 apk
|
procps-ng 4.0.4-r3 apk
|
||||||
proto-plus 1.27.1 python
|
proto-plus 1.27.2 python
|
||||||
protobuf 6.33.6 python
|
protobuf 7.34.1 python
|
||||||
pyacmedns 0.4 python
|
pyacmedns 0.4 python
|
||||||
pyasn1 0.6.3 python
|
pyasn1 0.6.3 python
|
||||||
pyasn1-modules 0.4.2 python
|
pyasn1-modules 0.4.2 python
|
||||||
@@ -338,7 +338,7 @@ python3-pyc 3.12.12-r0 apk
|
|||||||
python3-pycache-pyc0 3.12.12-r0 apk
|
python3-pycache-pyc0 3.12.12-r0 apk
|
||||||
pyyaml 6.0.3 python
|
pyyaml 6.0.3 python
|
||||||
readline 8.2.13-r1 apk
|
readline 8.2.13-r1 apk
|
||||||
requests 2.32.5 python
|
requests 2.33.1 python
|
||||||
requests-file 3.0.1 python
|
requests-file 3.0.1 python
|
||||||
requests-mock 1.12.1 python
|
requests-mock 1.12.1 python
|
||||||
s3transfer 0.16.0 python
|
s3transfer 0.16.0 python
|
||||||
|
|||||||
Reference in New Issue
Block a user