Skip to content

Commit a8e02b6

Browse files
authored
Merge branch 'linuxserver:master' into improve-nc-mysql-host-port
2 parents 3b2550b + 8917e5d commit a8e02b6

12 files changed

+152
-105
lines changed

.github/ISSUE_TEMPLATE/issue.bug.md

Lines changed: 0 additions & 40 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/issue.bug.yml

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# Based on the issue template
2+
name: Bug report
3+
description: Create a report to help us improve
4+
title: "[BUG] <title>"
5+
labels: [Bug]
6+
body:
7+
- type: checkboxes
8+
attributes:
9+
label: Is there an existing issue for this?
10+
description: Please search to see if an issue already exists for the bug you encountered.
11+
options:
12+
- label: I have searched the existing issues
13+
required: true
14+
- type: textarea
15+
attributes:
16+
label: Current Behavior
17+
description: Tell us what happens instead of the expected behavior.
18+
validations:
19+
required: true
20+
- type: textarea
21+
attributes:
22+
label: Expected Behavior
23+
description: Tell us what should happen.
24+
validations:
25+
required: false
26+
- type: textarea
27+
attributes:
28+
label: Steps To Reproduce
29+
description: Steps to reproduce the behavior.
30+
placeholder: |
31+
1. In this environment...
32+
2. With this config...
33+
3. Run '...'
34+
4. See error...
35+
validations:
36+
required: true
37+
- type: textarea
38+
attributes:
39+
label: Environment
40+
description: |
41+
examples:
42+
- **OS**: Ubuntu 20.04
43+
- **How docker service was installed**: distro's packagemanager
44+
value: |
45+
- OS:
46+
- How docker service was installed:
47+
render: markdown
48+
validations:
49+
required: false
50+
- type: dropdown
51+
attributes:
52+
label: CPU architecture
53+
options:
54+
- x86-64
55+
- arm64
56+
- armhf
57+
validations:
58+
required: true
59+
- type: textarea
60+
attributes:
61+
label: Docker creation
62+
description: |
63+
Command used to create docker container
64+
Provide your docker create/run command or compose yaml snippet, or a screenshot of settings if using a gui to create the container
65+
render: bash
66+
validations:
67+
required: true
68+
- type: textarea
69+
attributes:
70+
description: |
71+
Provide a full docker log, output of "docker logs linuxserver.io"
72+
label: Container logs
73+
placeholder: |
74+
Output of `docker logs linuxserver.io`
75+
render: bash
76+
validations:
77+
required: true

.github/ISSUE_TEMPLATE/issue.feature.md

Lines changed: 0 additions & 25 deletions
This file was deleted.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Based on the issue template
2+
name: Feature request
3+
description: Suggest an idea for this project
4+
title: "[FEAT] <title>"
5+
labels: [enhancement]
6+
body:
7+
- type: checkboxes
8+
attributes:
9+
label: Is this a new feature request?
10+
description: Please search to see if a feature request already exists.
11+
options:
12+
- label: I have searched the existing issues
13+
required: true
14+
- type: textarea
15+
attributes:
16+
label: Wanted change
17+
description: Tell us what you want to happen.
18+
validations:
19+
required: true
20+
- type: textarea
21+
attributes:
22+
label: Reason for change
23+
description: Justify your request, why do you want it, what is the benefit.
24+
validations:
25+
required: true
26+
- type: textarea
27+
attributes:
28+
label: Proposed code change
29+
description: Do you have a potential code change in mind?
30+
validations:
31+
required: false

.github/workflows/external_trigger.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
external-trigger-master:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2.3.3
10+
- uses: actions/checkout@v3.1.0
1111

