Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package starboard for openSUSE:Factory 
checked in at 2026-05-05 15:15:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/starboard (Old)
 and      /work/SRC/openSUSE:Factory/.starboard.new.30200 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "starboard"

Tue May  5 15:15:56 2026 rev:26 rq:1350793 version:0.15.37

Changes:
--------
--- /work/SRC/openSUSE:Factory/starboard/starboard.changes      2026-02-03 
21:31:03.607543087 +0100
+++ /work/SRC/openSUSE:Factory/.starboard.new.30200/starboard.changes   
2026-05-05 15:17:11.431665468 +0200
@@ -1,0 +2,6 @@
+Mon May  4 16:51:04 UTC 2026 - Johannes Kastl 
<[email protected]>
+
+- update to 0.15.37 (no releases between .32 and this one):
+  * 552aaa9 ci: fix timeout issue (#1443)
+
+-------------------------------------------------------------------

Old:
----
  starboard-0.15.32.obscpio

New:
----
  starboard-0.15.37.obscpio

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

Other differences:
------------------
++++++ starboard.spec ++++++
--- /var/tmp/diff_new_pack.WlO8vz/_old  2026-05-05 15:17:12.263698564 +0200
+++ /var/tmp/diff_new_pack.WlO8vz/_new  2026-05-05 15:17:12.263698564 +0200
@@ -17,14 +17,14 @@
 
 
 Name:           starboard
-Version:        0.15.32
+Version:        0.15.37
 Release:        0
 Summary:        Kubernetes-native security toolkit
 License:        Apache-2.0
 URL:            https://github.com/aquasecurity/starboard
 Source:         starboard-%{version}.tar.gz
 Source1:        vendor.tar.gz
-BuildRequires:  go1.24 >= 1.24.11
+BuildRequires:  go1.26 >= 1.26.2
 
 %description
 Starboard integrates security tools into the Kubernetes environment, so that
@@ -38,11 +38,17 @@
 %autosetup -p 1 -a 1
 
 %build
-go build -mod=vendor \
+go build \
+   -mod=vendor \
+   -buildmode=pie \
    -o ./bin/starboard ./cmd/starboard/main.go
-go build -mod=vendor \
+go build \
+   -mod=vendor \
+   -buildmode=pie \
    -o ./bin/starboard-operator ./cmd/starboard-operator/main.go
-go build -mod=vendor \
+go build \
+   -mod=vendor \
+   -buildmode=pie \
    -o ./bin/starboard-scanner-aqua ./cmd/scanner-aqua/main.go
 
 %install

++++++ _service ++++++
--- /var/tmp/diff_new_pack.WlO8vz/_old  2026-05-05 15:17:12.295699838 +0200
+++ /var/tmp/diff_new_pack.WlO8vz/_new  2026-05-05 15:17:12.299699997 +0200
@@ -3,7 +3,7 @@
     <param name="url">https://github.com/aquasecurity/starboard</param>
     <param name="scm">git</param>
     <param name="exclude">.git</param>
-    <param name="revision">v0.15.32</param>
+    <param name="revision">v0.15.37</param>
     <param name="versionformat">@PARENT_TAG@</param>
     <param name="versionrewrite-pattern">v(.*)</param>
     <param name="changesgenerate">disable</param>

++++++ starboard-0.15.32.obscpio -> starboard-0.15.37.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/starboard-0.15.32/.golangci.yml 
new/starboard-0.15.37/.golangci.yml
--- old/starboard-0.15.32/.golangci.yml 2026-02-02 14:11:31.000000000 +0100
+++ new/starboard-0.15.37/.golangci.yml 2026-05-04 14:55:02.000000000 +0200
@@ -1,10 +1,25 @@
+version: "2"
+
 run:
   timeout: 5m
+
 linters:
+  # govet stays in the default set; gosimple no longer exists as a separate
+  # linter in v2 (its checks were folded into staticcheck), so it doesn't need
+  # to appear here.
   enable:
     - errorlint
-    - govet
   disable:
-    - gosimple
     - ineffassign
     - staticcheck
+  settings:
+    errcheck:
+      # These call sites either write to streams whose errors are not
+      # actionable (formatted output / hash writers) or close/reset state in
+      # tests where the error is uninteresting. Exempting them avoids
+      # peppering benign `_ =` discards across the codebase.
+      exclude-functions:
+        - fmt.Fprintf
+        - fmt.Fprintln
+        - (*os.File).Close
+        - os.Setenv
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/starboard-0.15.32/.goreleaser.yaml 
new/starboard-0.15.37/.goreleaser.yaml
--- old/starboard-0.15.32/.goreleaser.yaml      2026-02-02 14:11:31.000000000 
+0100
+++ new/starboard-0.15.37/.goreleaser.yaml      2026-05-04 14:55:02.000000000 
+0200
@@ -26,6 +26,11 @@
         goarch: s390x
       - goos: windows
         goarch: s390x
+      # Go 1.17+ dropped 32-bit ARM support on Windows. Only windows/arm64
+      # exists on the modern toolchain, so excluding this pair is required
+      # since the go.mod bump to 1.26.x.
+      - goos: windows
+        goarch: arm
   - id: starboard-operator
     main: ./cmd/starboard-operator/main.go
     binary: starboard-operator
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/starboard-0.15.32/Makefile 
new/starboard-0.15.37/Makefile
--- old/starboard-0.15.32/Makefile      2026-02-02 14:11:31.000000000 +0100
+++ new/starboard-0.15.37/Makefile      2026-05-04 14:55:02.000000000 +0200
@@ -13,14 +13,20 @@
 GOBIN=$(GOPATH)/bin
 GINKGO=$(GOBIN)/ginkgo
 
-SOURCES := $(shell find . -name '*.go')
+# Sources tracked for build-target staleness. Includes go.mod/go.sum so a
+# dependency bump (e.g. for a CVE fix) reliably forces a binary rebuild even
+# when no .go file under the tree was edited - otherwise `make` thinks the
+# binary is up to date and silently keeps the stale module versions baked in.
+SOURCES := $(shell find . -name '*.go') go.mod go.sum
 
 IMAGE_TAG := dev
 STARBOARD_CLI_IMAGE := aquasec/starboard:$(IMAGE_TAG)
 STARBOARD_OPERATOR_IMAGE := aquasec/starboard-operator:$(IMAGE_TAG)
 STARBOARD_SCANNER_AQUA_IMAGE := aquasec/starboard-scanner-aqua:$(IMAGE_TAG)
-#STARBOARD_OPERATOR_IMAGE_UBI8 := aquasec/starboard-operator:$(IMAGE_TAG)-ubi8
-#STARBOARD_OPERATOR_IMAGE_UBI8_FIPS := 
aquasec/starboard-operator:$(IMAGE_TAG)-ubi8-fips
+STARBOARD_OPERATOR_IMAGE_UBI8 := aquasec/starboard-operator:$(IMAGE_TAG)-ubi8
+STARBOARD_OPERATOR_IMAGE_UBI8_FIPS := 
aquasec/starboard-operator:$(IMAGE_TAG)-ubi8-fips
+STARBOARD_OPERATOR_IMAGE_UBI9 := aquasec/starboard-operator:$(IMAGE_TAG)-ubi9
+STARBOARD_OPERATOR_IMAGE_UBI9_FIPS := 
aquasec/starboard-operator:$(IMAGE_TAG)-ubi9-fips
 
 MKDOCS_IMAGE := aquasec/mkdocs-material:starboard
 MKDOCS_PORT := 8000
@@ -32,20 +38,24 @@
 build: build-starboard-cli build-starboard-operator 
build-starboard-scanner-aqua
 
 ## Builds the starboard binary
-build-starboard-cli: $(SOURCES)
-       CGO_ENABLED=0 go build -o ./bin/starboard ./cmd/starboard/main.go
+build-starboard-cli: bin/starboard
+bin/starboard: $(SOURCES)
+       CGO_ENABLED=0 go build -o $@ ./cmd/starboard/main.go
 
 ## Builds the starboard-operator binary
-build-starboard-operator: $(SOURCES)
-       CGO_ENABLED=0 GOOS=linux go build -o ./bin/starboard-operator 
./cmd/starboard-operator/main.go
-
-## Builds the starboard-operator binary
-build-starboard-operator-fips: $(SOURCES)
-       CGO_ENABLED=0 GOOS=linux GOEXPERIMENT=boringcrypto go build -tags 
fipsonly -o ./bin/starboard-operator-fips ./cmd/starboard-operator/main.go
+build-starboard-operator: bin/starboard-operator
+bin/starboard-operator: $(SOURCES)
+       CGO_ENABLED=0 GOOS=linux go build -o $@ ./cmd/starboard-operator/main.go
+
+## Builds the starboard-operator FIPS binary (BoringCrypto + fipsonly tag)
+build-starboard-operator-fips: bin/starboard-operator-fips
+bin/starboard-operator-fips: $(SOURCES)
+       CGO_ENABLED=0 GOOS=linux GOEXPERIMENT=boringcrypto go build -tags 
fipsonly -o $@ ./cmd/starboard-operator/main.go
 
 ## Builds the scanner-aqua binary
-build-starboard-scanner-aqua: $(SOURCES)
-       CGO_ENABLED=0 GOOS=linux go build -o ./bin/starboard-scanner-aqua 
./cmd/scanner-aqua/main.go
+build-starboard-scanner-aqua: bin/starboard-scanner-aqua
+bin/starboard-scanner-aqua: $(SOURCES)
+       CGO_ENABLED=0 GOOS=linux go build -o $@ ./cmd/scanner-aqua/main.go
 
 .PHONY: get-ginkgo
 ## Installs Ginkgo CLI
@@ -145,14 +155,24 @@
 docker-build-starboard-operator: build-starboard-operator
        $(DOCKER) build --no-cache -t $(STARBOARD_OPERATOR_IMAGE) -f 
build/starboard-operator/Dockerfile bin
 
-## Builds Docker image for Starboard operator ubi8
+## Builds FIPS Docker image for Starboard operator (UBI8 base - deprecated, 
kept for parity)
 docker-build-starboard-operator-fips: build-starboard-operator-fips
        $(DOCKER) build --no-cache -f 
