From 7765995de162ae137193988b3ba70b6ba4b102ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20P=C3=B6schl?= Date: Fri, 13 Oct 2023 14:07:07 +0200 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Updated=20rsync=20addon=20?= =?UTF-8?q?to=20latest=20alpine?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- rsync/CHANGELOG.md | 8 ++++++-- rsync/DOCS.md | 2 +- rsync/Dockerfile | 6 +++--- rsync/build.yaml | 10 +++++----- rsync/config.yaml | 2 +- 5 files changed, 16 insertions(+), 12 deletions(-) diff --git a/rsync/CHANGELOG.md b/rsync/CHANGELOG.md index f3096f31..55fb6e73 100644 --- a/rsync/CHANGELOG.md +++ b/rsync/CHANGELOG.md @@ -1,6 +1,10 @@ -## 1.x.x - 2023-xx-xx +## 1.7.0 - 2023-10-13 -* 🔨 Correct --archive argument (#380, #418) +* 🔨 Correct --archive argument (thanks @reedy | #418) +* 🔼 Updated to alpine `3.18` +* 🔼 Updated rsync to `3.2.7-r4` +* 🔼 Update coreutils to `9.3-r1` +* 🔼 Update openssh-client-default to `9.3_p2-r0` ## 1.6.0 - 2023-01-08 diff --git a/rsync/DOCS.md b/rsync/DOCS.md index 49b6e582..1a8230c0 100644 --- a/rsync/DOCS.md +++ b/rsync/DOCS.md @@ -47,7 +47,7 @@ The destination folder for rsync ### `folders` - `options` (optional) -Use your own options for rsync. This string is replacing the default one and get directly to rsync. The default is `-archive --recursive --compress --delete --prune-empty-dirs`. +Use your own options for rsync. This string is replacing the default one and get directly to rsync. The default is `--archive --recursive --compress --delete --prune-empty-dirs`. ### `remote_host` diff --git a/rsync/Dockerfile b/rsync/Dockerfile index 51aeab5f..bfe5c928 100644 --- a/rsync/Dockerfile +++ b/rsync/Dockerfile @@ -3,9 +3,9 @@ FROM $BUILD_FROM AS RUNNING RUN apk update && \ apk add --no-cache \ - 'rsync=3.2.7-r0' \ - 'openssh-client-default=9.0_p1-r2' \ - 'coreutils=9.1-r0' + 'rsync=3.2.7-r4' \ + 'openssh-client-default=9.3_p2-r0' \ + 'coreutils=9.3-r1' COPY root / RUN chmod a+x /run.sh diff --git a/rsync/build.yaml b/rsync/build.yaml index 05f1b7df..91932faa 100644 --- a/rsync/build.yaml +++ b/rsync/build.yaml @@ -1,6 +1,6 @@ build_from: - armhf: ghcr.io/home-assistant/armhf-base:3.16 - armv7: ghcr.io/home-assistant/armv7-base:3.16 - aarch64: ghcr.io/home-assistant/aarch64-base:3.16 - amd64: ghcr.io/home-assistant/amd64-base:3.16 - i386: ghcr.io/home-assistant/i386-base:3.16 + armhf: ghcr.io/home-assistant/armhf-base:3.18 + armv7: ghcr.io/home-assistant/armv7-base:3.18 + aarch64: ghcr.io/home-assistant/aarch64-base:3.18 + amd64: ghcr.io/home-assistant/amd64-base:3.18 + i386: ghcr.io/home-assistant/i386-base:3.18 diff --git a/rsync/config.yaml b/rsync/config.yaml index f945fa8c..eb455efa 100644 --- a/rsync/config.yaml +++ b/rsync/config.yaml @@ -1,5 +1,5 @@ name: rsync -version: 1.6.0 +version: 1.7.0 slug: rsync description: Sync folders to a remote machine via ssh and rsync. url: https://github.com/Poeschl/Hassio-Addons/tree/main/rsync