1212
- name: External Trigger
1313
if: github.ref == 'refs/heads/master'
@@ -48,8 +48,12 @@ jobs:
4848
| jq -r '.config.digest')
4949
image_info=$(curl -sL \
5050
--header "Authorization: Bearer ${token}" \
51-
"https://ghcr.io/v2/${image}/blobs/${digest}" \
52-
| jq -r '.container_config')
51+
"https://ghcr.io/v2/${image}/blobs/${digest}")
52+
if [[ $(echo $image_info | jq -r '.container_config') == "null" ]]; then
53+
image_info=$(echo $image_info | jq -r '.config')
54+
else
55+
image_info=$(echo $image_info | jq -r '.container_config')
56+
fi
5357
IMAGE_RELEASE=$(echo ${image_info} | jq -r '.Labels.build_version' | awk '{print $3}')
5458
IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}')
5559
if [ -z "${IMAGE_VERSION}" ]; then

.github/workflows/external_trigger_scheduler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
external-trigger-scheduler:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2.3.3
12+
- uses: actions/checkout@v3.1.0
1313
with:
1414
fetch-depth: '0'
1515

.github/workflows/greetings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ jobs:
88
steps:
99
- uses: actions/first-interaction@v1
1010
with:
11-
issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-bookstack/blob/master/.github/ISSUE_TEMPLATE/issue.bug.md) or [feature](https://github.com/linuxserver/docker-bookstack/blob/master/.github/ISSUE_TEMPLATE/issue.feature.md) issue templates!'
11+
issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-bookstack/blob/master/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-bookstack/blob/master/.github/ISSUE_TEMPLATE/issue.feature.yml) issue templates!'
1212
pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-bookstack/blob/master/.github/PULL_REQUEST_TEMPLATE.md)!'
1313
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/package_trigger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
package-trigger-master:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2.3.3
10+
- uses: actions/checkout@v3.1.0
1111

1212
- name: Package Trigger
1313
if: github.ref == 'refs/heads/master'