build/starboard-operator/Dockerfile.fips.ubi8 -t 
$(STARBOARD_OPERATOR_IMAGE_UBI8_FIPS) bin
 
+## Builds FIPS Docker image for Starboard operator (UBI9 base - this is what 
releases ship)
+docker-build-starboard-operator-fips-ubi9: build-starboard-operator-fips
+       cp LICENSE bin/LICENSE
+       $(DOCKER) build --no-cache -f 
build/starboard-operator/Dockerfile.fips.ubi9 -t 
$(STARBOARD_OPERATOR_IMAGE_UBI9_FIPS) bin
+
 ## Builds Docker image for Starboard operator ubi8
 docker-build-starboard-operator-ubi8: build-starboard-operator
        $(DOCKER) build --no-cache -f build/starboard-operator/Dockerfile.ubi8 
-t $(STARBOARD_OPERATOR_IMAGE_UBI8) bin
 
+## Builds Docker image for Starboard operator ubi9
+docker-build-starboard-operator-ubi9: build-starboard-operator
+       cp LICENSE bin/LICENSE
+       $(DOCKER) build --no-cache -f build/starboard-operator/Dockerfile.ubi9 
-t $(STARBOARD_OPERATOR_IMAGE_UBI9) bin
+
 ## Builds Docker image for Aqua scanner
 docker-build-starboard-scanner-aqua: build-starboard-scanner-aqua
        $(DOCKER) build --no-cache -t $(STARBOARD_SCANNER_AQUA_IMAGE) -f 
