connection_pool 2.5.1 → 2.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0a46ac6651f50f053c03abb5ab7bdc0a6e3ddde7c1f8dd1d76fbd7939f3ba31d
4
- data.tar.gz: 71cd4da429af569a8a8a9d4a2af51081e5363eb184f29b876a3c4a3ccf3e689e
3
+ metadata.gz: 84c12caae6339226551cf370f520cd43a6358df7c78a8b7ab421f2150724691e
4
+ data.tar.gz: 617c83de5e4b3ff7b5e61173f4ce4532e73c4c81b710047405545c4fe854c675
5
5
  SHA512:
6
- metadata.gz: e73f6dea5b92fd29d8249011390f3f1bff7562d0c189602c88d8d95fa5337fa50270f6ed8a8c2031423db2a15d22685668032f3e6e0629c04d99b71342b28a50
7
- data.tar.gz: 010ce12b06b7f678eae90c949366c94450a03c3b0f8f676ec35acff8b71470eb66c29b6ec3838981bf070136e72f9698687251284f7d6ac1d7f46cd406727073
6
+ metadata.gz: 39e57fbfa739c938a29c5588904e7c02dbb5c5b4ecb2d5b6227cdfbe79bfe037519219c97b0827f5f0be2cbbe57fecc6256e88e58a6d52e4370f2529c8d5d31d
7
+ data.tar.gz: 7da806b53093f4b920b0c617b01665602bbe63a8704d5b9b5f64873cc2e2799b69ca132e66e3c36d9699824c2f51dd4b2f6fabcfdae17dbd22f703c1dd6cd4fc
data/Changes.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # connection_pool Changelog
2
2
 
3
+ 2.5.2
4
+ ------
5
+
6
+ - Rollback inadvertant change to `auto_reload_after_fork` default. [#200]
7
+
3
8
  2.5.1
4
9
  ------
5
10
 
@@ -1,3 +1,3 @@
1
1
  class ConnectionPool
2
- VERSION = "2.5.1"
2
+ VERSION = "2.5.2"
3
3
  end
@@ -39,7 +39,7 @@ end
39
39
  # - :auto_reload_after_fork - automatically drop all connections after fork, defaults to true
40
40
  #
41
41
  class ConnectionPool
42
- DEFAULTS = {size: 5, timeout: 5, auto_reload_after_fork: false}.freeze
42
+ DEFAULTS = {size: 5, timeout: 5, auto_reload_after_fork: true}.freeze
43
43
 
44
44
  def self.wrap(options, &block)
45
45
  Wrapper.new(options, &block)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: connection_pool
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.1
4
+ version: 2.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Perham
8
8
  - Damian Janowski
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-04-16 00:00:00.000000000 Z
11
+ date: 2025-04-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler