Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package helmify for openSUSE:Factory checked in at 2024-02-16 21:42:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/helmify (Old) and /work/SRC/openSUSE:Factory/.helmify.new.1815 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "helmify" Fri Feb 16 21:42:08 2024 rev:17 rq:1147017 version:0.4.11 Changes: -------- --- /work/SRC/openSUSE:Factory/helmify/helmify.changes 2023-11-23 21:42:48.432262712 +0100 +++ /work/SRC/openSUSE:Factory/.helmify.new.1815/helmify.changes 2024-02-16 21:42:13.749426421 +0100 @@ -1,0 +2,8 @@ +Fri Feb 16 07:06:47 UTC 2024 - opensuse_buildserv...@ojkastl.de + +- Update to version 0.4.11: + * update examples + * fix: don't strip newlines after the templated value + * update ci + +------------------------------------------------------------------- Old: ---- helmify-0.4.10.obscpio New: ---- helmify-0.4.11.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ helmify.spec ++++++ --- /var/tmp/diff_new_pack.FkvcXq/_old 2024-02-16 21:42:14.549455287 +0100 +++ /var/tmp/diff_new_pack.FkvcXq/_new 2024-02-16 21:42:14.553455431 +0100 @@ -1,7 +1,7 @@ # # spec file for package helmify # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,7 +19,7 @@ %define __arch_install_post export NO_BRP_STRIP_DEBUG=true Name: helmify -Version: 0.4.10 +Version: 0.4.11 Release: 0 Summary: Creates Helm chart from Kubernetes yaml License: MIT ++++++ _service ++++++ --- /var/tmp/diff_new_pack.FkvcXq/_old 2024-02-16 21:42:14.581456442 +0100 +++ /var/tmp/diff_new_pack.FkvcXq/_new 2024-02-16 21:42:14.585456587 +0100 @@ -3,7 +3,7 @@ <param name="url">https://github.com/arttor/helmify/</param> <param name="scm">git</param> <param name="exclude">.git</param> - <param name="revision">v0.4.10</param> + <param name="revision">v0.4.11</param> <param name="versionformat">@PARENT_TAG@</param> <param name="changesgenerate">enable</param> <param name="versionrewrite-pattern">v(.*)</param> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.FkvcXq/_old 2024-02-16 21:42:14.601457163 +0100 +++ /var/tmp/diff_new_pack.FkvcXq/_new 2024-02-16 21:42:14.605457308 +0100 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/arttor/helmify/</param> - <param name="changesrevision">909d091dd6771aee63b43a9df16c22bdc883ffb9</param></service></servicedata> + <param name="changesrevision">2e9539cb5dfaf33b8c9741c1fd5deddc83e9db41</param></service></servicedata> (No newline at EOF) ++++++ helmify-0.4.10.obscpio -> helmify-0.4.11.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/helmify-0.4.10/.github/workflows/ci.yml new/helmify-0.4.11/.github/workflows/ci.yml --- old/helmify-0.4.10/.github/workflows/ci.yml 2023-11-22 08:30:33.000000000 +0100 +++ new/helmify-0.4.11/.github/workflows/ci.yml 2024-02-16 07:56:14.000000000 +0100 @@ -15,9 +15,10 @@ # GO tests - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: go-version: '1.21' + cache: false - name: Fmt run: go fmt ./... @@ -31,7 +32,7 @@ - name: golangci-lint uses: golangci/golangci-lint-action@v3 with: - version: v1.51.2 + version: v1.54 # Dry-run generated charts in cluster - name: Install k8s cluster uses: helm/kind-action@v1.4.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/helmify-0.4.10/examples/app/templates/myapp-service.yaml new/helmify-0.4.11/examples/app/templates/myapp-service.yaml --- old/helmify-0.4.10/examples/app/templates/myapp-service.yaml 2023-11-22 08:30:33.000000000 +0100 +++ new/helmify-0.4.11/examples/app/templates/myapp-service.yaml 2024-02-16 07:56:14.000000000 +0100 @@ -11,4 +11,4 @@ app: myapp {{- include "app.selectorLabels" . | nindent 4 }} ports: - {{- .Values.myappService.ports | toYaml | nindent 2 -}} \ No newline at end of file + {{- .Values.myappService.ports | toYaml | nindent 2 }} \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/helmify-0.4.10/examples/app/templates/nginx.yaml new/helmify-0.4.11/examples/app/templates/nginx.yaml --- old/helmify-0.4.10/examples/app/templates/nginx.yaml 2023-11-22 08:30:33.000000000 +0100 +++ new/helmify-0.4.11/examples/app/templates/nginx.yaml 2024-02-16 07:56:14.000000000 +0100 @@ -11,4 +11,4 @@ app: nginx {{- include "app.selectorLabels" . | nindent 4 }} ports: - {{- .Values.nginx.ports | toYaml | nindent 2 -}} \ No newline at end of file + {{- .Values.nginx.ports | toYaml | nindent 2 }} \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/helmify-0.4.10/examples/operator/templates/metrics-service.yaml new/helmify-0.4.11/examples/operator/templates/metrics-service.yaml --- old/helmify-0.4.10/examples/operator/templates/metrics-service.yaml 2023-11-22 08:30:33.000000000 +0100 +++ new/helmify-0.4.11/examples/operator/templates/metrics-service.yaml 2024-02-16 07:56:14.000000000 +0100 @@ -11,4 +11,4 @@ control-plane: controller-manager {{- include "operator.selectorLabels" . | nindent 4 }} ports: - {{- .Values.metricsService.ports | toYaml | nindent 2 -}} \ No newline at end of file + {{- .Values.metricsService.ports | toYaml | nindent 2 }} \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/helmify-0.4.10/examples/operator/templates/webhook-service.yaml new/helmify-0.4.11/examples/operator/templates/webhook-service.yaml --- old/helmify-0.4.10/examples/operator/templates/webhook-service.yaml 2023-11-22 08:30:33.000000000 +0100 +++ new/helmify-0.4.11/examples/operator/templates/webhook-service.yaml 2024-02-16 07:56:14.000000000 +0100 @@ -10,4 +10,4 @@ control-plane: controller-manager {{- include "operator.selectorLabels" . | nindent 4 }} ports: - {{- .Values.webhookService.ports | toYaml | nindent 2 -}} \ No newline at end of file + {{- .Values.webhookService.ports | toYaml | nindent 2 }} \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/helmify-0.4.10/pkg/processor/service/service.go new/helmify-0.4.11/pkg/processor/service/service.go --- old/helmify-0.4.10/pkg/processor/service/service.go 2023-11-22 08:30:33.000000000 +0100 +++ new/helmify-0.4.11/pkg/processor/service/service.go 2024-02-16 07:56:14.000000000 +0100 @@ -27,7 +27,7 @@ %[2]s {{- include "%[3]s.selectorLabels" . | nindent 4 }} ports: - {{- .Values.%[1]s.ports | toYaml | nindent 2 -}}` + {{- .Values.%[1]s.ports | toYaml | nindent 2 }}` ) var svcGVC = schema.GroupVersionKind{ ++++++ helmify.obsinfo ++++++ --- /var/tmp/diff_new_pack.FkvcXq/_old 2024-02-16 21:42:14.761462936 +0100 +++ /var/tmp/diff_new_pack.FkvcXq/_new 2024-02-16 21:42:14.765463081 +0100 @@ -1,5 +1,5 @@ name: helmify -version: 0.4.10 -mtime: 1700638233 -commit: 909d091dd6771aee63b43a9df16c22bdc883ffb9 +version: 0.4.11 +mtime: 1708066574 +commit: 2e9539cb5dfaf33b8c9741c1fd5deddc83e9db41 ++++++ vendor.tar.gz ++++++ /work/SRC/openSUSE:Factory/helmify/vendor.tar.gz /work/SRC/openSUSE:Factory/.helmify.new.1815/vendor.tar.gz differ: char 5, line 1