Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package rubygem-net-ldap for
openSUSE:Factory checked in at 2022-08-09 15:26:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-net-ldap (Old)
and /work/SRC/openSUSE:Factory/.rubygem-net-ldap.new.1521 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-net-ldap"
Tue Aug 9 15:26:44 2022 rev:6 rq:993501 version:0.17.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-net-ldap/rubygem-net-ldap.changes
2021-01-01 21:13:36.327379638 +0100
+++
/work/SRC/openSUSE:Factory/.rubygem-net-ldap.new.1521/rubygem-net-ldap.changes
2022-08-09 15:26:59.309391367 +0200
@@ -1,0 +2,17 @@
+Thu Aug 4 13:20:10 UTC 2022 - Stephan Kulow <[email protected]>
+
+updated to version 0.17.1
+ see installed History.rdoc
+
+ === Net::LDAP 0.17.1
+ * Fixed shebang of bash #385
+ * Omit some tests for now until we update our CA cert #386
+ * Add Ruby 3.0 support #388
+ * Add TruffleRuby 21.0.0 to CI #389
+ * Correct a typo in an error message #391
+ * Enable bundler caching for travis #390
+ * Fix circular require while loading lib/net/ldap/entry.rb and
lib/net/ldap/dataset.rb #392
+ * Handle nil value in GetbyteForSSLSocket::getbyte #306
+
+
+-------------------------------------------------------------------
Old:
----
net-ldap-0.17.0.gem
New:
----
net-ldap-0.17.1.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-net-ldap.spec ++++++
--- /var/tmp/diff_new_pack.Hw5lA5/_old 2022-08-09 15:26:59.777392704 +0200
+++ /var/tmp/diff_new_pack.Hw5lA5/_new 2022-08-09 15:26:59.781392715 +0200
@@ -1,7 +1,7 @@
#
# spec file for package rubygem-net-ldap
#
-# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,7 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
@@ -24,16 +24,16 @@
#
Name: rubygem-net-ldap
-Version: 0.17.0
+Version: 0.17.1
Release: 0
%define mod_name net-ldap
%define mod_full_name %{mod_name}-%{version}
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-BuildRequires: ruby-macros >= 5
BuildRequires: %{ruby >= 2.0.0}
BuildRequires: %{rubygem gem2rpm}
BuildRequires: %{rubygem rdoc > 3.10}
-Url: http://github.com/ruby-ldap/ruby-net-ldap
+BuildRequires: ruby-macros >= 5
+URL: http://github.com/ruby-ldap/ruby-net-ldap
Source: https://rubygems.org/gems/%{mod_full_name}.gem
Source1: gem2rpm.yml
Summary: Net::LDAP for Ruby (also called net-ldap) implements client
access
++++++ net-ldap-0.17.0.gem -> net-ldap-0.17.1.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/History.rdoc new/History.rdoc
--- old/History.rdoc 2020-11-30 04:35:05.000000000 +0100
+++ new/History.rdoc 2022-06-07 02:36:36.000000000 +0200
@@ -1,3 +1,13 @@
+=== Net::LDAP 0.17.1
+* Fixed shebang of bash #385
+* Omit some tests for now until we update our CA cert #386
+* Add Ruby 3.0 support #388
+* Add TruffleRuby 21.0.0 to CI #389
+* Correct a typo in an error message #391
+* Enable bundler caching for travis #390
+* Fix circular require while loading lib/net/ldap/entry.rb and
lib/net/ldap/dataset.rb #392
+* Handle nil value in GetbyteForSSLSocket::getbyte #306
+
=== Net::LDAP 0.17.0
* Added private recursive_delete as alternative to DELETE_TREE #268
* Test suite updates #373 #376 #377
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/README.rdoc new/README.rdoc
--- old/README.rdoc 2020-11-30 04:35:05.000000000 +0100
+++ new/README.rdoc 2022-06-07 02:36:36.000000000 +0200
@@ -23,7 +23,7 @@
== Synopsis
-See {Net::LDAP on
rubydoc.info}[https://www.rubydoc.info/gems/net-ldap/Net/LDAP] for
documentation and usage samples.
+See {Net::LDAP on
rubydoc.info}[https://www.rubydoc.info/github/ruby-ldap/ruby-net-ldap] for
documentation and usage samples.
== Requirements
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/net/ldap/connection.rb
new/lib/net/ldap/connection.rb
--- old/lib/net/ldap/connection.rb 2020-11-30 04:35:05.000000000 +0100
+++ new/lib/net/ldap/connection.rb 2022-06-07 02:36:36.000000000 +0200
@@ -74,7 +74,8 @@
module GetbyteForSSLSocket
def getbyte
- getc.ord
+ c = getc
+ c && c.ord
end
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/net/ldap/dataset.rb new/lib/net/ldap/dataset.rb
--- old/lib/net/ldap/dataset.rb 2020-11-30 04:35:05.000000000 +0100
+++ new/lib/net/ldap/dataset.rb 2022-06-07 02:36:36.000000000 +0200
@@ -1,5 +1,3 @@
-require_relative 'entry'
-
# -*- ruby encoding: utf-8 -*-
##
# An LDAP Dataset. Used primarily as an intermediate format for converting
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/net/ldap/entry.rb new/lib/net/ldap/entry.rb
--- old/lib/net/ldap/entry.rb 2020-11-30 04:35:05.000000000 +0100
+++ new/lib/net/ldap/entry.rb 2022-06-07 02:36:36.000000000 +0200
@@ -1,5 +1,3 @@
-require_relative 'dataset'
-
# -*- ruby encoding: utf-8 -*-
##
# Objects of this class represent individual entries in an LDAP directory.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/net/ldap/version.rb new/lib/net/ldap/version.rb
--- old/lib/net/ldap/version.rb 2020-11-30 04:35:05.000000000 +0100
+++ new/lib/net/ldap/version.rb 2022-06-07 02:36:36.000000000 +0200
@@ -1,5 +1,5 @@
module Net
class LDAP
- VERSION = "0.17.0"
+ VERSION = "0.17.1"
end
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/net/ldap.rb new/lib/net/ldap.rb
--- old/lib/net/ldap.rb 2020-11-30 04:35:05.000000000 +0100
+++ new/lib/net/ldap.rb 2022-06-07 02:36:36.000000000 +0200
@@ -412,7 +412,7 @@
ResultCodeStrongerAuthRequired => "Stronger Auth Needed",
ResultCodeReferral => "Referral",
ResultCodeAdminLimitExceeded => "Admin Limit Exceeded",
- ResultCodeUnavailableCriticalExtension => "Unavailable crtical extension",
+ ResultCodeUnavailableCriticalExtension => "Unavailable critical extension",
ResultCodeConfidentialityRequired => "Confidentiality Required",
ResultCodeSaslBindInProgress => "saslBindInProgress",
ResultCodeNoSuchAttribute => "No Such Attribute",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2020-11-30 04:35:05.000000000 +0100
+++ new/metadata 2022-06-07 02:36:36.000000000 +0200
@@ -1,7 +1,7 @@
--- !ruby/object:Gem::Specification
name: net-ldap
version: !ruby/object:Gem::Version
- version: 0.17.0
+ version: 0.17.1
platform: ruby
authors:
- Francis Cianfrocca
@@ -13,7 +13,7 @@
autorequire:
bindir: bin
cert_chain: []
-date: 2020-11-30 00:00:00.000000000 Z
+date: 2022-06-07 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: flexmock
@@ -163,7 +163,7 @@
- !ruby/object:Gem::Version
version: '0'
requirements: []
-rubygems_version: 3.1.4
+rubygems_version: 3.3.7
signing_key:
specification_version: 4
summary: Net::LDAP for Ruby (also called net-ldap) implements client access
for the