On Sep 1, 10:10 am, Jeremy Evans <[email protected]> wrote:
> Sequel 3.27.0 has been released and should be available on the gem
> mirrors.

ActiveSupport has a serious bug in it's Time.=== implementation which
breaks Sequel 3.27.0 for timestamp columns.  To fix it:

  def Time.===(other)
    super || (self == Time && other.is_a?
(ActiveSupport::TimeWithZone))
  end

I've reported this to the Rails bugtracker, hopefully anyone affected
can +1 it enough for them to care: https://github.com/rails/rails/pull/2801

Jeremy

-- 
You received this message because you are subscribed to the Google Groups 
"sequel-talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sequel-talk?hl=en.

Reply via email to