build/scanner-aqua/Dockerfile bin
@@ -170,11 +190,18 @@
        $(DOCKER) run --name mkdocs-serve --rm -v $(PWD):/docs -p 
$(MKDOCS_PORT):8000 $(MKDOCS_IMAGE)
 
 .PHONY: \
+       build-starboard-cli \
+       build-starboard-operator \
+       build-starboard-operator-fips \
+       build-starboard-scanner-aqua \
        clean \
        docker-build \
        docker-build-starboard-cli \
        docker-build-starboard-operator \
        docker-build-starboard-operator-ubi8 \
+       docker-build-starboard-operator-ubi9 \
+       docker-build-starboard-operator-fips \
+       docker-build-starboard-operator-fips-ubi9 \
        docker-build-starboard-scanner-aqua \
        kind-load-images \
        mkdocs-serve
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/starboard-0.15.32/build/starboard-operator/Dockerfile.fips.ubi8 
new/starboard-0.15.37/build/starboard-operator/Dockerfile.fips.ubi8
--- old/starboard-0.15.32/build/starboard-operator/Dockerfile.fips.ubi8 
2026-02-02 14:11:31.000000000 +0100
+++ new/starboard-0.15.37/build/starboard-operator/Dockerfile.fips.ubi8 
2026-05-04 14:55:02.000000000 +0200
@@ -2,7 +2,7 @@
 
 LABEL name="Starboard" \
       vendor="Aqua Security Software Ltd." \
-      version="v0.15.32" \
+      version="v0.15.37" \
       summary="Starboard Operator."
 
 RUN microdnf install -y shadow-utils
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/starboard-0.15.32/build/starboard-operator/Dockerfile.fips.ubi9 
new/starboard-0.15.37/build/starboard-operator/Dockerfile.fips.ubi9
--- old/starboard-0.15.32/build/starboard-operator/Dockerfile.fips.ubi9 
2026-02-02 14:11:31.000000000 +0100
+++ new/starboard-0.15.37/build/starboard-operator/Dockerfile.fips.ubi9 
2026-05-04 14:55:02.000000000 +0200
@@ -2,7 +2,7 @@
 
 LABEL name="Starboard" \
       vendor="Aqua Security Software Ltd." \
-      version="v0.15.32" \
+      version="v0.15.37" \
       summary="Starboard Operator."
 
 RUN microdnf upgrade -y --nodocs \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/starboard-0.15.32/build/starboard-operator/Dockerfile.ubi8 
new/starboard-0.15.37/build/starboard-operator/Dockerfile.ubi8
--- old/starboard-0.15.32/build/starboard-operator/Dockerfile.ubi8      
2026-02-02 14:11:31.000000000 +0100
+++ new/starboard-0.15.37/build/starboard-operator/Dockerfile.ubi8      
2026-05-04 14:55:02.000000000 +0200
@@ -2,7 +2,7 @@
 
 LABEL name="Starboard" \
       vendor="Aqua Security Software Ltd." \
-      version="v0.15.32" \
+      version="v0.15.37" \
       summary="Starboard Operator."
 
 RUN microdnf install -y shadow-utils
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/starboard-0.15.32/build/starboard-operator/Dockerfile.ubi9 
new/starboard-0.15.37/build/starboard-operator/Dockerfile.ubi9
--- old/starboard-0.15.32/build/starboard-operator/Dockerfile.ubi9      
2026-02-02 14:11:31.000000000 +0100
+++ new/starboard-0.15.37/build/starboard-operator/Dockerfile.ubi9      
2026-05-04 14:55:02.000000000 +0200
@@ -2,11 +2,11 @@
 
 LABEL name="Starboard" \
       vendor="Aqua Security Software Ltd." \
-      version="v0.15.32" \
+      version="v0.15.37" \
       summary="Starboard Operator." \
       org.label-schema.schema-version="1.0" \
       maintainer="Aqua Security Software Ltd." \
-      release=v0.15.32 \
+      release=v0.15.37 \
       description="Starboard Operator."
 
 RUN microdnf upgrade -y --nodocs \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/starboard-0.15.32/deploy/crd/ciskubebenchreports.crd.yaml 
new/starboard-0.15.37/deploy/crd/ciskubebenchreports.crd.yaml
--- old/starboard-0.15.32/deploy/crd/ciskubebenchreports.crd.yaml       
2026-02-02 14:11:31.000000000 +0100
+++ new/starboard-0.15.37/deploy/crd/ciskubebenchreports.crd.yaml       
2026-05-04 14:55:02.000000000 +0200
@@ -5,7 +5,7 @@
   name: ciskubebenchreports.aquasecurity.github.io
   labels:
     app.kubernetes.io/managed-by: starboard
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
 spec:
   group: aquasecurity.github.io
   versions:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/starboard-0.15.32/deploy/crd/clustercompliancedetailreports.crd.yaml 
new/starboard-0.15.37/deploy/crd/clustercompliancedetailreports.crd.yaml
--- old/starboard-0.15.32/deploy/crd/clustercompliancedetailreports.crd.yaml    
2026-02-02 14:11:31.000000000 +0100
+++ new/starboard-0.15.37/deploy/crd/clustercompliancedetailreports.crd.yaml    
2026-05-04 14:55:02.000000000 +0200
@@ -5,7 +5,7 @@
   name: clustercompliancedetailreports.aquasecurity.github.io
   labels:
     app.kubernetes.io/managed-by: starboard
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
 spec:
   group: aquasecurity.github.io
   versions:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/starboard-0.15.32/deploy/crd/clustercompliancereports.crd.yaml 
