Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package yast2-storage-ng for
openSUSE:Factory checked in at 2022-01-07 12:45:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-storage-ng (Old)
and /work/SRC/openSUSE:Factory/.yast2-storage-ng.new.1896 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-storage-ng"
Fri Jan 7 12:45:22 2022 rev:116 rq:944215 version:4.4.31
Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-storage-ng/yast2-storage-ng.changes
2022-01-05 13:39:34.797517433 +0100
+++
/work/SRC/openSUSE:Factory/.yast2-storage-ng.new.1896/yast2-storage-ng.changes
2022-01-07 12:46:09.323836048 +0100
@@ -1,0 +2,6 @@
+Wed Jan 5 21:38:56 UTC 2022 - Josef Reidinger <[email protected]>
+
+- Fix calling keywords for IssuesReporter in ruby3 (bsc#1194342)
+- 4.4.31
+
+-------------------------------------------------------------------
Old:
----
yast2-storage-ng-4.4.30.tar.bz2
New:
----
yast2-storage-ng-4.4.31.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-storage-ng.spec ++++++
--- /var/tmp/diff_new_pack.bRwM0G/_old 2022-01-07 12:46:09.779836364 +0100
+++ /var/tmp/diff_new_pack.bRwM0G/_new 2022-01-07 12:46:09.783836367 +0100
@@ -17,7 +17,7 @@
Name: yast2-storage-ng
-Version: 4.4.30
+Version: 4.4.31
Release: 0
Summary: YaST2 - Storage Configuration
License: GPL-2.0-only OR GPL-3.0-only
++++++ yast2-storage-ng-4.4.30.tar.bz2 -> yast2-storage-ng-4.4.31.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-storage-ng-4.4.30/package/yast2-storage-ng.changes
new/yast2-storage-ng-4.4.31/package/yast2-storage-ng.changes
--- old/yast2-storage-ng-4.4.30/package/yast2-storage-ng.changes
2022-01-03 11:33:41.000000000 +0100
+++ new/yast2-storage-ng-4.4.31/package/yast2-storage-ng.changes
2022-01-06 12:05:47.000000000 +0100
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Wed Jan 5 21:38:56 UTC 2022 - Josef Reidinger <[email protected]>
+
+- Fix calling keywords for IssuesReporter in ruby3 (bsc#1194342)
+- 4.4.31
+
+-------------------------------------------------------------------
Mon Jan 3 09:22:05 UTC 2022 - Ladislav Slez??k <[email protected]>
- Display LUKS2 configuration checkbox in the installer console
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-storage-ng-4.4.30/package/yast2-storage-ng.spec
new/yast2-storage-ng-4.4.31/package/yast2-storage-ng.spec
--- old/yast2-storage-ng-4.4.30/package/yast2-storage-ng.spec 2022-01-03
11:33:41.000000000 +0100
+++ new/yast2-storage-ng-4.4.31/package/yast2-storage-ng.spec 2022-01-06
12:05:47.000000000 +0100
@@ -16,7 +16,7 @@
#
Name: yast2-storage-ng
-Version: 4.4.30
+Version: 4.4.31
Release: 0
Summary: YaST2 - Storage Configuration
License: GPL-2.0-only OR GPL-3.0-only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-storage-ng-4.4.30/src/lib/y2storage/issues_reporter.rb
new/yast2-storage-ng-4.4.31/src/lib/y2storage/issues_reporter.rb
--- old/yast2-storage-ng-4.4.30/src/lib/y2storage/issues_reporter.rb
2022-01-03 11:33:41.000000000 +0100
+++ new/yast2-storage-ng-4.4.31/src/lib/y2storage/issues_reporter.rb
2022-01-06 12:05:47.000000000 +0100
@@ -113,7 +113,7 @@
def issue_popup(footer, options)
presenter = IssuePresenter.new(issues.first, footer: footer)
- Yast2::Popup.show(presenter.message, options.merge(details:
presenter.details))
+ Yast2::Popup.show(presenter.message, **options.merge(details:
presenter.details))
end
# Popup used when there are several issues
@@ -128,7 +128,7 @@
def issues_popup(footer, options)
presenter = IssuesPresenter.new(issues, intro: message, footer: footer)
- Dialogs::Issues.show(presenter.message, options.merge(issues: issues))
+ Dialogs::Issues.show(presenter.message, **options.merge(issues: issues))
end
# Label for the abort button
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-storage-ng-4.4.30/test/y2storage/issues_reporter_test.rb
new/yast2-storage-ng-4.4.31/test/y2storage/issues_reporter_test.rb
--- old/yast2-storage-ng-4.4.30/test/y2storage/issues_reporter_test.rb
2022-01-03 11:33:41.000000000 +0100
+++ new/yast2-storage-ng-4.4.31/test/y2storage/issues_reporter_test.rb
2022-01-06 12:05:47.000000000 +0100
@@ -100,7 +100,7 @@
let(:description) { nil }
it "shows the message for a single issue" do
- expect(Yast2::Popup).to receive(:show) do |message, _|
+ expect(Yast2::Popup).to receive(:show) do |message, **_args|
expect(message).to match(/Issue 1/)
expect(message).to match(/despite the issue\?/)
end
@@ -118,8 +118,8 @@
end
it "includes the details of the issue" do
- expect(Yast2::Popup).to receive(:show) do |_, options|
- expect(options[:details]).to match(/Issue 1 details/)
+ expect(Yast2::Popup).to receive(:show) do |_, details:, **_options|
+ expect(details).to match(/Issue 1 details/)
end
subject.report
@@ -141,8 +141,8 @@
end
it "wraps the details" do
- expect(Yast2::Popup).to receive(:show) do |_, options|
- max_line = options[:details].lines.max_by(&:size)
+ expect(Yast2::Popup).to receive(:show) do |_, details:, **_options|
+ max_line = details.lines.max_by(&:size)
expect(max_line.size < max_length).to eq(true), "Line
'#{max_line}' is too long"
end
@@ -155,7 +155,7 @@
let(:details) { nil }
it "does not show a hint about clicking on details" do
- expect(Yast2::Popup).to receive(:show) do |message, _|
+ expect(Yast2::Popup).to receive(:show) do |message, **_options|
expect(message).to_not include("Click below")
end
@@ -163,8 +163,8 @@
end
it "does not include details" do
- expect(Yast2::Popup).to receive(:show) do |_, options|
- expect(options[:details]).to be_empty
+ expect(Yast2::Popup).to receive(:show) do |_, details:, **_options|
+ expect(details).to be_empty
end
subject.report