Hello community,
here is the log from the commit of package yast2-ruby-bindings for
openSUSE:Factory checked in at 2017-09-27 16:53:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-ruby-bindings (Old)
and /work/SRC/openSUSE:Factory/.yast2-ruby-bindings.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-ruby-bindings"
Wed Sep 27 16:53:24 2017 rev:84 rq:528822 version:4.0.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-ruby-bindings/yast2-ruby-bindings.changes
2017-07-17 10:31:11.543387809 +0200
+++
/work/SRC/openSUSE:Factory/.yast2-ruby-bindings.new/yast2-ruby-bindings.changes
2017-09-27 16:53:25.679317000 +0200
@@ -1,0 +2,7 @@
+Tue Sep 26 13:20:14 UTC 2017 - [email protected]
+
+- Nicer backtrace output in log for internal errors (help for
+ debuggging bugs like bsc#1044312)
+- 4.0.0
+
+-------------------------------------------------------------------
Old:
----
yast2-ruby-bindings-3.3.1.tar.bz2
New:
----
yast2-ruby-bindings-4.0.0.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-ruby-bindings.spec ++++++
--- /var/tmp/diff_new_pack.scZbwH/_old 2017-09-27 16:53:26.255235979 +0200
+++ /var/tmp/diff_new_pack.scZbwH/_new 2017-09-27 16:53:26.259235417 +0200
@@ -17,7 +17,7 @@
Name: yast2-ruby-bindings
-Version: 3.3.1
+Version: 4.0.0
Release: 0
Url: https://github.com/yast/yast-ruby-bindings
BuildRoot: %{_tmppath}/%{name}-%{version}-build
++++++ yast2-ruby-bindings-3.3.1.tar.bz2 -> yast2-ruby-bindings-4.0.0.tar.bz2
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-ruby-bindings-3.3.1/package/yast2-ruby-bindings.changes
new/yast2-ruby-bindings-4.0.0/package/yast2-ruby-bindings.changes
--- old/yast2-ruby-bindings-3.3.1/package/yast2-ruby-bindings.changes
2017-07-12 12:37:50.551622597 +0200
+++ new/yast2-ruby-bindings-4.0.0/package/yast2-ruby-bindings.changes
2017-09-26 15:29:18.622663821 +0200
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Tue Sep 26 13:20:14 UTC 2017 - [email protected]
+
+- Nicer backtrace output in log for internal errors (help for
+ debuggging bugs like bsc#1044312)
+- 4.0.0
+
+-------------------------------------------------------------------
Wed Jul 12 09:33:56 UTC 2017 - [email protected]
- Always use ::Integer to avoid collision with Yast::Integer
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-ruby-bindings-3.3.1/package/yast2-ruby-bindings.spec
new/yast2-ruby-bindings-4.0.0/package/yast2-ruby-bindings.spec
--- old/yast2-ruby-bindings-3.3.1/package/yast2-ruby-bindings.spec
2017-07-12 12:37:50.551622597 +0200
+++ new/yast2-ruby-bindings-4.0.0/package/yast2-ruby-bindings.spec
2017-09-26 15:29:18.622663821 +0200
@@ -17,7 +17,7 @@
Name: yast2-ruby-bindings
-Version: 3.3.1
+Version: 4.0.0
Url: https://github.com/yast/yast-ruby-bindings
Release: 0
BuildRoot: %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-ruby-bindings-3.3.1/src/ruby/yast/wfm.rb
new/yast2-ruby-bindings-4.0.0/src/ruby/yast/wfm.rb
--- old/yast2-ruby-bindings-3.3.1/src/ruby/yast/wfm.rb 2017-07-12
12:37:50.559622597 +0200
+++ new/yast2-ruby-bindings-4.0.0/src/ruby/yast/wfm.rb 2017-09-26
15:29:18.734663821 +0200
@@ -243,17 +243,17 @@
Yast.import "Report"
Report.Error(msg)
rescue Exception => e
- Builtins.y2internal("Error reporting failed with '%1' and backtrace %2",
+ Builtins.y2internal("Error reporting failed with '%1'.\n Backtrace:\n%2",
e.message,
- e.backtrace)
+ e.backtrace.join("\n"))
end
# Handles a generic Exception
private_class_method def self.handle_exception(e, client)
- Builtins.y2error("Client call failed with '%1' (%2) and backtrace %3",
+ Builtins.y2error("Client call failed with '%1' (%2).\nBacktrace:\n%3",
e.message,
e.class,
- e.backtrace)
+ e.backtrace.join("\n"))
msg = internal_error_msg(e)
@@ -275,9 +275,9 @@
Report.Error(msg)
end
rescue Exception => e
- Builtins.y2internal("Error reporting failed with '%1' and backtrace %2",
+ Builtins.y2internal("Error reporting failed with '%1'.Backtrace:\n%2",
e.message,
- e.backtrace)
+ e.backtrace.join("\n"))
end
private_class_method def self.check_client_result_type!(result)