new/starboard-0.15.37/deploy/crd/clustercompliancereports.crd.yaml
--- old/starboard-0.15.32/deploy/crd/clustercompliancereports.crd.yaml  
2026-02-02 14:11:31.000000000 +0100
+++ new/starboard-0.15.37/deploy/crd/clustercompliancereports.crd.yaml  
2026-05-04 14:55:02.000000000 +0200
@@ -5,7 +5,7 @@
   name: clustercompliancereports.aquasecurity.github.io
   labels:
     app.kubernetes.io/managed-by: starboard
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
 spec:
   group: aquasecurity.github.io
   scope: Cluster
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/starboard-0.15.32/deploy/crd/clusterconfigauditreports.crd.yaml 
new/starboard-0.15.37/deploy/crd/clusterconfigauditreports.crd.yaml
--- old/starboard-0.15.32/deploy/crd/clusterconfigauditreports.crd.yaml 
2026-02-02 14:11:31.000000000 +0100
+++ new/starboard-0.15.37/deploy/crd/clusterconfigauditreports.crd.yaml 
2026-05-04 14:55:02.000000000 +0200
@@ -5,7 +5,7 @@
   name: clusterconfigauditreports.aquasecurity.github.io
   labels:
     app.kubernetes.io/managed-by: starboard
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
 spec:
   group: aquasecurity.github.io
   versions:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/starboard-0.15.32/deploy/crd/clustervulnerabilityreports.crd.yaml 
new/starboard-0.15.37/deploy/crd/clustervulnerabilityreports.crd.yaml
--- old/starboard-0.15.32/deploy/crd/clustervulnerabilityreports.crd.yaml       
2026-02-02 14:11:31.000000000 +0100
+++ new/starboard-0.15.37/deploy/crd/clustervulnerabilityreports.crd.yaml       
2026-05-04 14:55:02.000000000 +0200
@@ -5,7 +5,7 @@
   name: clustervulnerabilityreports.aquasecurity.github.io
   labels:
     app.kubernetes.io/managed-by: starboard
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
 spec:
   group: aquasecurity.github.io
   versions:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/starboard-0.15.32/deploy/crd/configauditreports.crd.yaml 
new/starboard-0.15.37/deploy/crd/configauditreports.crd.yaml
--- old/starboard-0.15.32/deploy/crd/configauditreports.crd.yaml        
2026-02-02 14:11:31.000000000 +0100
+++ new/starboard-0.15.37/deploy/crd/configauditreports.crd.yaml        
2026-05-04 14:55:02.000000000 +0200
@@ -5,7 +5,7 @@
   name: configauditreports.aquasecurity.github.io
   labels:
     app.kubernetes.io/managed-by: starboard
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
 spec:
   group: aquasecurity.github.io
   versions:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/starboard-0.15.32/deploy/crd/kubehunterreports.crd.yaml 
new/starboard-0.15.37/deploy/crd/kubehunterreports.crd.yaml
--- old/starboard-0.15.32/deploy/crd/kubehunterreports.crd.yaml 2026-02-02 
14:11:31.000000000 +0100
+++ new/starboard-0.15.37/deploy/crd/kubehunterreports.crd.yaml 2026-05-04 
14:55:02.000000000 +0200
@@ -5,7 +5,7 @@
   name: kubehunterreports.aquasecurity.github.io
   labels:
     app.kubernetes.io/managed-by: starboard
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
 spec:
   group: aquasecurity.github.io
   versions:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/starboard-0.15.32/deploy/crd/vulnerabilityreports.crd.yaml 
new/starboard-0.15.37/deploy/crd/vulnerabilityreports.crd.yaml
--- old/starboard-0.15.32/deploy/crd/vulnerabilityreports.crd.yaml      
2026-02-02 14:11:31.000000000 +0100
+++ new/starboard-0.15.37/deploy/crd/vulnerabilityreports.crd.yaml      
2026-05-04 14:55:02.000000000 +0200
@@ -5,7 +5,7 @@
   name: vulnerabilityreports.aquasecurity.github.io
   labels:
     app.kubernetes.io/managed-by: starboard
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
 spec:
   group: aquasecurity.github.io
   versions:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/starboard-0.15.32/deploy/helm/Chart.yaml 
new/starboard-0.15.37/deploy/helm/Chart.yaml
--- old/starboard-0.15.32/deploy/helm/Chart.yaml        2026-02-02 
14:11:31.000000000 +0100
+++ new/starboard-0.15.37/deploy/helm/Chart.yaml        2026-05-04 
14:55:02.000000000 +0200
@@ -6,12 +6,12 @@
 # This is the chart version. This version number should be incremented each 
time you make changes
 # to the chart and its templates, including the app version.
 # Versions are expected to follow Semantic Versioning (https://semver.org/)
-version: 0.10.23
+version: 0.10.24
 
 # This is the version number of the application being deployed. This version 
number should be
 # incremented each time you make changes to the application. Versions are not 
expected to
 # follow Semantic Versioning. They should reflect the version the application 
is using.
-appVersion: 0.15.32
+appVersion: 0.15.37
 
 # kubeVersion: A SemVer range of compatible Kubernetes versions (optional)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/starboard-0.15.32/deploy/specs/nsa-1.0.yaml 
