I don't think this is a bug. It does seem inconsistent, but only because the all argument to singleton_methods defaults to true. If you call singleton_methods(false), then you get the behavior you would expect from the method name (only show actual singleton methods, not methods in modules that extend the object).
For singleton classes that prepend a module, and have the method defined in both the singleton class and prepended module, singleton_method now returns the method in the prepended module.
Cases where a method is defined in a module prepended to or included in the singleton classes and not in the singleton class itself now result in a Method Object being returned, instead of raising NameError.
Use of singleton_method isn't that common in my experience, so I think we should make the change. There is still time to back it out of 3.4 if it causes issues.
Make Object#singleton_method return methods in modules included in or prepended to singleton class
To simplify the implementation, this makes Object#singleton_method
call the same method called by Object#method (rb_obj_method), then
check that the returned Method is defined before the superclass of the
object's singleton class. To keep the same error messages, it rescues
exceptions raised by rb_obj_method, and then raises its own exception.