Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rancher-cli for openSUSE:Factory checked in at 2025-06-30 14:01:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rancher-cli (Old) and /work/SRC/openSUSE:Factory/.rancher-cli.new.7067 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rancher-cli" Mon Jun 30 14:01:16 2025 rev:19 rq:1289177 version:2.11.3 Changes: -------- --- /work/SRC/openSUSE:Factory/rancher-cli/rancher-cli.changes 2025-05-26 18:34:16.528236355 +0200 +++ /work/SRC/openSUSE:Factory/.rancher-cli.new.7067/rancher-cli.changes 2025-06-30 14:01:44.263809461 +0200 @@ -1,0 +2,7 @@ +Mon Jun 30 06:25:12 UTC 2025 - Johannes Kastl <opensuse_buildserv...@ojkastl.de> + +- Update to version 2.11.3: + * Update Rancher refs to v2.11.3 (#446) + * Bump rancher/rancher to v2.11.3-alpha2 (#442) + +------------------------------------------------------------------- Old: ---- rancher-cli-2.11.2.obscpio New: ---- rancher-cli-2.11.3.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rancher-cli.spec ++++++ --- /var/tmp/diff_new_pack.5UhTU9/_old 2025-06-30 14:01:45.547862324 +0200 +++ /var/tmp/diff_new_pack.5UhTU9/_new 2025-06-30 14:01:45.551862488 +0200 @@ -17,7 +17,7 @@ Name: rancher-cli -Version: 2.11.2 +Version: 2.11.3 Release: 0 Summary: Rancher CLI License: Apache-2.0 ++++++ _service ++++++ --- /var/tmp/diff_new_pack.5UhTU9/_old 2025-06-30 14:01:45.587863970 +0200 +++ /var/tmp/diff_new_pack.5UhTU9/_new 2025-06-30 14:01:45.587863970 +0200 @@ -3,7 +3,7 @@ <param name="url">https://github.com/rancher/cli</param> <param name="scm">git</param> <param name="exclude">.git</param> - <param name="revision">v2.11.2</param> + <param name="revision">v2.11.3</param> <param name="versionformat">@PARENT_TAG@</param> <param name="versionrewrite-pattern">v(.*)</param> <param name="changesgenerate">enable</param> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.5UhTU9/_old 2025-06-30 14:01:45.611864959 +0200 +++ /var/tmp/diff_new_pack.5UhTU9/_new 2025-06-30 14:01:45.615865123 +0200 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/rancher/cli</param> - <param name="changesrevision">4568e9e2d4c9104729deb68081e8aa8b4402da53</param></service></servicedata> + <param name="changesrevision">9e9b0f9f160ecbb968d2b5e260ee64d6bec7f622</param></service></servicedata> (No newline at EOF) ++++++ rancher-cli-2.11.2.obscpio -> rancher-cli-2.11.3.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rancher-cli-2.11.2/.github/workflows/ci.yml new/rancher-cli-2.11.3/.github/workflows/ci.yml --- old/rancher-cli-2.11.2/.github/workflows/ci.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/rancher-cli-2.11.3/.github/workflows/ci.yml 2025-06-26 01:13:33.000000000 +0200 @@ -0,0 +1,58 @@ +name: CI + +on: + workflow_dispatch: + push: + pull_request: + +jobs: + + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout Repo + uses: actions/checkout@v3 + + - name: Set up Go + uses: actions/setup-go@v5 + with: + go-version-file: go.mod + cache: false + + - name: Lint + uses: golangci/golangci-lint-action@v4 + + - name: Validate Go modules + run: ./scripts/validate + + - name: Test + run: ./scripts/test + + - name: Get Tag + if: startsWith(github.ref, 'refs/tags/v') + run: echo "GITHUB_TAG=$GITHUB_REF_NAME" >> $GITHUB_ENV + + - name: Build + env: + CROSS: 1 + run: ./scripts/build + + - name: Package + run: | + ./scripts/package + ls -lR dist/artifacts + # Stage binary for packaging step + cp -r ./bin/* ./package/ + + # Export the tag for the next step + source ./scripts/version + echo "VERSION=$VERSION" + echo "VERSION=$VERSION" >> $GITHUB_ENV + + - name: Docker Build + uses: docker/build-push-action@v5 + with: + push: false + context: package + tags: rancher/cli2:${{ env.VERSION }} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rancher-cli-2.11.2/.github/workflows/fossa.yml new/rancher-cli-2.11.3/.github/workflows/fossa.yml --- old/rancher-cli-2.11.2/.github/workflows/fossa.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/rancher-cli-2.11.3/.github/workflows/fossa.yml 2025-06-26 01:13:33.000000000 +0200 @@ -0,0 +1,33 @@ +name: FOSSA + +on: + workflow_dispatch: + push: + tags: + - v* + branches: + - v* + - main + +jobs: + fossa: + runs-on: ubuntu-latest + + permissions: + contents: read + id-token: write # needed for the Vault authentication + + steps: + - name: Checkout Repo + uses: actions/checkout@v3 + + - name: Load Secrets from Vault + uses: rancher-eio/read-vault-secrets@main + with: + secrets: | + secret/data/github/org/rancher/fossa/push token | FOSSA + + - name: Check FOSSA compliance + uses: fossas/fossa-action@main + with: + api-key: ${{ env.FOSSA }} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rancher-cli-2.11.2/.github/workflows/release.yml new/rancher-cli-2.11.3/.github/workflows/release.yml --- old/rancher-cli-2.11.2/.github/workflows/release.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/rancher-cli-2.11.3/.github/workflows/release.yml 2025-06-26 01:13:33.000000000 +0200 @@ -0,0 +1,100 @@ +name: Release + +on: + push: + tags: + - v* + +jobs: + release: + permissions: + contents: write # needed to create/update the release with the assets + id-token: write # needed for the Vault authentication + runs-on: ubuntu-latest + + steps: + - name: Checkout Repo + uses: actions/checkout@v3 + + - name: Load Secrets from Vault + uses: rancher-eio/read-vault-secrets@main + with: + secrets: | + secret/data/github/repo/${{ github.repository }}/dockerhub/rancher/credentials username | DOCKER_USERNAME ; + secret/data/github/repo/${{ github.repository }}/dockerhub/rancher/credentials password | DOCKER_PASSWORD ; + secret/data/github/repo/${{ github.repository }}/google-auth/rancher/credentials token | GOOGLE_AUTH ; + + - name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ env.DOCKER_USERNAME }} + password: ${{ env.DOCKER_PASSWORD }} + + - name: Authenticate to Google Cloud + uses: google-github-actions/auth@v2 + with: + credentials_json: "${{ env.GOOGLE_AUTH }}" + + - name: Set up Go + uses: actions/setup-go@v5 + with: + go-version-file: go.mod + cache: false + + - name: Lint + uses: golangci/golangci-lint-action@v4 + + - name: Validate Go modules + run: ./scripts/validate + + - name: Test + run: ./scripts/test + + - name: Get Tag + if: startsWith(github.ref, 'refs/tags/v') + run: echo "GITHUB_TAG=$GITHUB_REF_NAME" >> $GITHUB_ENV + + - name: Build + env: + CROSS: 1 + run: ./scripts/build + + - name: Package + run: | + ./scripts/package + ls -lR dist/artifacts + # Stage binary for packaging step + cp -r ./bin/* ./package/ + + # Export the tag for the next step + source ./scripts/version + echo "VERSION=$VERSION" + echo "VERSION=$VERSION" >> $GITHUB_ENV + + - name: Upload Release assets + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + cd dist/artifacts/$VERSION + ls -lR + # generate sha256sum file + find . -maxdepth 1 -type f ! -name sha256sum.txt -printf '%P\0' | xargs -0 sha256sum > sha256sum.txt + gh release upload $VERSION *.txt *.xz *.gz *.zip + + - name: Upload Release assets to Google Cloud + uses: google-github-actions/upload-cloud-storage@v2 + with: + path: dist/artifacts/${{ env.VERSION }} + destination: releases.rancher.com/cli2/${{ env.VERSION }} + glob: '*.*' # copy only the files in the path folder + parent: false + process_gcloudignore: false + headers: |- + cache-control: public,max-age=3600 + + - name: Docker Build + uses: docker/build-push-action@v5 + with: + push: true + context: package + tags: rancher/cli2:${{ env.VERSION }} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rancher-cli-2.11.2/.gitignore new/rancher-cli-2.11.3/.gitignore --- old/rancher-cli-2.11.2/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/rancher-cli-2.11.3/.gitignore 2025-06-26 01:13:33.000000000 +0200 @@ -0,0 +1,9 @@ +/.dapper +/bin +/build +/dist +*.swp +/.trash-cache +/.idea +trash.lock +/cli diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rancher-cli-2.11.2/go.mod new/rancher-cli-2.11.3/go.mod --- old/rancher-cli-2.11.2/go.mod 2025-05-22 20:07:36.000000000 +0200 +++ new/rancher-cli-2.11.3/go.mod 2025-06-26 01:13:33.000000000 +0200 @@ -19,14 +19,14 @@ github.com/ghodss/yaml v1.0.0 github.com/grantae/certinfo v0.0.0-20170412194111-59d56a35515b github.com/rancher/norman v0.5.2 - github.com/rancher/rancher/pkg/apis v0.0.0-20250522174203-d0cd9e19a55e - github.com/rancher/rancher/pkg/client v0.0.0-20250522174203-d0cd9e19a55e + github.com/rancher/rancher/pkg/apis v0.0.0-20250625222814-720f41283e10 + github.com/rancher/rancher/pkg/client v0.0.0-20250625222814-720f41283e10 github.com/sirupsen/logrus v1.9.3 github.com/stretchr/testify v1.10.0 github.com/tidwall/gjson v1.17.0 github.com/urfave/cli v1.22.14 golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 - golang.org/x/oauth2 v0.29.0 + golang.org/x/oauth2 v0.30.0 golang.org/x/sync v0.14.0 golang.org/x/term v0.32.0 golang.org/x/text v0.25.0 @@ -66,12 +66,12 @@ github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.55.0 // indirect github.com/prometheus/procfs v0.15.1 // indirect - github.com/rancher/aks-operator v1.11.2 // indirect - github.com/rancher/eks-operator v1.11.2 // indirect + github.com/rancher/aks-operator v1.11.3 // indirect + github.com/rancher/eks-operator v1.11.3 // indirect github.com/rancher/fleet/pkg/apis v0.12.3 // indirect - github.com/rancher/gke-operator v1.11.2 // indirect + github.com/rancher/gke-operator v1.11.3 // indirect github.com/rancher/lasso v0.2.2 // indirect - github.com/rancher/rke v1.8.3 // indirect + github.com/rancher/rke v1.8.4 // indirect github.com/rancher/wrangler/v3 v3.2.1 // indirect github.com/russross/blackfriday/v2 v2.1.0 // indirect github.com/spf13/cobra v1.8.1 // indirect diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rancher-cli-2.11.2/go.sum new/rancher-cli-2.11.3/go.sum --- old/rancher-cli-2.11.2/go.sum 2025-05-22 20:07:36.000000000 +0200 +++ new/rancher-cli-2.11.3/go.sum 2025-06-26 01:13:33.000000000 +0200 @@ -91,24 +91,24 @@ github.com/prometheus/common v0.55.0/go.mod h1:2SECS4xJG1kd8XF9IcM1gMX6510RAEL65zxzNImwdc8= github.com/prometheus/procfs v0.15.1 h1:YagwOFzUgYfKKHX6Dr+sHT7km/hxC76UB0learggepc= github.com/prometheus/procfs v0.15.1/go.mod h1:fB45yRUv8NstnjriLhBQLuOUt+WW4BsoGhij/e3PBqk= -github.com/rancher/aks-operator v1.11.2 h1:jcj7dNs0/k5PKdQGWg+SCyZ7M8WKjSF/0Lj8mr7CqLc= -github.com/rancher/aks-operator v1.11.2/go.mod h1:MdPjyE1l20kfiUmIs8neHhKfSv9Wh7uuFdjZk6LdWfk= -github.com/rancher/eks-operator v1.11.2 h1:/4ZV8+YhWo86Bx98MiGOeQlIPCvWKP7LKQcaOTU9jFE= -github.com/rancher/eks-operator v1.11.2/go.mod h1:9gqAtjlLRhxDbyjUPpgr4k7XIt4pGsmOiJMUE+SF99I= +github.com/rancher/aks-operator v1.11.3 h1:a6l0a3YGjct6gnXbZXjq+OXcOhrLTJdyjVjWZPO+RB0= +github.com/rancher/aks-operator v1.11.3/go.mod h1:jnAiTmZY1LfVT/73kafo51wwO4IYFMX4lwMt3UWCjLg= +github.com/rancher/eks-operator v1.11.3 h1:gij9cX5jGxH5CcadNC9ktI9PCTUk0hGaXcrIt0dgKrM= +github.com/rancher/eks-operator v1.11.3/go.mod h1:USmJxpssoIrdR5R1s7WnuNTA66+83eU1DbbLzPggaQg= github.com/rancher/fleet/pkg/apis v0.12.3 h1:GMO3V0AK+V5BmuTMH7EPrL3QcrgFWUItEQCqPj1zNZQ= github.com/rancher/fleet/pkg/apis v0.12.3/go.mod h1:KAjRE0EDXanNiohC/OQyeQvxBmGqIX+yh/Y1kSF4OyE= -github.com/rancher/gke-operator v1.11.2 h1:W9OUV7s8kgOfD/89sqKvTCwsQagoo4Jbp7D04DcysRI= -github.com/rancher/gke-operator v1.11.2/go.mod h1:ldj1spyE20M4Sp2U26stz6fSlJ3sHXxnOK9z9orEgrQ= +github.com/rancher/gke-operator v1.11.3 h1:XcnmnCwcGZJSbmJn+0QumfwJsT0mWO4Q1o3GkJDRFaY= +github.com/rancher/gke-operator v1.11.3/go.mod h1:OUf1WFe7RbV2UbsjAf6mX7IehcGn2JsaN5lyostw1x4= github.com/rancher/lasso v0.2.2 h1:oKP5d4+eSupwHftLMTWo6QS1tYYZ5XK+ZjP+VNhwmk8= github.com/rancher/lasso v0.2.2/go.mod h1:KSV3jBXfdXqdCuMm2uC8kKB9q/wuDYb3h0eHZoRjShM= github.com/rancher/norman v0.5.2 h1:rwUKZ0QeVKJEtznhRdNQUMJtKjSoLYbFuPQGXm6xTxw= github.com/rancher/norman v0.5.2/go.mod h1:lDO9ylAYBwch9FiYyuuWlYd7+IxgRgh0ioDJBweC7t4= -github.com/rancher/rancher/pkg/apis v0.0.0-20250522174203-d0cd9e19a55e h1:FZDRNqFNEQvsS8wSOFc9x/EmiHnZMyAqnu0XOHjrwlw= -github.com/rancher/rancher/pkg/apis v0.0.0-20250522174203-d0cd9e19a55e/go.mod h1:GUykZCRpbPna1umtK3J9e81oGVKPiGGNd68e1tatS9o= -github.com/rancher/rancher/pkg/client v0.0.0-20250522174203-d0cd9e19a55e h1:LhH7Cm7EL55AulNJJ7jdzcGg6M80uSPZge2JtWb7+uo= -github.com/rancher/rancher/pkg/client v0.0.0-20250522174203-d0cd9e19a55e/go.mod h1:xa04BKRmK4q1vCeh+X3ZLU/FByjeq6p/51AcniOGXKE= -github.com/rancher/rke v1.8.3 h1:i5k2jverBmm6oemgZoKeGguCDFMSyxw36F8epTHTiaE= -github.com/rancher/rke v1.8.3/go.mod h1:EaAkq796bgmmx/s15Xz0TvCkBOfepMOqO8tFockOmis= +github.com/rancher/rancher/pkg/apis v0.0.0-20250625222814-720f41283e10 h1:hlKeBk3aaX6L50aEfw6tdVG4z/jSrEwjE9G8oNYKxV0= +github.com/rancher/rancher/pkg/apis v0.0.0-20250625222814-720f41283e10/go.mod h1:USxT/NvUcqRFJipamb6QIhYb+QclRfPwJm5FSjnUuGE= +github.com/rancher/rancher/pkg/client v0.0.0-20250625222814-720f41283e10 h1:TP8qZ9ywLmiqA5Zsp4u9lWRK59xSrKBZebks3bvu/vI= +github.com/rancher/rancher/pkg/client v0.0.0-20250625222814-720f41283e10/go.mod h1:xa04BKRmK4q1vCeh+X3ZLU/FByjeq6p/51AcniOGXKE= +github.com/rancher/rke v1.8.4 h1:BXcHJ6nkxpoIaaagFXvSbwW3S2AW4Jx4ruYZ53bl9tE= +github.com/rancher/rke v1.8.4/go.mod h1:EaAkq796bgmmx/s15Xz0TvCkBOfepMOqO8tFockOmis= github.com/rancher/wrangler/v3 v3.2.1 h1:V51PnoGb8bZ5jJdxFlqKQApzWdSp4sEy5OPGuEGqVbI= github.com/rancher/wrangler/v3 v3.2.1/go.mod h1:RV8kkv5br5HaxXWamIbr95pOjvVeoC5CeBldcdw5Fv0= github.com/rogpeppe/go-internal v1.13.1 h1:KvO1DLK/DRN07sQ1LQKScxyZJuNnedQ5/wKSR38lUII= @@ -165,8 +165,8 @@ golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.38.0 h1:vRMAPTMaeGqVhG5QyLJHqNDwecKTomGeqbnfZyKlBI8= golang.org/x/net v0.38.0/go.mod h1:ivrbrMbzFq5J41QOQh0siUuly180yBYtLp+CKbEaFx8= -golang.org/x/oauth2 v0.29.0 h1:WdYw2tdTK1S8olAzWHdgeqfy+Mtm9XNhv/xJsY65d98= -golang.org/x/oauth2 v0.29.0/go.mod h1:onh5ek6nERTohokkhCD/y2cV4Do3fxFHFuAejCkRWT8= +golang.org/x/oauth2 v0.30.0 h1:dnDm7JmhM45NNpd8FDDeLhK6FwqbOf4MLCM9zb1BOHI= +golang.org/x/oauth2 v0.30.0/go.mod h1:B++QgG3ZKulg6sRPGD/mqlHQs5rB3Ml9erfeDY7xKlU= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= ++++++ rancher-cli.obsinfo ++++++ --- /var/tmp/diff_new_pack.5UhTU9/_old 2025-06-30 14:01:45.763871217 +0200 +++ /var/tmp/diff_new_pack.5UhTU9/_new 2025-06-30 14:01:45.767871381 +0200 @@ -1,5 +1,5 @@ name: rancher-cli -version: 2.11.2 -mtime: 1747937256 -commit: 4568e9e2d4c9104729deb68081e8aa8b4402da53 +version: 2.11.3 +mtime: 1750893213 +commit: 9e9b0f9f160ecbb968d2b5e260ee64d6bec7f622 ++++++ vendor.tar.gz ++++++ /work/SRC/openSUSE:Factory/rancher-cli/vendor.tar.gz /work/SRC/openSUSE:Factory/.rancher-cli.new.7067/vendor.tar.gz differ: char 15, line 1