new/starboard-0.15.37/deploy/specs/nsa-1.0.yaml
--- old/starboard-0.15.32/deploy/specs/nsa-1.0.yaml     2026-02-02 
14:11:31.000000000 +0100
+++ new/starboard-0.15.37/deploy/specs/nsa-1.0.yaml     2026-05-04 
14:55:02.000000000 +0200
@@ -6,7 +6,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
 spec:
   name: nsa
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/starboard-0.15.32/deploy/static/01-starboard-operator.ns.yaml 
new/starboard-0.15.37/deploy/static/01-starboard-operator.ns.yaml
--- old/starboard-0.15.32/deploy/static/01-starboard-operator.ns.yaml   
2026-02-02 14:11:31.000000000 +0100
+++ new/starboard-0.15.37/deploy/static/01-starboard-operator.ns.yaml   
2026-05-04 14:55:02.000000000 +0200
@@ -6,5 +6,5 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/starboard-0.15.32/deploy/static/02-starboard-operator.rbac.yaml 
new/starboard-0.15.37/deploy/static/02-starboard-operator.rbac.yaml
--- old/starboard-0.15.32/deploy/static/02-starboard-operator.rbac.yaml 
2026-02-02 14:11:31.000000000 +0100
+++ new/starboard-0.15.37/deploy/static/02-starboard-operator.rbac.yaml 
2026-05-04 14:55:02.000000000 +0200
@@ -7,7 +7,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
 ---
 apiVersion: rbac.authorization.k8s.io/v1
@@ -17,7 +17,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
 rules:
   - apiGroups:
@@ -175,7 +175,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
 roleRef:
   apiGroup: rbac.authorization.k8s.io
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/starboard-0.15.32/deploy/static/03-starboard-operator.config.yaml 
new/starboard-0.15.37/deploy/static/03-starboard-operator.config.yaml
--- old/starboard-0.15.32/deploy/static/03-starboard-operator.config.yaml       
2026-02-02 14:11:31.000000000 +0100
+++ new/starboard-0.15.37/deploy/static/03-starboard-operator.config.yaml       
2026-05-04 14:55:02.000000000 +0200
@@ -7,7 +7,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
 ---
 apiVersion: v1
@@ -18,7 +18,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
 ---
 apiVersion: v1
@@ -29,7 +29,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
 data:
   vulnerabilityReports.scanner: "Trivy"
@@ -45,7 +45,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
 data:
   trivy.imageRef: "docker.io/aquasec/trivy:0.25.2"
@@ -66,7 +66,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
 data:
   polaris.imageRef: "quay.io/fairwinds/polaris:4.2"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/starboard-0.15.32/deploy/static/04-starboard-operator.policies.yaml 
new/starboard-0.15.37/deploy/static/04-starboard-operator.policies.yaml
--- old/starboard-0.15.32/deploy/static/04-starboard-operator.policies.yaml     
2026-02-02 14:11:31.000000000 +0100
+++ new/starboard-0.15.37/deploy/static/04-starboard-operator.policies.yaml     
2026-05-04 14:55:02.000000000 +0200
@@ -7,7 +7,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
 data:
   library.kubernetes.rego:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/starboard-0.15.32/deploy/static/05-starboard-operator.deployment.yaml 
new/starboard-0.15.37/deploy/static/05-starboard-operator.deployment.yaml
--- old/starboard-0.15.32/deploy/static/05-starboard-operator.deployment.yaml   
2026-02-02 14:11:31.000000000 +0100
+++ new/starboard-0.15.37/deploy/static/05-starboard-operator.deployment.yaml   
2026-05-04 14:55:02.000000000 +0200
@@ -7,7 +7,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
   annotations:
     prometheus.io/path: /metrics
@@ -30,7 +30,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
 spec:
   replicas: 1
@@ -50,7 +50,7 @@
       automountServiceAccountToken: true
       containers:
         - name: "starboard-operator"
-          image: "docker.io/aquasec/starboard-operator:0.15.32"
+          image: "docker.io/aquasec/starboard-operator:0.15.37"
           imagePullPolicy: IfNotPresent
           env:
             - name: OPERATOR_NAMESPACE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/starboard-0.15.32/deploy/static/starboard.yaml 
new/starboard-0.15.37/deploy/static/starboard.yaml
--- old/starboard-0.15.32/deploy/static/starboard.yaml  2026-02-02 
14:11:31.000000000 +0100
+++ new/starboard-0.15.37/deploy/static/starboard.yaml  2026-05-04 
14:55:02.000000000 +0200
@@ -5,7 +5,7 @@
   name: vulnerabilityreports.aquasecurity.github.io
   labels:
     app.kubernetes.io/managed-by: starboard
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
 spec:
   group: aquasecurity.github.io
   versions:
@@ -248,7 +248,7 @@
   name: configauditreports.aquasecurity.github.io
   labels:
     app.kubernetes.io/managed-by: starboard
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
 spec:
   group: aquasecurity.github.io
   versions:
@@ -304,7 +304,7 @@
   name: clusterconfigauditreports.aquasecurity.github.io
   labels:
     app.kubernetes.io/managed-by: starboard
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
 spec:
   group: aquasecurity.github.io
   versions:
@@ -360,7 +360,7 @@
   name: ciskubebenchreports.aquasecurity.github.io
   labels:
     app.kubernetes.io/managed-by: starboard
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
 spec:
   group: aquasecurity.github.io
   versions:
@@ -410,7 +410,7 @@
   name: clustercompliancereports.aquasecurity.github.io
   labels:
     app.kubernetes.io/managed-by: starboard
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
 spec:
   group: aquasecurity.github.io
   scope: Cluster
@@ -547,7 +547,7 @@
   name: clustercompliancedetailreports.aquasecurity.github.io
   labels:
     app.kubernetes.io/managed-by: starboard
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
 spec:
   group: aquasecurity.github.io
   versions:
