Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package velero-plugin-for-aws for 
openSUSE:Factory checked in at 2021-10-01 22:29:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/velero-plugin-for-aws (Old)
 and      /work/SRC/openSUSE:Factory/.velero-plugin-for-aws.new.2443 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "velero-plugin-for-aws"

Fri Oct  1 22:29:12 2021 rev:3 rq:922574 version:1.3.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/velero-plugin-for-aws/velero-plugin-for-aws.changes  
    2021-07-28 19:21:16.707538042 +0200
+++ 
/work/SRC/openSUSE:Factory/.velero-plugin-for-aws.new.2443/velero-plugin-for-aws.changes
    2021-10-01 22:29:43.577448632 +0200
@@ -1,0 +2,8 @@
+Thu Sep 30 15:50:09 UTC 2021 - [email protected]
+
+- Update to version list:
+  * Releasing for 1.3.0
+  * fixes for CVE-2021-3121 and CVE-2021-3580
+  * Change the base image to distroless
+
+-------------------------------------------------------------------

Old:
----
  velero-plugin-for-aws-1.2.1.tar.gz

New:
----
  velero-plugin-for-aws-1.3.0.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ velero-plugin-for-aws.spec ++++++
--- /var/tmp/diff_new_pack.gc47tD/_old  2021-10-01 22:29:44.241449858 +0200
+++ /var/tmp/diff_new_pack.gc47tD/_new  2021-10-01 22:29:44.245449866 +0200
@@ -19,7 +19,7 @@
 %define goipath github.com/vmware-tanzu/velero-plugin-for-aws
 
 Name:           velero-plugin-for-aws
-Version:        1.2.1
+Version:        1.3.0
 Release:        0
 Summary:        Velero plugin for AWS
 License:        Apache-2.0

++++++ _service ++++++
--- /var/tmp/diff_new_pack.gc47tD/_old  2021-10-01 22:29:44.269449910 +0200
+++ /var/tmp/diff_new_pack.gc47tD/_new  2021-10-01 22:29:44.269449910 +0200
@@ -5,7 +5,7 @@
     <param name="exclude">.git</param>
     <param name="versionformat">@PARENT_TAG@</param>
     <param name="versionrewrite-pattern">v(.*)</param>
-    <param name="revision">v1.2.1</param>
+    <param name="revision">v1.3.0</param>
     <param name="changesgenerate">enable</param>
   </service>
   <service name="recompress" mode="disabled">

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.gc47tD/_old  2021-10-01 22:29:44.289449947 +0200
+++ /var/tmp/diff_new_pack.gc47tD/_new  2021-10-01 22:29:44.289449947 +0200
@@ -1,4 +1,4 @@
 <servicedata>
 <service name="tar_scm">
                 <param 
name="url">https://github.com/vmware-tanzu/velero-plugin-for-aws</param>
-              <param 
name="changesrevision">f08abee8dd177d27601ad50ac774b3fc76e7bf62</param></service></servicedata>
\ No newline at end of file
+              <param 
name="changesrevision">3f42d5dbbb4b364d0c2866a553c126bedb2482ec</param></service></servicedata>
\ No newline at end of file

++++++ velero-plugin-for-aws-1.2.1.tar.gz -> velero-plugin-for-aws-1.3.0.tar.gz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/velero-plugin-for-aws-1.2.1/Dockerfile 
new/velero-plugin-for-aws-1.3.0/Dockerfile
--- old/velero-plugin-for-aws-1.2.1/Dockerfile  2021-07-24 13:33:06.000000000 
+0200
+++ new/velero-plugin-for-aws-1.3.0/Dockerfile  2021-09-09 11:10:40.000000000 
+0200
@@ -17,9 +17,10 @@
 WORKDIR /go/src/velero-plugin-for-aws
 RUN CGO_ENABLED=0 GOOS=linux go build -v -o /go/bin/velero-plugin-for-aws 
./velero-plugin-for-aws
 
+FROM busybox:1.33.1 AS busybox
 
-FROM ubuntu:bionic
-RUN mkdir /plugins
+FROM gcr.io/distroless/base-debian10:nonroot
 COPY --from=build /go/bin/velero-plugin-for-aws /plugins/
-USER nobody:nogroup
-ENTRYPOINT ["/bin/bash", "-c", "cp /plugins/* /target/."]
+COPY --from=busybox /bin/cp /bin/cp
+USER nonroot:nonroot
+ENTRYPOINT ["cp", "/plugins/velero-plugin-for-aws", "/target/."]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/velero-plugin-for-aws-1.2.1/Dockerfile-arm 
new/velero-plugin-for-aws-1.3.0/Dockerfile-arm
--- old/velero-plugin-for-aws-1.2.1/Dockerfile-arm      2021-07-24 
13:33:06.000000000 +0200
+++ new/velero-plugin-for-aws-1.3.0/Dockerfile-arm      2021-09-09 
11:10:40.000000000 +0200
@@ -17,8 +17,10 @@
 WORKDIR /go/src/velero-plugin-for-aws
 RUN GOARCH=arm CGO_ENABLED=0 GOOS=linux go build -v -o 
