Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package okteto for openSUSE:Factory checked in at 2025-08-22 17:49:34 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/okteto (Old) and /work/SRC/openSUSE:Factory/.okteto.new.29662 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "okteto" Fri Aug 22 17:49:34 2025 rev:103 rq:1300967 version:3.10.1 Changes: -------- --- /work/SRC/openSUSE:Factory/okteto/okteto.changes 2025-08-06 15:09:30.315013687 +0200 +++ /work/SRC/openSUSE:Factory/.okteto.new.29662/okteto.changes 2025-08-22 17:51:16.872642457 +0200 @@ -1,0 +2,7 @@ +Fri Aug 22 11:25:16 UTC 2025 - Johannes Kastl <opensuse_buildserv...@ojkastl.de> + +- Update to version 3.10.1: + * DEV-1107: Initialize the divert deployer in the command struct + for up and test commands (#4756) (#4757) + +------------------------------------------------------------------- Old: ---- okteto-3.10.0.obscpio New: ---- okteto-3.10.1.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ okteto.spec ++++++ --- /var/tmp/diff_new_pack.uPTQpC/_old 2025-08-22 17:51:18.632715802 +0200 +++ /var/tmp/diff_new_pack.uPTQpC/_new 2025-08-22 17:51:18.632715802 +0200 @@ -17,7 +17,7 @@ Name: okteto -Version: 3.10.0 +Version: 3.10.1 Release: 0 Summary: Develop your applications directly in your Kubernetes Cluster License: Apache-2.0 ++++++ _service ++++++ --- /var/tmp/diff_new_pack.uPTQpC/_old 2025-08-22 17:51:18.684717969 +0200 +++ /var/tmp/diff_new_pack.uPTQpC/_new 2025-08-22 17:51:18.688718136 +0200 @@ -3,8 +3,8 @@ <param name="url">https://github.com/okteto/okteto</param> <param name="scm">git</param> <param name="exclude">.git</param> - <param name="revision">3.10.0</param> - <param name="match-tag">3.10.0</param> + <param name="revision">3.10.1</param> + <param name="match-tag">3.10.1</param> <param name="versionformat">@PARENT_TAG@</param> <param name="changesgenerate">enable</param> </service> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.uPTQpC/_old 2025-08-22 17:51:18.712719136 +0200 +++ /var/tmp/diff_new_pack.uPTQpC/_new 2025-08-22 17:51:18.712719136 +0200 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/okteto/okteto</param> - <param name="changesrevision">5c3b914ad9d299a7ab9722c8d9439ac398014772</param></service></servicedata> + <param name="changesrevision">edb52d9ea590dd2d52ab4b0f73e77c96235cddd8</param></service></servicedata> (No newline at EOF) ++++++ okteto-3.10.0.obscpio -> okteto-3.10.1.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteto-3.10.0/cmd/test/cmd.go new/okteto-3.10.1/cmd/test/cmd.go --- old/okteto-3.10.0/cmd/test/cmd.go 2025-08-01 18:16:40.000000000 +0200 +++ new/okteto-3.10.1/cmd/test/cmd.go 2025-08-22 11:22:20.000000000 +0200 @@ -36,6 +36,7 @@ "github.com/okteto/okteto/pkg/dag" "github.com/okteto/okteto/pkg/deployable" "github.com/okteto/okteto/pkg/devenvironment" + "github.com/okteto/okteto/pkg/divert" "github.com/okteto/okteto/pkg/env" oktetoErrors "github.com/okteto/okteto/pkg/errors" "github.com/okteto/okteto/pkg/filesystem" @@ -51,6 +52,7 @@ "github.com/okteto/okteto/pkg/validator" "github.com/spf13/afero" "github.com/spf13/cobra" + "k8s.io/client-go/kubernetes" ) type Options struct { @@ -273,6 +275,9 @@ K8sLogger: k8sLogger, IsRemote: env.LoadBoolean(constants.OktetoDeployRemote), RunningInInstaller: config.RunningInInstaller(), + DivertDeployerGetter: func(d *model.DivertDeploy, name, namespace string, c kubernetes.Interface) (deployCMD.DivertDeployer, error) { + return divert.New(d, name, namespace, c) + }, } // runInRemote is not set at init, its left default to false and calculated by deployCMD.ShouldRunInRemote opts := &deployCMD.Options{ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteto-3.10.0/cmd/up/deploy.go new/okteto-3.10.1/cmd/up/deploy.go --- old/okteto-3.10.0/cmd/up/deploy.go 2025-08-01 18:16:40.000000000 +0200 +++ new/okteto-3.10.1/cmd/up/deploy.go 2025-08-22 11:22:20.000000000 +0200 @@ -23,6 +23,7 @@ pipelineCMD "github.com/okteto/okteto/cmd/pipeline" "github.com/okteto/okteto/pkg/analytics" "github.com/okteto/okteto/pkg/cmd/pipeline" + "github.com/okteto/okteto/pkg/divert" "github.com/okteto/okteto/pkg/env" oktetoErrors "github.com/okteto/okteto/pkg/errors" oktetoLog "github.com/okteto/okteto/pkg/log" @@ -87,6 +88,9 @@ EndpointGetter: deploy.NewEndpointGetter, AnalyticsTracker: up.analyticsTracker, IoCtrl: ioCtrl, + DivertDeployerGetter: func(d *model.DivertDeploy, name, namespace string, c kubernetes.Interface) (deploy.DivertDeployer, error) { + return divert.New(d, name, namespace, c) + }, } return c, nil }, ++++++ okteto.obsinfo ++++++ --- /var/tmp/diff_new_pack.uPTQpC/_old 2025-08-22 17:51:19.780763644 +0200 +++ /var/tmp/diff_new_pack.uPTQpC/_new 2025-08-22 17:51:19.784763810 +0200 @@ -1,5 +1,5 @@ name: okteto -version: 3.10.0 -mtime: 1754065000 -commit: 5c3b914ad9d299a7ab9722c8d9439ac398014772 +version: 3.10.1 +mtime: 1755854540 +commit: edb52d9ea590dd2d52ab4b0f73e77c96235cddd8 ++++++ vendor.tar.gz ++++++ /work/SRC/openSUSE:Factory/okteto/vendor.tar.gz /work/SRC/openSUSE:Factory/.okteto.new.29662/vendor.tar.gz differ: char 131, line 1