@@ -590,7 +590,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
 ---
 apiVersion: v1
@@ -601,7 +601,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
 ---
 apiVersion: rbac.authorization.k8s.io/v1
@@ -611,7 +611,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
 rules:
   - apiGroups:
@@ -769,7 +769,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.33"
     app.kubernetes.io/managed-by: kubectl
 roleRef:
   apiGroup: rbac.authorization.k8s.io
@@ -788,7 +788,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
 ---
 apiVersion: v1
@@ -799,7 +799,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
 ---
 apiVersion: v1
@@ -810,7 +810,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
 data:
   vulnerabilityReports.scanner: "Trivy"
@@ -826,7 +826,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
 data:
   trivy.imageRef: "docker.io/aquasec/trivy:0.25.2"
@@ -847,7 +847,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
 data:
   polaris.imageRef: "quay.io/fairwinds/polaris:4.2"
@@ -1048,7 +1048,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
 data:
   library.kubernetes.rego:
@@ -1955,7 +1955,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
   annotations:
     prometheus.io/path: /metrics
@@ -1978,7 +1978,7 @@
   labels:
     app.kubernetes.io/name: starboard-operator
     app.kubernetes.io/instance: starboard-operator
-    app.kubernetes.io/version: "0.15.32"
+    app.kubernetes.io/version: "0.15.37"
     app.kubernetes.io/managed-by: kubectl
 spec:
   replicas: 1
@@ -1998,7 +1998,7 @@
       automountServiceAccountToken: true
       containers:
         - name: "starboard-operator"
-          image: "docker.io/aquasec/starboard-operator:0.15.32"
+          image: "docker.io/aquasec/starboard-operator:0.15.37"
           imagePullPolicy: IfNotPresent
           env:
             - name: OPERATOR_NAMESPACE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/starboard-0.15.32/go.mod new/starboard-0.15.37/go.mod
--- old/starboard-0.15.32/go.mod        2026-02-02 14:11:31.000000000 +0100
+++ new/starboard-0.15.37/go.mod        2026-05-04 14:55:02.000000000 +0200
@@ -1,6 +1,6 @@
 module github.com/aquasecurity/starboard
 