.github/workflows/package_trigger_scheduler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
package-trigger-scheduler:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2.3.3
12+
- uses: actions/checkout@v3.1.0
1313
with:
1414
fetch-depth: '0'
1515

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/stale@v3
13+
- uses: actions/stale@v6.0.1
1414
with:
1515
stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions."
1616
stale-pr-message: "This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions."

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ pipeline {
5959
env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT
6060
env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/'
6161
env.PULL_REQUEST = env.CHANGE_ID
62-
env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.md ./.github/ISSUE_TEMPLATE/issue.feature.md ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml'
62+
env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml'
6363
}
6464
script{
6565
env.LS_RELEASE_NUMBER = sh(
@@ -287,7 +287,7 @@ pipeline {
287287
echo "Jenkinsfile is up to date."
288288
fi
289289
# Stage 2 - Delete old templates
290-
OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md"
290+
OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md\n.github/ISSUE_TEMPLATE/issue.bug.md\n.github/ISSUE_TEMPLATE/issue.feature.md"
291291
for i in ${OLD_TEMPLATES}; do
292292
if [[ -f "${i}" ]]; then
293293
TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}"

package_versions.txt

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ busybox-1.34.1-r7
1111
ca-certificates-20220614-r0
1212
ca-certificates-bundle-20220614-r0
1313
coreutils-9.0-r2
14-
curl-7.80.0-r3
14+
curl-7.80.0-r4
1515
dbus-libs-1.12.24-r0
1616
encodings-1.0.5-r0
17-
expat-2.4.9-r0
17+
expat-2.5.0-r0
1818
fontconfig-2.13.1-r4
1919
freetype-2.11.1-r2
2020
gdbm-1.22-r0
21-
git-2.34.4-r0
21+
git-2.34.5-r0
2222
glib-2.70.1-r0
2323
icu-libs-69.1-r1
2424
libacl-2.2.53-r0
@@ -27,8 +27,8 @@ libblkid-2.37.4-r0
2727
libbsd-0.11.3-r1
2828
libbz2-1.0.8-r1
2929
libc-utils-0.7.2-r3
30-
libcrypto1.1-1.1.1q-r0
31-
libcurl-7.80.0-r3
30+
libcrypto1.1-1.1.1s-r1
31+
libcurl-7.80.0-r4
3232
libedit-20210910.3.1-r0
3333
libevent-2.1.12-r4
3434
libffi-3.4.2-r1
@@ -48,16 +48,16 @@ libretls-3.3.4-r3
4848
libsasl-2.1.28-r0
4949
libseccomp-2.5.2-r0
5050
libsm-1.2.3-r0
51-
libssl1.1-1.1.1q-r0
51+
libssl1.1-1.1.1s-r1
5252
libstdc++-10.3.1_git20211027-r0
5353
libuuid-2.37.4-r0
5454
libwebp-1.2.2-r0
55-
libx11-1.7.2-r0
55+
libx11-1.7.3.1-r0
5656
libxau-1.0.9-r0
5757
libxcb-1.14-r2
5858
libxdmcp-1.1.3-r0
5959
libxext-1.3.4-r0
60-
libxml2-2.9.14-r1
60+
libxml2-2.9.14-r2
6161
libxmu-1.1.3-r0
6262
libxpm-3.5.13-r0
6363
libxt-1.2.1-r0
@@ -74,31 +74,31 @@ netcat-openbsd-1.130-r3
7474
nghttp2-libs-1.46.0-r0
7575
nginx-1.20.2-r1
7676
oniguruma-6.9.7.1-r0
77-
openssl-1.1.1q-r0
77+
openssl-1.1.1s-r1
7878
pcre-8.45-r1
7979
pcre2-10.40-r0
80-
php8-8.0.18-r0
81-
php8-common-8.0.18-r0
82-
php8-ctype-8.0.18-r0
83-
php8-curl-8.0.18-r0
84-
php8-dom-8.0.18-r0
85-
php8-fileinfo-8.0.18-r0
86-
php8-fpm-8.0.18-r0
87-
php8-gd-8.0.18-r0
88-
php8-ldap-8.0.18-r0
89-
php8-mbstring-8.0.18-r0
90-
php8-mysqlnd-8.0.18-r0
91-
php8-openssl-8.0.18-r0
92-
php8-pdo-8.0.18-r0
93-
php8-pdo_mysql-8.0.18-r0
80+
php8-8.0.25-r0
81+
php8-common-8.0.25-r0
82+
php8-ctype-8.0.25-r0
83+
php8-curl-8.0.25-r0
84+
php8-dom-8.0.25-r0
85+
php8-fileinfo-8.0.25-r0
86+
php8-fpm-8.0.25-r0
87+
php8-gd-8.0.25-r0
88+
php8-ldap-8.0.25-r0
89+
php8-mbstring-8.0.25-r0
90+
php8-mysqlnd-8.0.25-r0
91+
php8-openssl-8.0.25-r0
92+
php8-pdo-8.0.25-r0
93+
php8-pdo_mysql-8.0.25-r0
9494
php8-pecl-igbinary-3.2.6-r0
9595
php8-pecl-memcached-3.1.5-r1
96-
php8-phar-8.0.18-r0
97-
php8-session-8.0.18-r0
98-
php8-simplexml-8.0.18-r0
99-
php8-tokenizer-8.0.18-r0
100-
php8-xml-8.0.18-r0
101-
php8-xmlwriter-8.0.18-r0
96+
php8-phar-8.0.25-r0
97+
php8-session-8.0.25-r0
98+
php8-simplexml-8.0.25-r0
99+
php8-tokenizer-8.0.25-r0
100+
php8-xml-8.0.25-r0
101+
php8-xmlwriter-8.0.25-r0
102102
popt-1.18-r0
103103
procps-3.3.17-r0
104104
qt5-qtbase-5.15.3_git20210713-r5
@@ -110,7 +110,7 @@ skalibs-2.11.0.0-r0
110110
ssl_client-1.34.1-r7
111111
tar-1.34-r0
112112
ttf-freefont-20120503-r2
113-
tzdata-2022c-r0
113+
tzdata-2022f-r1
114114
utmps-0.1.0.3-r0
115115
xdg-utils-1.1.3-r0
116116
xprop-1.2.5-r0

0 commit comments

Comments
 (0)