Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package putty for openSUSE:Factory checked 
in at 2025-07-20 15:29:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/putty (Old)
 and      /work/SRC/openSUSE:Factory/.putty.new.8875 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "putty"

Sun Jul 20 15:29:01 2025 rev:34 rq:1294416 version:0.83

Changes:
--------
--- /work/SRC/openSUSE:Factory/putty/putty.changes      2024-12-30 
14:58:28.432839547 +0100
+++ /work/SRC/openSUSE:Factory/.putty.new.8875/putty.changes    2025-07-20 
15:30:08.462723671 +0200
@@ -1,0 +2,16 @@
+Fri Jul 18 15:48:36 UTC 2025 - Jan Engelhardt <jeng...@inai.de>
+
+- Update to release 0.83
+  * Support for ML-KEM, a NIST-standardised post-quantum key
+    exchange mechanism.
+  * Bug fix: psftp -b works again.
+  * Fixed bug which crashed Pageant if an SSH connection is
+    abandoned while waiting for a deferred decryption passphrase.
+  * Fix a tight loop bug occurring if PuTTY tried to send an
+    empty answerback string.
+  * Fixed a bug where some configuration edit boxes' contents
+    were accidentally truncated to 127 characters.
+  * Bug fix: the small keypad keys did not reliably work in the
+    terminal on Unix.
+
+-------------------------------------------------------------------

Old:
----
  putty-0.82.tar.gz
  putty-0.82.tar.gz.gpg

New:
----
  putty-0.83.tar.gz
  putty-0.83.tar.gz.gpg

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

Other differences:
------------------
++++++ putty.spec ++++++
--- /var/tmp/diff_new_pack.N6kZ8o/_old  2025-07-20 15:30:09.294758102 +0200
+++ /var/tmp/diff_new_pack.N6kZ8o/_new  2025-07-20 15:30:09.298758267 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package putty
 #
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2025 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           putty
-Version:        0.82
+Version:        0.83
 Release:        0
 Summary:        SSH client with optional GTK-based terminal emulator frontend
 License:        MIT

++++++ _scmsync.obsinfo ++++++
--- /var/tmp/diff_new_pack.N6kZ8o/_old  2025-07-20 15:30:09.330759591 +0200
+++ /var/tmp/diff_new_pack.N6kZ8o/_new  2025-07-20 15:30:09.334759757 +0200
@@ -1,5 +1,5 @@
-mtime: 1733992936
-commit: b0b1f66358d0ac64a3eb71e1833373f7d5d64aee7880dfc9a24cfffbe3a38667
+mtime: 1752854477
+commit: a7ac64a30aebdafa256b937b8a03188a3246c2efd2df61f3927968a2b0f9d81d
 url: https://src.opensuse.org/jengelh/putty
 revision: master
 

++++++ build.specials.obscpio ++++++

++++++ putty-0.82.tar.gz -> putty-0.83.tar.gz ++++++
++++ 8102 lines of diff (skipped)

++++++ putty-03-config.diff ++++++
--- /var/tmp/diff_new_pack.N6kZ8o/_old  2025-07-20 15:30:09.750776972 +0200
+++ /var/tmp/diff_new_pack.N6kZ8o/_new  2025-07-20 15:30:09.754777138 +0200
@@ -7,14 +7,14 @@
 ---
  conf.h                   |   20 ++++++++++----------
  settings.c               |   29 +++++++++++++++++++++++------
- unix/platform.h          |    6 +-----
+ unix/platform.h          |    2 +-
  windows/utils/defaults.c |    2 +-
- 4 files changed, 35 insertions(+), 22 deletions(-)
+ 4 files changed, 35 insertions(+), 18 deletions(-)
 
-Index: putty-0.82/conf.h
+Index: putty-0.83/conf.h
 ===================================================================
---- putty-0.82.orig/conf.h
-+++ putty-0.82/conf.h
+--- putty-0.83.orig/conf.h
++++ putty-0.83/conf.h
 @@ -408,7 +408,7 @@ CONF_OPTION(ssh_nc_port, /* port to conn
  /* Telnet options */
  CONF_OPTION(termtype,
@@ -105,10 +105,10 @@
      SAVE_KEYWORD("LineCodePage"),
  )
  CONF_OPTION(cjk_ambig_wide,
-Index: putty-0.82/settings.c
+Index: putty-0.83/settings.c
 ===================================================================
---- putty-0.82.orig/settings.c
-+++ putty-0.82/settings.c
+--- putty-0.83.orig/settings.c
++++ putty-0.83/settings.c
 @@ -18,8 +18,8 @@ static const struct keyvalwhere cipherna
      { "aes",        CIPHER_AES,             -1, -1 },
      { "chacha20",   CIPHER_CHACHA20,        CIPHER_AES, +1 },
@@ -119,7 +119,7 @@
      { "des",        CIPHER_DES,             -1, -1 },
      { "blowfish",   CIPHER_BLOWFISH,        -1, -1 },
      { "arcfour",    CIPHER_ARCFOUR,         -1, -1 },
-@@ -982,11 +982,28 @@ void load_open_settings(settings_r *sess
+@@ -984,11 +984,28 @@ void load_open_settings(settings_r *sess
  
      for (i = 0; i < 22; i++) {
          static const char *const defaults[] = {
@@ -153,27 +153,23 @@
          };
          char buf[20], *buf2;
          int c0, c1, c2;
-Index: putty-0.82/unix/platform.h
+Index: putty-0.83/unix/platform.h
 ===================================================================
---- putty-0.82.orig/unix/platform.h
-+++ putty-0.82/unix/platform.h
-@@ -400,11 +400,7 @@ void fd_socket_set_psb_prefix(Socket *s,
- /*
-  * Default font setting, which can vary depending on NOT_X_WINDOWS.
+--- putty-0.83.orig/unix/platform.h
++++ putty-0.83/unix/platform.h
+@@ -408,7 +408,7 @@ void fd_socket_set_psb_prefix(Socket *s,
+  * handle server-side fonts, is legacy. So the default font is
+  * unconditionally the client-side one.
   */
--#ifdef NOT_X_WINDOWS
--#define DEFAULT_GTK_FONT "client:Monospace 12"
--#else
--#define DEFAULT_GTK_FONT "server:fixed"
--#endif
-+#define DEFAULT_GTK_FONT "client:Monospace 16"
+-#define DEFAULT_GTK_CLIENT_FONT "client:Monospace 12"
++#define DEFAULT_GTK_CLIENT_FONT "client:Monospace 16"
+ #define DEFAULT_GTK_SERVER_FONT "server:fixed"
+ #define DEFAULT_GTK_FONT DEFAULT_GTK_CLIENT_FONT
  
- /*
-  * pty.c.
-Index: putty-0.82/windows/utils/defaults.c
+Index: putty-0.83/windows/utils/defaults.c
 ===================================================================
---- putty-0.82.orig/windows/utils/defaults.c
-+++ putty-0.82/windows/utils/defaults.c
+--- putty-0.83.orig/windows/utils/defaults.c
++++ putty-0.83/windows/utils/defaults.c
 @@ -9,7 +9,7 @@
  FontSpec *platform_default_fontspec(const char *name)
  {

Reply via email to