File rubygem-ffi-rzmq.changes of Package rubygem-ffi-rzmq

-------------------------------------------------------------------
Mon Jan 14 13:37:49 UTC 2019 - Stephan Kulow <coolo@suse.com>

- updated to version 2.0.7
 see installed History.txt

  == 2.0.7
    * Fix Issue #130
      Fix to better support Zeromq 3.x users when performing context termination.
      Support library ffi-rzmq-core was updated to handle this support, so
      we now have a minimum dependency of ffi-rzmq-core 1.0.7 on this gem.
  
    * Fix Issue #131
      Update the OpenSSL key and certificate files. Original files were 1024 bits
      but this causes problems on some modern Linux (e.g. Debian) which complains
      about the key length. Updated to 4096 bits. Copied the key and cert
      generation scripts from the Debian repository with attribution. Thanks to
      @boutil for the helper script and the bug report.

-------------------------------------------------------------------
Fri Feb 23 05:29:39 UTC 2018 - factory-auto@kulow.org

- updated to version 2.0.6
 see installed History.txt

  == 2.0.6
    * Fix for uncaught exception. Strange case... somehow calling
      `zmq_ctx_term` was returning nil, so when checking the result code it
      would fail. No overrides a nil value with 0 so check passes.
  
    * Update some JRuby-specific code to fetch a file descriptor value. API
      changed from earlier versions, so code is updated to use new API. All
      specs pass.

-------------------------------------------------------------------
Sat Mar 25 05:29:53 UTC 2017 - coolo@suse.com

- updated to version 2.0.5
 see installed History.txt

  == 2.0.5
    * Fix issue #123. Bundled gems were a bit outdated so upgraded to latest
      rspec gem.
  
    * Fix issue #124. Newer releases of libzmq are not exporting all symbols
      to the global namespace so some lazy loading performed by FFI was
  	failing. Now force all symbols into global namespace.
  
    * Fix "::Fixnum has been deprecated" warnings from MRI 2.4.x+.
  
    * Force ffi-rzmq-core 1.0.6 or later as dependency.

-------------------------------------------------------------------
Sun Feb  8 21:24:21 UTC 2015 - coolo@suse.com

- updated to version 2.0.4
   * Screwed up the release managment. Had wrong version in version.rb. Fixed.
   
 == 2.0.3
   * Updated specs to use RSpec 3.x syntax. Never again... if they change it
     then I'm dumping rspec.
     
   * Now loading version.rb during startup so that ZMQ::VERSION returns a string.
   
   * Modified README to point most people to the Ruby gem that wraps the CZMQ
     library. It's a much higher-level library that makes writing zeromq apps
     very easy. This gem is for writing low-level code which most people don't
     want or need to do. This gem is going into maintenance mode only.
   
 
 == 2.0.2 
 
   * Updated README to make it clearer which versions of libzmq are supported.
   
   * Updated README to use a newer example.

-------------------------------------------------------------------
Mon Oct 13 12:07:48 UTC 2014 - coolo@suse.com

- adapt to new rubygem packaging

-------------------------------------------------------------------
Thu Feb  6 18:00:13 UTC 2014 - coolo@suse.com

- updated to version 2.0.1
   * Fix setsockopt with string parameters for options that have very strict
     requirements (like CURVE_SECRETKEY) (37aed3c)
 
   * Provide a wrapper for zmq_curve_keypair for ZeroMQ4

-------------------------------------------------------------------
Mon Jan 20 09:29:43 UTC 2014 - coolo@suse.com

- updated to version 2.0.0
    * Split out all of the FFI code to its own gem so other projects can use
            it without the effort of duplication.
            
    *       Support libzmq 4 API and its new security API . Thanks to Devin 
      Christensen (devin-c) and Jason Roelofs (jasonroelofs) for related
      patches.
    
    * Minor documentation fixes. Thanks to Michael Zaccari (mzaccari) for
      the fix.
    
    * Improved the readability of any FFI code (now moved to ffi-rzmq-core
      project). Thanks to Stephen von Takach (stakach) for the patch.
    
    * Updated AUTHORS.txt

-------------------------------------------------------------------
Fri Oct  4 07:17:59 UTC 2013 - coolo@suse.com

- updated to version 1.0.3
     * Fixes for issues #96 and #97. Thanks to Paul Chechetin (paulche) for 
       the issues and patches.

     * Fix for issue #94. Now includes local_path when searching for a libzmq
       to load.
     
     * Fix for issue #92. Context and Socket finalizers now track the process'
       PID to handle a special case when forking a process. Thanks to
       thinkerbot for the issue and a fix. (Spec is disabled on JRuby since
       it does not support fork().)
             
     * Fix a few RSpec deprecation warnings related to expectations on specific
       Exception types.

-------------------------------------------------------------------
Mon May 27 09:44:42 UTC 2013 - coolo@suse.com

- updated to version 1.0.1
        * Fix for issue #77 was not included in 1.0.0 release by mistake.
        
        * Add MIR 2.0.0 to travis runs.
        
        * Add support for LAST_ENDPOINT and MULTICAST_HOPS to Socket#getsockopt.
 
        *       Fix for issue #74 (send_multiple improperly handled single part messages).
        
        * Fix for issue #77 (unbind and disconnect).
        
        *       Fix for issue #75 (socket monitor events).
        
        *       The API is stable. Releasing 1.0.
 
   * BROKE THE API.
     ZMQ::Poller#register and ZMQ::Poller#deregister don't take fd argument
     anymore. ZMQ::Poller#readables and ZMQ::Poller#writables return pollables
     instead of just fd when pollable is other than ZMQ socket.
     ZMQ::Poller#register now returns nil instead of false when no pollable
     or events to register to are given, which is consistent with rest of api.
                Thanks to Pawel Pacana for this code contribution.
 
   * Added support in ZMQ::Poller for pollables responding to fileno and socket.
     Standard Ruby Sockets and IOs can be now registered in poller to listen for
     events. Thanks to Pawel Pacana for this code contribution.
 
   * Fixed a bug in ZMQ::Poller#deregister where it would raise exception
     when trying to deregister already closed ZMQ socket. Issue 59.
 
   * Improved specs to use random inproc socket address to avoid race conditions 
     between tests under same context.
 
   * Added continous integration for all supported platforms on Travis-CI.
                Thanks to Pawel Pacana for this code contribution.
 
        *       Signed up for codeclimate.com and made some code changes to get a better
                "grade" from it.
                
        *       Modified the library to *always* load the 'ffi' library upon startup. It 
                used to be conditional for Rubinius. Thanks to brixen for the change.
                
        *       There was a little bit of churn on the zmq "monitor" api. Thanks to
                Nilson Santos F. Jr. for some code to conditionally attach to the
                appropriate api depending on library version.

-------------------------------------------------------------------
Thu Aug  9 07:54:24 UTC 2012 - coolo@suse.com

- updated to version 0.9.6

-------------------------------------------------------------------
Wed Aug  1 05:04:06 UTC 2012 - coolo@suse.com

- updated to version 0.9.3

-------------------------------------------------------------------
Wed Dec  1 15:31:30 UTC 2010 - mrueckert@suse.de

- initial package of version 0.6.0

openSUSE Build Service is sponsored by