Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: hassio-addons/addon-base
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v13.1.4
Choose a base ref
...
head repository: hassio-addons/addon-base
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v13.1.5
Choose a head ref
  • 4 commits
  • 3 files changed
  • 2 contributors

Commits on Mar 25, 2023

  1. ⬆️ Update alpine_3_17/tzdata to v2023 (#225)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 25, 2023
    Copy the full SHA
    19b461b View commit details
  2. Remove dependabot (#226)

    frenck authored Mar 25, 2023
    Copy the full SHA
    3f7de31 View commit details

Commits on Mar 28, 2023

  1. Renovate: OpenSSL bundle

    frenck committed Mar 28, 2023
    Copy the full SHA
    3a6687b View commit details
  2. ⬆️ Update OpenSSL to v3.0.8-r2 (#229)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 28, 2023
    Copy the full SHA
    d199a04 View commit details
Showing with 10 additions and 12 deletions.
  1. +0 −8 .github/dependabot.yaml
  2. +7 −1 .github/renovate.json
  3. +3 −3 base/Dockerfile
8 changes: 0 additions & 8 deletions .github/dependabot.yaml

This file was deleted.

8 changes: 7 additions & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
@@ -47,7 +47,7 @@
"fileMatch": ["/Dockerfile$"],
"matchStringsStrategy": "any",
"matchStrings": [
"\\s\\s(?<package>[a-z0-9-]+)=(?<currentValue>[a-z0-9-_.]+)\\s+"
"\\s\\s(?<package>[a-z0-9-_]+)=(?<currentValue>[a-z0-9-_.]+)\\s+"
],
"versioningTemplate": "loose",
"datasourceTemplate": "repology",
@@ -65,6 +65,12 @@
"matchDatasources": ["repology"],
"automerge": true
},
{
"groupName": "OpenSSL",
"matchDatasources": ["repology"],
"matchPackagePatterns": ["^alpine_.*/(libssl|libcrypto).*$"],
"automerge": true
},
{
"groupName": "Alpine base image",
"matchDatasources": ["docker"]
6 changes: 3 additions & 3 deletions base/Dockerfile
Original file line number Diff line number Diff line change
@@ -36,16 +36,16 @@ RUN \
xz=5.2.9-r0 \
\
&& apk add --no-cache \
libcrypto3=3.0.8-r1 \
libssl3=3.0.8-r1 \
libcrypto3=3.0.8-r2 \
libssl3=3.0.8-r2 \
musl-utils=1.2.3-r4 \
musl=1.2.3-r4 \
\
&& apk add --no-cache \
bash=5.2.15-r0 \
curl=7.88.1-r1 \
jq=1.6-r2 \
tzdata=2022f-r1 \
tzdata=2023b-r1 \
\
&& S6_ARCH="${BUILD_ARCH}" \
&& if [ "${BUILD_ARCH}" = "i386" ]; then S6_ARCH="i686"; \