Commit 02eaf73
authored
Version bump connection_pool from 3.0.1 to 3.0.2 (#4994)
# connection_pool from 3.0.1
v3.0.0 had breaking changes: changing positional args to keyword args
which was breaking `bundle assets:precompile`
https://github.com/mperham/connection_pool/blob/main/Changes.md#300
> **BREAKING CHANGES** `ConnectionPool` and `ConnectionPool::TimedStack`
now use keyword arguments rather than positional arguments everywhere.
Expected impact is minimal as most people use the with API, which is
unchanged.
```
-----> Preparing app for Rails asset pipeline
Running: rake assets:precompile
rake aborted!
ArgumentError: wrong number of arguments (given 1, expected 0) (ArgumentError)
```
---
# connection_pool 3.0.2
`3.0.2` fixed it
https://github.com/mperham/connection_pool/blob/main/Changes.md#302
> Support :name keyword for backwards compatibility [#210]1 parent 387ba83 commit 02eaf73
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
131 | 131 | | |
132 | 132 | | |
133 | 133 | | |
134 | | - | |
| 134 | + | |
135 | 135 | | |
136 | 136 | | |
137 | 137 | | |
| |||
661 | 661 | | |
662 | 662 | | |
663 | 663 | | |
664 | | - | |
| 664 | + | |
665 | 665 | | |
666 | 666 | | |
667 | 667 | | |
| |||
0 commit comments