Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package oras for openSUSE:Factory checked in 
at 2026-04-18 21:53:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/oras (Old)
 and      /work/SRC/openSUSE:Factory/.oras.new.11940 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "oras"

Sat Apr 18 21:53:13 2026 rev:8 rq:1347965 version:1.3.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/oras/oras.changes        2026-03-12 
22:27:02.914067615 +0100
+++ /work/SRC/openSUSE:Factory/.oras.new.11940/oras.changes     2026-04-18 
21:53:19.175042012 +0200
@@ -1,0 +2,9 @@
+Sat Apr 18 17:19:28 UTC 2026 - Johannes Kastl 
<[email protected]>
+
+- Update to version 1.3.2:
+  * bump: tag and release ORAS CLI v1.3.2 (#2027)
+  * chore: bump Go to 1.26.2 (#2026)
+  * fix: bump alpine base image from 3.22.1 to 3.22.3 (#2014)
+  * fix: upgrade Go snap to 1.26 in snapcraft.yaml (#2011)
+
+-------------------------------------------------------------------

Old:
----
  oras-1.3.1.obscpio

New:
----
  oras-1.3.2.obscpio

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

Other differences:
------------------
++++++ oras.spec ++++++
--- /var/tmp/diff_new_pack.hUj2dz/_old  2026-04-18 21:53:19.915072198 +0200
+++ /var/tmp/diff_new_pack.hUj2dz/_new  2026-04-18 21:53:19.915072198 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           oras
-Version:        1.3.1
+Version:        1.3.2
 Release:        0
 Summary:        OCI registry client - manage content like artifacts, images, 
packages
 License:        Apache-2.0
@@ -26,7 +26,7 @@
 Source1:        vendor.tar.gz
 BuildRequires:  bash-completion
 BuildRequires:  fish
-BuildRequires:  go1.26 >= 1.26.1
+BuildRequires:  go1.26 >= 1.26.2
 BuildRequires:  zsh
 
 %description

++++++ _service ++++++
--- /var/tmp/diff_new_pack.hUj2dz/_old  2026-04-18 21:53:19.951073667 +0200
+++ /var/tmp/diff_new_pack.hUj2dz/_new  2026-04-18 21:53:19.955073830 +0200
@@ -3,7 +3,7 @@
     <param name="url">https://github.com/oras-project/oras</param>
     <param name="scm">git</param>
     <param name="exclude">.git</param>
-    <param name="revision">v1.3.1</param>
+    <param name="revision">v1.3.2</param>
     <param name="versionformat">@PARENT_TAG@</param>
     <param name="versionrewrite-pattern">v(.*)</param>
     <param name="changesgenerate">enable</param>

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.hUj2dz/_old  2026-04-18 21:53:19.979074809 +0200
+++ /var/tmp/diff_new_pack.hUj2dz/_new  2026-04-18 21:53:19.983074972 +0200
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param name="url">https://github.com/oras-project/oras</param>
-              <param 
name="changesrevision">e3f584fabe332396414a44b7a83d029cfa5fc201</param></service></servicedata>
+              <param 
name="changesrevision">fe425992fdfdf300a1cfb380bc4271b3e1a3d3db</param></service></servicedata>
 (No newline at EOF)
 

++++++ oras-1.3.1.obscpio -> oras-1.3.2.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oras-1.3.1/Dockerfile new/oras-1.3.2/Dockerfile
--- old/oras-1.3.1/Dockerfile   2026-03-12 02:19:59.000000000 +0100
+++ new/oras-1.3.2/Dockerfile   2026-04-18 11:21:16.000000000 +0200
@@ -11,7 +11,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.26.1-alpine as 
builder
+FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.26.2-alpine as 
builder
 ARG TARGETPLATFORM
 RUN apk add git make
 ENV ORASPKG /oras
@@ -20,7 +20,7 @@
 RUN make "build-$(echo $TARGETPLATFORM | tr / -)"
 RUN mv ${ORASPKG}/bin/${TARGETPLATFORM}/oras /go/bin/oras
 
-FROM docker.io/library/alpine:3.22.1
+FROM docker.io/library/alpine:3.22.3
 RUN apk --update add ca-certificates
 COPY --from=builder /go/bin/oras /bin/oras
 RUN mkdir /workspace
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oras-1.3.1/go.mod new/oras-1.3.2/go.mod
--- old/oras-1.3.1/go.mod       2026-03-12 02:19:59.000000000 +0100
+++ new/oras-1.3.2/go.mod       2026-04-18 11:21:16.000000000 +0200
@@ -1,6 +1,6 @@
 module oras.land/oras
 
-go 1.26.1
+go 1.26.2
 
 require (
        github.com/Masterminds/sprig/v3 v3.3.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oras-1.3.1/internal/version/version.go 
new/oras-1.3.2/internal/version/version.go
--- old/oras-1.3.1/internal/version/version.go  2026-03-12 02:19:59.000000000 
+0100
+++ new/oras-1.3.2/internal/version/version.go  2026-04-18 11:21:16.000000000 
+0200
@@ -17,7 +17,7 @@
 
 var (
        // Version is the current version of the oras.
-       Version = "1.3.1"
+       Version = "1.3.2"
        // BuildMetadata is the extra build time data
        BuildMetadata = ""
        // GitCommit is the git sha1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oras-1.3.1/snapcraft.yaml 
new/oras-1.3.2/snapcraft.yaml
--- old/oras-1.3.1/snapcraft.yaml       2026-03-12 02:19:59.000000000 +0100
+++ new/oras-1.3.2/snapcraft.yaml       2026-04-18 11:21:16.000000000 +0200
@@ -34,7 +34,7 @@
       - on amd64 to {ARCH}:
         - TARGET_ARCH: "{ARCH}"
     build-snaps:
-      - go/1.25/stable
+      - go/1.26/stable
     build-packages:
       - make
     stage-packages:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oras-1.3.1/test/e2e/go.mod 
new/oras-1.3.2/test/e2e/go.mod
--- old/oras-1.3.1/test/e2e/go.mod      2026-03-12 02:19:59.000000000 +0100
+++ new/oras-1.3.2/test/e2e/go.mod      2026-04-18 11:21:16.000000000 +0200
@@ -1,6 +1,6 @@
 module oras.land/oras/test/e2e
 
-go 1.26.1
+go 1.26.2
 
 require (
        github.com/onsi/ginkgo/v2 v2.25.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oras-1.3.1/test/e2e/go.work 
new/oras-1.3.2/test/e2e/go.work
--- old/oras-1.3.1/test/e2e/go.work     2026-03-12 02:19:59.000000000 +0100
+++ new/oras-1.3.2/test/e2e/go.work     2026-04-18 11:21:16.000000000 +0200
@@ -1,4 +1,4 @@
-go 1.26.1
+go 1.26.2
 
 use (
        .

++++++ oras.obsinfo ++++++
--- /var/tmp/diff_new_pack.hUj2dz/_old  2026-04-18 21:53:20.403092104 +0200
+++ /var/tmp/diff_new_pack.hUj2dz/_new  2026-04-18 21:53:20.403092104 +0200
@@ -1,5 +1,5 @@
 name: oras
-version: 1.3.1
-mtime: 1773278399
-commit: e3f584fabe332396414a44b7a83d029cfa5fc201
+version: 1.3.2
+mtime: 1776504076
+commit: fe425992fdfdf300a1cfb380bc4271b3e1a3d3db
 

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

Reply via email to