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 2021-08-12 09:00:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-listen (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-listen.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-listen"

Thu Aug 12 09:00:49 2021 rev:15 rq:909132 version:3.6.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-listen/rubygem-listen.changes    
2021-04-29 22:44:30.256271479 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-listen.new.1899/rubygem-listen.changes  
2021-08-12 09:00:51.254228718 +0200
@@ -1,0 +2,7 @@
+Mon Jul 26 06:00:29 UTC 2021 - Stephan Kulow <[email protected]>
+
+updated to version 3.6.0
+ see installed CHANGELOG.md
+
+
+-------------------------------------------------------------------

Old:
----
  listen-3.5.1.gem

New:
----
  listen-3.6.0.gem

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

Other differences:
------------------
++++++ rubygem-listen.spec ++++++
--- /var/tmp/diff_new_pack.lbKIf8/_old  2021-08-12 09:00:51.890227704 +0200
+++ /var/tmp/diff_new_pack.lbKIf8/_new  2021-08-12 09:00:51.894227697 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-listen
-Version:        3.5.1
+Version:        3.6.0
 Release:        0
 %define mod_name listen
 %define mod_full_name %{mod_name}-%{version}

++++++ listen-3.5.1.gem -> listen-3.6.0.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md       2021-03-30 22:19:15.000000000 +0200
+++ new/README.md       2021-07-21 01:57:48.000000000 +0200
@@ -25,10 +25,8 @@
 * Support for plugins planned for future.
 * TCP functionality was removed in `listen` 
[3.0.0](https://github.com/guard/listen/releases/tag/v3.0.0) 
([#319](https://github.com/guard/listen/issues/319), 
[#218](https://github.com/guard/listen/issues/218)). There are plans to extract 
this feature to separate gems 
([#258](https://github.com/guard/listen/issues/258)), until this is finished, 
you can use by locking the `listen` gem to version `'~> 2.10'`.
 * Some filesystems won't work without polling (VM/Vagrant Shared folders, NFS, 
Samba, sshfs, etc.).
-* Specs suite on JRuby and Rubinius aren't reliable on Travis CI, but should 
work.
 * Windows and \*BSD adapter aren't continuously and automatically tested.
 * OSX adapter has some performance limitations 
([#342](https://github.com/guard/listen/issues/342)).
-* FreeBSD users need patched version of rb-kqueue (as of 2020/11). See #475 
for the issue, mat813/rb-kqueue#12 for the patch, and Bug 250432 in bugzilla.
 * Listeners do not notify across forked processes, if you wish for multiple 
processes to receive change notifications you must [listen inside of each 
process](https://github.com/guard/listen/issues/398#issuecomment-223957952).
 
 Pull requests or help is very welcome for these.
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/file.rb new/lib/listen/file.rb
--- old/lib/listen/file.rb      2021-03-30 22:19:15.000000000 +0200
+++ new/lib/listen/file.rb      2021-07-21 01:57:48.000000000 +0200
@@ -1,6 +1,6 @@
 # frozen_string_literal: true
 
-require 'digest/md5'
+require 'digest'
 
 module Listen
   class File
@@ -53,7 +53,7 @@
       # then at ???14.998, but the fstat time would be ???14.0 in
       # both cases).
       #
-      # If change happend at ???14.999997, the mtime is 14.0, so for
+      # If change happened at ???14.999997, the mtime is 14.0, so for
       # an mtime=???14.0 we assume it could even be almost ???15.0
       #
       # So if Time.now.to_f is ???15.999998 and stat reports mtime
@@ -67,9 +67,11 @@
       #
       return if data[:mtime].to_i + 2 <= Time.now.to_f
 
-      md5 = Digest::MD5.file(path).digest
-      record.update_file(rel_path, data.merge(md5: md5))
-      :modified if record_data[:md5] && md5 != record_data[:md5]
+      sha = Digest::SHA256.file(path).digest
+      record.update_file(rel_path, data.merge(sha: sha))
+      if record_data[:sha] && sha != record_data[:sha]
+        :modified
+      end
     rescue SystemCallError
       record.unset_path(rel_path)
       :removed
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   2021-03-30 22:19:15.000000000 +0200
+++ new/lib/listen/version.rb   2021-07-21 01:57:48.000000000 +0200
@@ -1,5 +1,5 @@
 # frozen_string_literal: true
 
 module Listen
-  VERSION = '3.5.1'
+  VERSION = '3.6.0'
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2021-03-30 22:19:15.000000000 +0200
+++ new/metadata        2021-07-21 01:57:48.000000000 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: listen
 version: !ruby/object:Gem::Version
-  version: 3.5.1
+  version: 3.6.0
 platform: ruby
 authors:
 - Thibaud Guillaume-Gentil
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2021-03-30 00:00:00.000000000 Z
+date: 2021-07-20 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.5.1
+  documentation_uri: https://www.rubydoc.info/gems/listen/3.6.0
   homepage_uri: https://github.com/guard/listen
-  source_code_uri: https://github.com/guard/listen/tree/v3.5.1
+  source_code_uri: https://github.com/guard/listen/tree/v3.6.0
 post_install_message: 
 rdoc_options: []
 require_paths:

Reply via email to