Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package rubygem-listen for openSUSE:Factory 
checked in at 2023-11-05 12:18:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-listen (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-listen.new.17445 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-listen"

Sun Nov  5 12:18:47 2023 rev:18 rq:1123200 version:3.8.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-listen/rubygem-listen.changes    
2022-01-27 23:16:36.483126918 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-listen.new.17445/rubygem-listen.changes 
2023-11-05 12:19:00.733617598 +0100
@@ -1,0 +2,16 @@
+Fri Nov  3 07:41:11 UTC 2023 - Dan Čermák <dan.cer...@posteo.net>
+
+- 3.8.0:
+
+- Use the defined type to the default value of `directory` (#566) @y-yagi
+- update ruby version matrix to drop 2.4, 2.5 and add 3.2 (#567) @ColinDKelley
+- Update ruby version 3.0.4 (#562) @vickyprahastra
+- Raise argument error when passing a file path (#563) @janko
+- Fix kwargs matching with rspec-mock 3.12 and Ruby 3+ (#564) @voxik
+- Disable fail-fast for CI matrix (#555) @ybiquitous
+- Add Ruby 3.0/3.1 to CI (#554) @ybiquitous
+
+
+
+
+-------------------------------------------------------------------

Old:
----
  listen-3.7.1.gem

New:
----
  listen-3.8.0.gem

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

Other differences:
------------------
++++++ rubygem-listen.spec ++++++
--- /var/tmp/diff_new_pack.smC4oG/_old  2023-11-05 12:19:02.013664555 +0100
+++ /var/tmp/diff_new_pack.smC4oG/_new  2023-11-05 12:19:02.013664555 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-listen
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-listen
-Version:        3.7.1
+Version:        3.8.0
 Release:        0
 %define mod_name listen
 %define mod_full_name %{mod_name}-%{version}
@@ -34,17 +34,15 @@
 %define rb_build_ruby_abis    ruby:2.6.0   ruby:2.7.0
 %endif
 # /MANUAL
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  ruby-macros >= 5
 BuildRequires:  %{ruby >= 2.4.0}
 BuildRequires:  %{rubygem gem2rpm}
-BuildRequires:  ruby-macros >= 5
 BuildRequires:  update-alternatives
 URL:            https://github.com/guard/listen
 Source:         https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:        gem2rpm.yml
 Summary:        Listen to file modifications
 License:        MIT
-Group:          Development/Languages/Ruby
 PreReq:         update-alternatives
 
 %description

++++++ listen-3.7.1.gem -> listen-3.8.0.gem ++++++
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/listen/adapter/config.rb 
new/lib/listen/adapter/config.rb
--- old/lib/listen/adapter/config.rb    2022-01-13 22:30:22.000000000 +0100
+++ new/lib/listen/adapter/config.rb    2023-01-09 19:22:02.000000000 +0100
@@ -16,6 +16,12 @@
           Pathname.new(directory.to_s).realpath
         end
 
+        @directories.each do |pathname|
+          unless pathname.directory?
+            fail ArgumentError, "must be a directory: #{pathname}"
+          end
+        end
+
         @silencer = silencer
         @queue = queue
         @adapter_options = adapter_options
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/listen/cli.rb new/lib/listen/cli.rb
--- old/lib/listen/cli.rb       2022-01-13 22:30:22.000000000 +0100
+++ new/lib/listen/cli.rb       2023-01-09 19:22:02.000000000 +0100
@@ -18,9 +18,9 @@
 
     class_option :directory,
                  type:    :array,
-                 default: '.',
+                 default: ['.'],
                  aliases: '-d',
-                 banner:  'The directory to listen to'
+                 banner:  'One or more directories to listen to'
 
     class_option :relative,
                  type:    :boolean,
@@ -55,7 +55,7 @@
         end
       end
 
-      listener = Listen.to(directory, relative: relative, &callback)
+      listener = Listen.to(*directory, relative: relative, &callback)
 
       listener.start
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/listen/version.rb new/lib/listen/version.rb
--- old/lib/listen/version.rb   2022-01-13 22:30:22.000000000 +0100
+++ new/lib/listen/version.rb   2023-01-09 19:22:02.000000000 +0100
@@ -1,5 +1,5 @@
 # frozen_string_literal: true
 
 module Listen
-  VERSION = '3.7.1'
+  VERSION = '3.8.0'
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2022-01-13 22:30:22.000000000 +0100
+++ new/metadata        2023-01-09 19:22:02.000000000 +0100
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: listen
 version: !ruby/object:Gem::Version
-  version: 3.7.1
+  version: 3.8.0
 platform: ruby
 authors:
 - Thibaud Guillaume-Gentil
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2022-01-13 00:00:00.000000000 Z
+date: 2023-01-09 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: rb-fsevent
@@ -103,9 +103,9 @@
   allowed_push_host: https://rubygems.org
   bug_tracker_uri: https://github.com/guard/listen/issues
   changelog_uri: https://github.com/guard/listen/releases
-  documentation_uri: https://www.rubydoc.info/gems/listen/3.7.1
+  documentation_uri: https://www.rubydoc.info/gems/listen/3.8.0
   homepage_uri: https://github.com/guard/listen
-  source_code_uri: https://github.com/guard/listen/tree/v3.7.1
+  source_code_uri: https://github.com/guard/listen/tree/v3.8.0
 post_install_message: 
 rdoc_options: []
 require_paths:

Reply via email to