-go 1.24.12
+go 1.26.2
 
 require (
        github.com/caarlos0/env/v6 v6.10.0
@@ -18,7 +18,7 @@
        github.com/openshift/api v0.0.0-20221013123533-341d389bd4a7
        github.com/spf13/cobra v1.9.1
        github.com/spf13/pflag v1.0.6
-       github.com/stretchr/testify v1.10.0
+       github.com/stretchr/testify v1.11.1
        github.com/valyala/quicktemplate v1.7.0
        gopkg.in/yaml.v3 v3.0.1
        k8s.io/api v0.32.3
@@ -95,15 +95,15 @@
        github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 
// indirect
        github.com/xlab/treeprint v1.2.0 // indirect
        github.com/yashtewari/glob-intersection v0.2.0 // indirect
-       go.opentelemetry.io/auto/sdk v1.1.0 // indirect
+       go.opentelemetry.io/auto/sdk v1.2.1 // indirect
        go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 
// indirect
-       go.opentelemetry.io/otel v1.36.0 // indirect
+       go.opentelemetry.io/otel v1.43.0 // indirect
        go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.36.0 // indirect
        go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.36.0 
// indirect
        go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.36.0 
// indirect
-       go.opentelemetry.io/otel/metric v1.36.0 // indirect
-       go.opentelemetry.io/otel/sdk v1.36.0 // indirect
-       go.opentelemetry.io/otel/trace v1.36.0 // indirect
+       go.opentelemetry.io/otel/metric v1.43.0 // indirect
+       go.opentelemetry.io/otel/sdk v1.43.0 // indirect
+       go.opentelemetry.io/otel/trace v1.43.0 // indirect
        go.opentelemetry.io/proto/otlp v1.7.0 // indirect
        go.uber.org/multierr v1.11.0 // indirect
        go.uber.org/zap v1.26.0 // indirect
@@ -112,7 +112,7 @@
        golang.org/x/net v0.41.0 // indirect
        golang.org/x/oauth2 v0.30.0 // indirect
        golang.org/x/sync v0.15.0 // indirect
-       golang.org/x/sys v0.33.0 // indirect
+       golang.org/x/sys v0.42.0 // indirect
        golang.org/x/term v0.32.0 // indirect
        golang.org/x/text v0.26.0 // indirect
        golang.org/x/time v0.12.0 // indirect
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/starboard-0.15.32/go.sum new/starboard-0.15.37/go.sum
--- old/starboard-0.15.32/go.sum        2026-02-02 14:11:31.000000000 +0100
+++ new/starboard-0.15.37/go.sum        2026-05-04 14:55:02.000000000 +0200
@@ -262,8 +262,8 @@
 github.com/prometheus/procfs v0.16.1/go.mod 
h1:teAbpZRB1iIAJYREa1LsoWUXykVXA1KlTmWl8x/U+Is=
 github.com/rcrowley/go-metrics v0.0.0-20250401214520-65e299d6c5c9 
h1:bsUq1dX0N8AOIL7EB/X911+m4EHsnWEHeJ0c+3TTBrg=
 github.com/rcrowley/go-metrics v0.0.0-20250401214520-65e299d6c5c9/go.mod 
h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4=
-github.com/rogpeppe/go-internal v1.13.1 
h1:KvO1DLK/DRN07sQ1LQKScxyZJuNnedQ5/wKSR38lUII=
-github.com/rogpeppe/go-internal v1.13.1/go.mod 
h1:uMEvuHeurkdAXX61udpOXGD/AzZDWNMNyH2VO9fmH0o=
+github.com/rogpeppe/go-internal v1.14.1 
h1:UQB4HGPB6osV0SQTLymcB4TgvyWu6ZyliaW0tI/otEQ=
+github.com/rogpeppe/go-internal v1.14.1/go.mod 
h1:MaRKkUm5W0goXpeCfT7UZI6fk/L7L7so1lCWt35ZSgc=
 github.com/russross/blackfriday/v2 v2.1.0/go.mod 
h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
 github.com/sergi/go-diff v1.0.0/go.mod 
h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo=
 github.com/sergi/go-diff v1.4.0 h1:n/SP9D5ad1fORl+llWyN+D6qoUETXNZARKjyY2/KVCw=
@@ -285,8 +285,8 @@
 github.com/stretchr/testify v1.5.1/go.mod 
h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=
 github.com/stretchr/testify v1.6.1/go.mod 
h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
 github.com/stretchr/testify v1.7.0/go.mod 
h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
-github.com/stretchr/testify v1.10.0 
h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
-github.com/stretchr/testify v1.10.0/go.mod 
h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
+github.com/stretchr/testify v1.11.1 
h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
+github.com/stretchr/testify v1.11.1/go.mod 
h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
 github.com/tchap/go-patricia/v2 v2.3.2 
h1:xTHFutuitO2zqKAQ5rCROYgUb7Or/+IC3fts9/Yc7nM=
 github.com/tchap/go-patricia/v2 v2.3.2/go.mod 
h1:VZRHKAb53DLaG+nA9EaYYiaEx6YztwDlLElMsnSHD4k=
 github.com/valyala/bytebufferpool v1.0.0 
h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw=
@@ -311,24 +311,26 @@
 github.com/yuin/goldmark v1.2.1/go.mod 
h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
 github.com/yuin/goldmark v1.3.5/go.mod 
h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
 github.com/yuin/goldmark v1.4.0/go.mod 
h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
-go.opentelemetry.io/auto/sdk v1.1.0 
h1:cH53jehLUN6UFLY71z+NDOiNJqDdPRaXzTel0sJySYA=
-go.opentelemetry.io/auto/sdk v1.1.0/go.mod 
h1:3wSPjt5PWp2RhlCcmmOial7AvC4DQqZb7a7wCow3W8A=
+go.opentelemetry.io/auto/sdk v1.2.1 
h1:jXsnJ4Lmnqd11kwkBV2LgLoFMZKizbCi5fNZ/ipaZ64=
+go.opentelemetry.io/auto/sdk v1.2.1/go.mod 
h1:KRTj+aOaElaLi+wW1kO/DZRXwkF4C5xPbEe3ZiIhN7Y=
 go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 
h1:F7Jx+6hwnZ41NSFTO5q4LYDtJRXBf2PD0rNBkeB/lus=
 go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0/go.mod 
h1:UHB22Z8QsdRDrnAtX4PntOl36ajSxcdUMt1sF7Y6E7Q=
-go.opentelemetry.io/otel v1.36.0 
h1:UumtzIklRBY6cI/lllNZlALOF5nNIzJVb16APdvgTXg=
-go.opentelemetry.io/otel v1.36.0/go.mod 
h1:/TcFMXYjyRNh8khOAO9ybYkqaDBb/70aVwkNML4pP8E=
+go.opentelemetry.io/otel v1.43.0 
h1:mYIM03dnh5zfN7HautFE4ieIig9amkNANT+xcVxAj9I=
+go.opentelemetry.io/otel v1.43.0/go.mod 
h1:JuG+u74mvjvcm8vj8pI5XiHy1zDeoCS2LB1spIq7Ay0=
 go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.36.0 
h1:dNzwXjZKpMpE2JhmO+9HsPl42NIXFIFSUSSs0fiqra0=
 go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.36.0/go.mod 
h1:90PoxvaEB5n6AOdZvi+yWJQoE95U8Dhhw2bSyRqnTD0=
 go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.36.0 
h1:JgtbA0xkWHnTmYk7YusopJFX6uleBmAuZ8n05NEh8nQ=
 go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.36.0/go.mod 
h1:179AK5aar5R3eS9FucPy6rggvU0g52cvKId8pv4+v0c=
 go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.36.0 
h1:nRVXXvf78e00EwY6Wp0YII8ww2JVWshZ20HfTlE11AM=
 go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.36.0/go.mod 
h1:r49hO7CgrxY9Voaj3Xe8pANWtr0Oq916d0XAmOoCZAQ=
-go.opentelemetry.io/otel/metric v1.36.0 
h1:MoWPKVhQvJ+eeXWHFBOPoBOi20jh6Iq2CcCREuTYufE=
-go.opentelemetry.io/otel/metric v1.36.0/go.mod 
h1:zC7Ks+yeyJt4xig9DEw9kuUFe5C3zLbVjV2PzT6qzbs=
-go.opentelemetry.io/otel/sdk v1.36.0 
h1:b6SYIuLRs88ztox4EyrvRti80uXIFy+Sqzoh9kFULbs=
-go.opentelemetry.io/otel/sdk v1.36.0/go.mod 
h1:+lC+mTgD+MUWfjJubi2vvXWcVxyr9rmlshZni72pXeY=
-go.opentelemetry.io/otel/trace v1.36.0 
h1:ahxWNuqZjpdiFAyrIoQ4GIiAIhxAunQR6MUoKrsNd4w=
-go.opentelemetry.io/otel/trace v1.36.0/go.mod 
h1:gQ+OnDZzrybY4k4seLzPAWNwVBBVlF2szhehOBB/tGA=
+go.opentelemetry.io/otel/metric v1.43.0 
h1:d7638QeInOnuwOONPp4JAOGfbCEpYb+K6DVWvdxGzgM=
+go.opentelemetry.io/otel/metric v1.43.0/go.mod 
h1:RDnPtIxvqlgO8GRW18W6Z/4P462ldprJtfxHxyKd2PY=
+go.opentelemetry.io/otel/sdk v1.43.0 
h1:pi5mE86i5rTeLXqoF/hhiBtUNcrAGHLKQdhg4h4V9Dg=
+go.opentelemetry.io/otel/sdk v1.43.0/go.mod 
h1:P+IkVU3iWukmiit/Yf9AWvpyRDlUeBaRg6Y+C58QHzg=
+go.opentelemetry.io/otel/sdk/metric v1.43.0 
h1:S88dyqXjJkuBNLeMcVPRFXpRw2fuwdvfCGLEo89fDkw=
+go.opentelemetry.io/otel/sdk/metric v1.43.0/go.mod 
h1:C/RJtwSEJ5hzTiUz5pXF1kILHStzb9zFlIEe85bhj6A=
+go.opentelemetry.io/otel/trace v1.43.0 
h1:BkNrHpup+4k4w+ZZ86CZoHHEkohws8AY+WTX09nk+3A=
+go.opentelemetry.io/otel/trace v1.43.0/go.mod 
h1:/QJhyVBUUswCphDVxq+8mld+AvhXZLhe+8WVFxiFff0=
 go.opentelemetry.io/proto/otlp v1.7.0 
h1:jX1VolD6nHuFzOYso2E73H85i92Mv8JQYk0K9vz09os=
 go.opentelemetry.io/proto/otlp v1.7.0/go.mod 
h1:fSKjH6YJ7HDlwzltzyMj036AJ3ejJLCgCSHGj4efDDo=
 go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto=
@@ -403,8 +405,8 @@
 golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e/go.mod 
h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 golang.org/x/sys v0.0.0-20210831042530-f4d43177bf5e/go.mod 
h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod 
h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.33.0 h1:q3i8TbbEz+JRD9ywIRlyRAQbM0qF7hu24q3teo2hbuw=
-golang.org/x/sys v0.33.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
+golang.org/x/sys v0.42.0 h1:omrd2nAlyT5ESRdCLYdm3+fMfNFE/+Rf4bDIQImRJeo=
+golang.org/x/sys v0.42.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
 golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod 
h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
 golang.org/x/term v0.32.0 h1:DR4lr0TjUs3epypdhTOkMmuF5CDFJ/8pOnbzMZPQ7bg=
 golang.org/x/term v0.32.0/go.mod 
h1:uZG1FhGx848Sqfsq4/DlJr3xGGsYMu/L5GW4abiaEPQ=
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/starboard-0.15.32/itest/helper/helper.go 
new/starboard-0.15.37/itest/helper/helper.go
--- old/starboard-0.15.32/itest/helper/helper.go        2026-02-02 
14:11:31.000000000 +0100
+++ new/starboard-0.15.37/itest/helper/helper.go        2026-05-04 
14:55:02.000000000 +0200
@@ -462,7 +462,7 @@
                }
 
                dcDeploy := deployment.DeepCopy()