/go/bin/velero-plugin-for-aws ./velero-plugin-for-aws
 
+FROM arm32v7/busybox:1.33.1 AS busybox
 
-FROM arm32v7/ubuntu:bionic
+FROM gcr.io/distroless/base-debian10:nonroot-arm
 COPY --from=build /go/bin/velero-plugin-for-aws /plugins/
-USER nobody:nogroup
-ENTRYPOINT ["/bin/bash", "-c", "cp /plugins/* /target/."]
+COPY --from=busybox /bin/cp /bin/cp
+USER nonroot:nonroot
+ENTRYPOINT ["cp", "/plugins/velero-plugin-for-aws", "/target/."]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/velero-plugin-for-aws-1.2.1/Dockerfile-arm64 
new/velero-plugin-for-aws-1.3.0/Dockerfile-arm64
--- old/velero-plugin-for-aws-1.2.1/Dockerfile-arm64    2021-07-24 
13:33:06.000000000 +0200
+++ new/velero-plugin-for-aws-1.3.0/Dockerfile-arm64    2021-09-09 
11:10:40.000000000 +0200
@@ -17,8 +17,10 @@
 WORKDIR /go/src/velero-plugin-for-aws
 RUN GOARCH=arm64 CGO_ENABLED=0 GOOS=linux go build -v -o 
/go/bin/velero-plugin-for-aws ./velero-plugin-for-aws
 
+FROM arm64v8/busybox:1.33.1 AS busybox
 
-FROM arm64v8/ubuntu:bionic
+FROM gcr.io/distroless/base-debian10:nonroot-arm64
 COPY --from=build /go/bin/velero-plugin-for-aws /plugins/
-USER nobody:nogroup
-ENTRYPOINT ["/bin/bash", "-c", "cp /plugins/* /target/."]
+COPY --from=busybox /bin/cp /bin/cp
+USER nonroot:nonroot
+ENTRYPOINT ["cp", "/plugins/velero-plugin-for-aws", "/target/."]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/velero-plugin-for-aws-1.2.1/README.md 
new/velero-plugin-for-aws-1.3.0/README.md
--- old/velero-plugin-for-aws-1.2.1/README.md   2021-07-24 13:33:06.000000000 
+0200
+++ new/velero-plugin-for-aws-1.3.0/README.md   2021-09-09 11:10:40.000000000 
+0200
@@ -17,6 +17,7 @@
 
 | Plugin Version  | Velero Version |
 |-----------------|----------------|
+| v1.3.x          | v1.7.x         |
 | v1.2.x          | v1.6.x         |
 | v1.1.x          | v1.5.x         |
 | v1.1.x          | v1.4.x         |
@@ -261,7 +262,7 @@
 ```bash
 velero install \
     --provider aws \
-    --plugins velero/velero-plugin-for-aws:v1.2.0 \
+    --plugins velero/velero-plugin-for-aws:v1.3.0 \
     --bucket $BUCKET \
     --backup-location-config region=$REGION \
     --snapshot-location-config region=$REGION \
@@ -273,7 +274,7 @@
 ```bash
 velero install \
     --provider aws \
-    --plugins velero/velero-plugin-for-aws:v1.2.0 \
+    --plugins velero/velero-plugin-for-aws:v1.3.0 \
     --bucket $BUCKET \
     --backup-location-config region=$REGION \
     --snapshot-location-config region=$REGION \
@@ -302,7 +303,7 @@
 ### Prerequisites
 
 * Velero 1.6.0 or later
-* AWS plugin must be installed, either at install time, or by running `velero 
plugin add velero/velero-plugin-for-aws:v1.2.0`
+* AWS plugin must be installed, either at install time, or by running `velero 
plugin add velero/velero-plugin-for-aws:plugin-version`, replace the 
`plugin-version` with the corresponding value
 
 ### Configure S3 bucket and credentials
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/velero-plugin-for-aws-1.2.1/changelogs/CHANGELOG-1.3.0.md 
new/velero-plugin-for-aws-1.3.0/changelogs/CHANGELOG-1.3.0.md
--- old/velero-plugin-for-aws-1.2.1/changelogs/CHANGELOG-1.3.0.md       
1970-01-01 01:00:00.000000000 +0100
+++ new/velero-plugin-for-aws-1.3.0/changelogs/CHANGELOG-1.3.0.md       
2021-09-09 11:10:40.000000000 +0200
@@ -0,0 +1,4 @@
+## All changes
+
+- Change the base image to `distroless`. (#106, @ywk253100)
+

++++++ vendor.tar.gz ++++++

Reply via email to