Accepting request 379098 from devel:languages:ruby:extensions
1 OBS-URL: https://build.opensuse.org/request/show/379098 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/rubygem-eventmachine?expand=0&rev=15
This commit is contained in:
commit
dd8def5c51
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:57ba18d8f76fb43f8842dd17cc3cebc46eea06a5d5033b3131ac8f73c7bc3bbb
|
||||
size 232960
|
3
eventmachine-1.2.0.1.gem
Normal file
3
eventmachine-1.2.0.1.gem
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a23d65be3492b5e8699699c549799e9d0fbffaac7bf9f5c0fd9afd23e287fbf1
|
||||
size 241152
|
@ -1,3 +1,73 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Mar 19 05:29:44 UTC 2016 - coolo@suse.com
|
||||
|
||||
- updated to version 1.2.0.1
|
||||
see installed CHANGELOG.md
|
||||
|
||||
## 1.2.0.1 (March 15, 2016)
|
||||
* Fix crash when accepting IPv6 connections due to struct sockaddr_in [#698, #699]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 05:30:07 UTC 2016 - coolo@suse.com
|
||||
|
||||
- updated to version 1.2.0
|
||||
see installed CHANGELOG.md
|
||||
|
||||
## 1.2.0 (March 15, 2016)
|
||||
* Integrate work from the EventMachine-LE 1.1.x versions [#570]
|
||||
* Add start_tls options :ecdh_curve, :dhparam, :fail_if_no_peer_cert [#195, #275, #399, #665]
|
||||
* Add start_tls option :ssl_version for choosing SSL/TLS versions and ciphers [#359, #348, #603, #654]
|
||||
* Add start_tls option :sni_hostname to be passed to TLS params [#593]
|
||||
* Add method EM::Channel#num_subscribers to get the number of subscribers to a channel [#640]
|
||||
* Add support for proc-sources in EM::Iterator [#639]
|
||||
* Factor out method cleanup_machine to cleanup code from EM.run [#650]
|
||||
* Replace Exception class with StandardError [#637]
|
||||
* Close socket on close_connection even after close_connection_after_writing [#694]
|
||||
* Allow reusing of datagram socket/setting bind device [#662]
|
||||
* Handle deferred exceptions in reactor thread [#486]
|
||||
* Reimplement Queue to avoid shift/push performance problem [#311]
|
||||
* Windows: Switch from gethostbyname to getaddrinfo, support IPv6 addresses [#303, #630]
|
||||
* Windows: Use rake-compiler-dock to cross-compile gems [#627]
|
||||
* Windows: Add AppVeyor configuration for Windows CI testing [#578]
|
||||
* Windows: Bump rake-compiler to version 0.9.x [#542]
|
||||
* Fix compilation on AIX (w/ XLC) [#693]
|
||||
* Fix build on OpenBSD [#690]
|
||||
* Fix OpenSSL compile issue on AIX 7.1 [#678]
|
||||
* Fix EventMachine.fork_reactor keeps the threadpool of the original process [#425]
|
||||
* Fix to prevent event machine from stopping when a raise is done in an unbind [#327]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 21 05:34:22 UTC 2016 - coolo@suse.com
|
||||
|
||||
- updated to version 1.0.9.1
|
||||
see installed CHANGELOG.md
|
||||
|
||||
## 1.0.9.1 (January 14, 2016)
|
||||
* Fix EPROTO not defined on Windows [#676]
|
||||
* Fix missing cast to struct sockaddr * [#671]
|
||||
* Fix bug in OpenSSL path detection [#675]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 14 05:37:55 UTC 2016 - coolo@suse.com
|
||||
|
||||
- updated to version 1.0.9
|
||||
see installed CHANGELOG.md
|
||||
|
||||
## 1.0.9 (January 13, 2016)
|
||||
* Try more ways to detect OpenSSL [#602, #643, #661, #663, #668, #669]
|
||||
* Use WSAGetLastError in pipe.cpp same as ed.cpp [#659]
|
||||
* Test compiler flags with the C++ compiler and add them to CXXFLAGS [#634, #651]
|
||||
* Restore silent-fail on unsupported EM.epoll and EM.kqueue [#638, #649]
|
||||
* getDescriptorByFileno deprecated in JRuby 1.7.x, removed in JRuby 9000 [#642, #648]
|
||||
* Add -Wno-address always-true because on Windows rb_fd_select [#578]
|
||||
* Remove the WITHOUT_SSL constant [#578]
|
||||
* Fix SSL error when the server replies a TLS Alert to our ClientHello [#544, #653]
|
||||
* Use WSAStringToAddress in lieu of inet_pton for IPv6 address detection on Windows [#595, #632]
|
||||
* Fix nasty TCP/IPv6 bug [#595, #632]
|
||||
* Use select_large_fdset on Solaris [#611, #625]
|
||||
* Detect the Solaris Studio compiler [#611, #625]
|
||||
* Throw a message with strerror included [#136, #621]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 7 04:29:43 UTC 2015 - coolo@suse.com
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package rubygem-eventmachine
|
||||
#
|
||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# 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-eventmachine
|
||||
Version: 1.0.8
|
||||
Version: 1.2.0.1
|
||||
Release: 0
|
||||
%define mod_name eventmachine
|
||||
%define mod_full_name %{mod_name}-%{version}
|
||||
|
Loading…
Reference in New Issue
Block a user