rubygem-connection_pool/rubygem-connection_pool.changes

58 lines
1.9 KiB
Plaintext

-------------------------------------------------------------------
Tue Mar 3 05:29:23 UTC 2015 - coolo@suse.com
- updated to version 2.1.2
-------------------------------------------------------------------
Sat Feb 7 07:21:14 UTC 2015 - coolo@suse.com
- updated to version 2.1.1
- Work around a subtle race condition with code which uses `Timeout.timeout` and
checks out a connection within the timeout block. This might cause
connections to get into a bad state and raise very odd errors. [tamird, #67]
2.1.0
------
- Refactoring to better support connection pool subclasses [drbrain,
#55]
- `with` should return value of the last expression [#59]
-------------------------------------------------------------------
Mon Oct 13 09:47:33 UTC 2014 - coolo@suse.com
- adapt to new rubygem packaging
-------------------------------------------------------------------
Sat Mar 15 18:46:01 UTC 2014 - coolo@suse.com
- updated to version 2.0.0
- The connection pool is now lazy. Connections are created as needed
and retained until the pool is shut down. [drbrain, #52]
-------------------------------------------------------------------
Wed Nov 27 08:19:00 UTC 2013 - coolo@suse.com
- updated to version 1.2.0
- Add `with(options)` and `checkout(options)`. [mattcamuto]
Allows the caller to override the pool timeout.
```ruby
@pool.with(:timeout => 2) do |conn|
end
-------------------------------------------------------------------
Wed Jul 31 05:45:54 UTC 2013 - coolo@suse.com
- updated to version 1.1.0
- New `#shutdown` method (simao)
This method accepts a block and calls the block for each
connection in the pool. After calling this method, trying to get a
connection from the pool raises `PoolShuttingDownError`.
-------------------------------------------------------------------
Tue Dec 25 17:00:44 UTC 2012 - coolo@suse.com
- initial package (version 1.0.0)