-               dcDeploy.Spec.Template.Spec.Containers[0].Image = "wordpress:5"
+               dcDeploy.Spec.Template.Spec.Containers[0].Image = 
"wordpress:5-fpm-alpine"
                err = h.kubeClient.Update(context.TODO(), dcDeploy)
                if err != nil && errors.IsConflict(err) {
                        return false, nil
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/starboard-0.15.32/mkdocs.yml 
new/starboard-0.15.37/mkdocs.yml
--- old/starboard-0.15.32/mkdocs.yml    2026-02-02 14:11:31.000000000 +0100
+++ new/starboard-0.15.37/mkdocs.yml    2026-05-04 14:55:02.000000000 +0200
@@ -99,8 +99,8 @@
   version:
     provider: mike
   var:
-    prev_git_tag: "v0.15.31"
-    chart_version: 0.10.23
+    prev_git_tag: "v0.15.36"
+    chart_version: 0.10.24
 
 # Requires pip install mkdocs-macros-plugin
 plugins:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/starboard-0.15.32/pkg/kube/resources.go 
new/starboard-0.15.37/pkg/kube/resources.go
--- old/starboard-0.15.32/pkg/kube/resources.go 2026-02-02 14:11:31.000000000 
+0100
+++ new/starboard-0.15.37/pkg/kube/resources.go 2026-05-04 14:55:02.000000000 
+0200
@@ -65,7 +65,7 @@
                DisableMethods: true,
                SpewKeys:       true,
        }
-       printer.Fprintf(hasher, "%#v", objectToWrite)
+       _, _ = printer.Fprintf(hasher, "%#v", objectToWrite)
 }
 
 // GetReportsByLabel fetch reports by matching labels

++++++ starboard.obsinfo ++++++
--- /var/tmp/diff_new_pack.WlO8vz/_old  2026-05-05 15:17:13.395743595 +0200
+++ /var/tmp/diff_new_pack.WlO8vz/_new  2026-05-05 15:17:13.399743754 +0200
@@ -1,5 +1,5 @@
 name: starboard
-version: 0.15.32
-mtime: 1770037891
-commit: 4892ad6dd3e7bd6528a9e02178ea4e2594b07051
+version: 0.15.37
+mtime: 1777899302
+commit: b37a23b09618e9534ab87e862a7085ff038fd2dc
 

++++++ vendor.tar.gz ++++++
/work/SRC/openSUSE:Factory/starboard/vendor.tar.gz 
/work/SRC/openSUSE:Factory/.starboard.new.30200/vendor.tar.gz differ: char 37, 
line 1

Reply via email to