On Thursday, April 21, 2016 at 3:24:28 PM UTC-7, Yasuo Honda wrote: > I'd like to propose that Rails 5 minimum version of SQLite 3.8 or higher. > ( Here I am talking about SQLite database itself, not talking about sqlite3 gem. )
Looks like OS X 10.9 Mavericks has SQLite 3.7.13, 10.10 Yosemite has 3.8.5, and 10.11 El Capitan has 3.8.10.2. I think we're fairly safe to bump the version requirement. On the other hand, it's pretty cheap/easy to support 3.7.x if we only do multi-insert if the db supports it: ```ruby if connection.supports_multi_insert? … ``` Given that we've had multiple bug reports about it and how confusing it is to troubleshoot, that's probably the friendlier choice. Best, Jeremy -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/rubyonrails-core. For more options, visit https://groups.google.com/d/optout.
