Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package k8tz for openSUSE:Factory checked in at 2026-03-09 16:19:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/k8tz (Old) and /work/SRC/openSUSE:Factory/.k8tz.new.8177 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "k8tz" Mon Mar 9 16:19:52 2026 rev:4 rq:1337600 version:0.19.0 Changes: -------- --- /work/SRC/openSUSE:Factory/k8tz/k8tz.changes 2025-03-25 22:19:59.129438246 +0100 +++ /work/SRC/openSUSE:Factory/.k8tz.new.8177/k8tz.changes 2026-03-09 16:24:11.556773172 +0100 @@ -1,0 +2,6 @@ +Mon Mar 09 07:39:12 UTC 2026 - Johannes Kastl <[email protected]> + +- Update to version 0.19.0: + * build: bump tzdata version to 2026a + +------------------------------------------------------------------- Old: ---- k8tz-0.18.0.obscpio New: ---- k8tz-0.19.0.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ k8tz.spec ++++++ --- /var/tmp/diff_new_pack.qJzhhI/_old 2026-03-09 16:24:12.780823409 +0100 +++ /var/tmp/diff_new_pack.qJzhhI/_new 2026-03-09 16:24:12.780823409 +0100 @@ -1,7 +1,7 @@ # # spec file for package k8tz # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,14 +17,14 @@ Name: k8tz -Version: 0.18.0 +Version: 0.19.0 Release: 0 Summary: CLI tool to inject timezones into Kubernetes Pods and CronJobs License: Apache-2.0 URL: https://github.com/k8tz/k8tz Source: k8tz-%{version}.tar.gz Source1: vendor.tar.gz -BuildRequires: go >= 1.23 +BuildRequires: golang(API) >= 1.23 %description k8tz is a kubernetes admission controller and a CLI tool to inject timezones ++++++ _service ++++++ --- /var/tmp/diff_new_pack.qJzhhI/_old 2026-03-09 16:24:12.816824886 +0100 +++ /var/tmp/diff_new_pack.qJzhhI/_new 2026-03-09 16:24:12.820825050 +0100 @@ -3,7 +3,7 @@ <param name="url">https://github.com/k8tz/k8tz</param> <param name="scm">git</param> <param name="exclude">.git</param> - <param name="revision">v0.18.0</param> + <param name="revision">v0.19.0</param> <param name="versionformat">@PARENT_TAG@</param> <param name="versionrewrite-pattern">v(.*)</param> <param name="changesgenerate">enable</param> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.qJzhhI/_old 2026-03-09 16:24:12.844826035 +0100 +++ /var/tmp/diff_new_pack.qJzhhI/_new 2026-03-09 16:24:12.848826200 +0100 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/k8tz/k8tz</param> - <param name="changesrevision">2026b4e946a6e34643892a403986b9a58c393405</param></service></servicedata> + <param name="changesrevision">0f2d24b93821fd296ca5dc7162eb5ebd4e459dfb</param></service></servicedata> (No newline at EOF) ++++++ k8tz-0.18.0.obscpio -> k8tz-0.19.0.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/k8tz-0.18.0/.github/workflows/go.yaml new/k8tz-0.19.0/.github/workflows/go.yaml --- old/k8tz-0.18.0/.github/workflows/go.yaml 2025-03-24 20:41:28.000000000 +0100 +++ new/k8tz-0.19.0/.github/workflows/go.yaml 1970-01-01 01:00:00.000000000 +0100 @@ -1,42 +0,0 @@ -name: Go - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - - lint: - name: lint - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: golangci-lint - uses: golangci/golangci-lint-action@v3 - with: - version: latest - args: --timeout=5m - - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - name: Set up Go - uses: actions/setup-go@v3 - with: - go-version: 1.23 - - - name: Compile and Test - run: make compile test - - - name: Run coverage - run: go test -race -coverprofile=coverage.txt -covermode=atomic ./... - - - name: Upload coverage reports to Codecov - run: | - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov -t ${CODECOV_TOKEN} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/k8tz-0.18.0/.github/workflows/goreleaser.yaml new/k8tz-0.19.0/.github/workflows/goreleaser.yaml --- old/k8tz-0.18.0/.github/workflows/goreleaser.yaml 2025-03-24 20:41:28.000000000 +0100 +++ new/k8tz-0.19.0/.github/workflows/goreleaser.yaml 1970-01-01 01:00:00.000000000 +0100 @@ -1,37 +0,0 @@ -name: goreleaser - -on: - push: - tags: - - 'v*' - -permissions: - contents: write - -jobs: - goreleaser: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - uses: actions/setup-go@v3 - with: - go-version: '1.23' - cache: false - - - name: docker-login - uses: docker/login-action@v2 - with: - registry: quay.io - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - - - uses: goreleaser/goreleaser-action@v4 - with: - distribution: goreleaser - version: latest - args: release --clean --timeout 1h30m - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/k8tz-0.18.0/.github/workflows/helm-lint.yaml new/k8tz-0.19.0/.github/workflows/helm-lint.yaml --- old/k8tz-0.18.0/.github/workflows/helm-lint.yaml 2025-03-24 20:41:28.000000000 +0100 +++ new/k8tz-0.19.0/.github/workflows/helm-lint.yaml 1970-01-01 01:00:00.000000000 +0100 @@ -1,22 +0,0 @@ -name: Lint Helm Charts - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - lint-test: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Set up chart-testing - uses: helm/[email protected] - - - name: Run chart-testing (lint) - run: ct lint --validate-maintainers=false --check-version-increment=false diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/k8tz-0.18.0/.github/workflows/helm-release.yaml new/k8tz-0.19.0/.github/workflows/helm-release.yaml --- old/k8tz-0.18.0/.github/workflows/helm-release.yaml 2025-03-24 20:41:28.000000000 +0100 +++ new/k8tz-0.19.0/.github/workflows/helm-release.yaml 1970-01-01 01:00:00.000000000 +0100 @@ -1,27 +0,0 @@ -name: Release Helm Charts - -on: - push: - branches: - - master - -jobs: - release: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Configure Git - run: | - git config user.name "$GITHUB_ACTOR" - git config user.email "[email protected]" - - - name: Run chart-releaser - uses: helm/[email protected] - env: - CR_RELEASE_NAME_TEMPLATE: "helm-chart-v{{ .Version }}-k8tz-v{{ .AppVersion }}" - CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - CR_SKIP_EXISTING: "true" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/k8tz-0.18.0/.gitignore new/k8tz-0.19.0/.gitignore --- old/k8tz-0.18.0/.gitignore 2025-03-24 20:41:28.000000000 +0100 +++ new/k8tz-0.19.0/.gitignore 1970-01-01 01:00:00.000000000 +0100 @@ -1,12 +0,0 @@ -/vendor/ -build/ -*.tgz -tls/ -/k8tz -ignore -.vscode -*.pdf -*.mp4 -tzdata/zoneinfo/ -tzdata/*.tar.gz -.idea/ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/k8tz-0.18.0/CHANGELOG.md new/k8tz-0.19.0/CHANGELOG.md --- old/k8tz-0.18.0/CHANGELOG.md 2025-03-24 20:41:28.000000000 +0100 +++ new/k8tz-0.19.0/CHANGELOG.md 2026-03-07 13:03:49.000000000 +0100 @@ -1,3 +1,8 @@ +# 0.19.0 + +- Update tzdata package to [2026a](https://github.com/k8tz/k8tz/commit/bb9248cea9368ea23fa7e98eee167c1a2bce4c13) +- ci: push Helm Chart to GHCR (https://github.com/k8tz/k8tz/pull/118) + # 0.18.0 - Update tzdata package to [2025b](https://github.com/k8tz/k8tz/pull/116) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/k8tz-0.18.0/Dockerfile new/k8tz-0.19.0/Dockerfile --- old/k8tz-0.18.0/Dockerfile 2025-03-24 20:41:28.000000000 +0100 +++ new/k8tz-0.19.0/Dockerfile 2026-03-07 13:03:49.000000000 +0100 @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -ARG TZDATA_IMAGE=quay.io/k8tz/tzdata:2025b +ARG TZDATA_IMAGE=quay.io/k8tz/tzdata:2026a FROM $TZDATA_IMAGE ARG BINARY_LOCATION=k8tz diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/k8tz-0.18.0/Makefile new/k8tz-0.19.0/Makefile --- old/k8tz-0.18.0/Makefile 2025-03-24 20:41:28.000000000 +0100 +++ new/k8tz-0.19.0/Makefile 2026-03-07 13:03:49.000000000 +0100 @@ -17,7 +17,7 @@ # Build Variables BINARY_NAME ?= k8tz OUT_DIR ?= build/ -VERSION ?= 0.18.0 +VERSION ?= 0.19.0 VERSION_SUFFIX ?= TARGET=/usr/local/bin INSTALLCMD=install -v $(OUT_DIR)$(BINARY_NAME) $(TARGET) @@ -41,7 +41,7 @@ # Time-Zone Database Variables TZDATA_IMAGE_REPOSITORY ?= quay.io/k8tz/tzdata -TZDATA_VERSION ?= 2025b +TZDATA_VERSION ?= 2026a TZDATA_IMAGE = $(TZDATA_IMAGE_REPOSITORY):$(TZDATA_VERSION) tzdata: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/k8tz-0.18.0/README.md new/k8tz-0.19.0/README.md --- old/k8tz-0.18.0/README.md 2025-03-24 20:41:28.000000000 +0100 +++ new/k8tz-0.19.0/README.md 2026-03-07 13:03:49.000000000 +0100 @@ -71,7 +71,7 @@ You can install k8tz binary file by downloading precompiled binary and use it ```console -wget -c https://github.com/k8tz/k8tz/releases/download/v0.18.0/k8tz_0.18.0_linux_amd64.tar.gz -O - | tar xz +wget -c https://github.com/k8tz/k8tz/releases/download/v0.19.0/k8tz_0.19.0_linux_amd64.tar.gz -O - | tar xz chmod +x k8tz ./k8tz version ``` diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/k8tz-0.18.0/charts/k8tz/Chart.yaml new/k8tz-0.19.0/charts/k8tz/Chart.yaml --- old/k8tz-0.18.0/charts/k8tz/Chart.yaml 2025-03-24 20:41:28.000000000 +0100 +++ new/k8tz-0.19.0/charts/k8tz/Chart.yaml 2026-03-07 13:03:49.000000000 +0100 @@ -1,8 +1,8 @@ apiVersion: v2 name: k8tz description: Kubernetes admission controller to inject timezones into Pods and CronJobs -version: 0.17.1 -appVersion: "0.17.1" +version: 0.18.0 +appVersion: "0.18.0" icon: https://github.com/k8tz/k8tz/raw/master/assets/k8tz-icon-transparent.png home: http://k8tz.io sources: @@ -16,10 +16,11 @@ - tzdb annotations: artifacthub.io/changes: | - - kind: "fixed" - description: "don't render secret permissions when cert-manager is not used" + - kind: "changed" + description: "update tzdata package to 2025b" artifacthub.io/links: | - name: "source" url: "https://github.com/k8tz/k8tz" artifacthub.io/containsSecurityUpdates: "true" artifacthub.io/license: "Apache-2.0" + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/k8tz-0.18.0/pkg/version/version.go new/k8tz-0.19.0/pkg/version/version.go --- old/k8tz-0.18.0/pkg/version/version.go 2025-03-24 20:41:28.000000000 +0100 +++ new/k8tz-0.19.0/pkg/version/version.go 2026-03-07 13:03:49.000000000 +0100 @@ -22,7 +22,7 @@ ) var ( - AppVersion = "0.18.0" + AppVersion = "0.19.0" VersionSuffix = "" GitCommit = "" ImageRepository = "quay.io/k8tz/k8tz" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/k8tz-0.18.0/tzdata/Dockerfile new/k8tz-0.19.0/tzdata/Dockerfile --- old/k8tz-0.18.0/tzdata/Dockerfile 2025-03-24 20:41:28.000000000 +0100 +++ new/k8tz-0.19.0/tzdata/Dockerfile 2026-03-07 13:03:49.000000000 +0100 @@ -14,7 +14,7 @@ FROM alpine:3.21 AS src -ARG tzdbversion=2025b +ARG tzdbversion=2026a RUN \ apk add build-base lzip && \ wget -O tzdb.tar.lz https://data.iana.org/time-zones/releases/tzdb-$tzdbversion.tar.lz && \ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/k8tz-0.18.0/tzdata/Makefile new/k8tz-0.19.0/tzdata/Makefile --- old/k8tz-0.18.0/tzdata/Makefile 2025-03-24 20:41:28.000000000 +0100 +++ new/k8tz-0.19.0/tzdata/Makefile 2026-03-07 13:03:49.000000000 +0100 @@ -15,7 +15,7 @@ .DEFAULT_GOAL := build IMAGE_REPOSITORY ?= quay.io/k8tz/tzdata -TZDATA_VERSION ?= 2025b +TZDATA_VERSION ?= 2026a IMAGE = $(IMAGE_REPOSITORY):$(TZDATA_VERSION) clean: ++++++ k8tz.obsinfo ++++++ --- /var/tmp/diff_new_pack.qJzhhI/_old 2026-03-09 16:24:13.272843602 +0100 +++ /var/tmp/diff_new_pack.qJzhhI/_new 2026-03-09 16:24:13.276843766 +0100 @@ -1,5 +1,5 @@ name: k8tz -version: 0.18.0 -mtime: 1742845288 -commit: 2026b4e946a6e34643892a403986b9a58c393405 +version: 0.19.0 +mtime: 1772885029 +commit: 0f2d24b93821fd296ca5dc7162eb5ebd4e459dfb ++++++ vendor.tar.gz ++++++
