-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v3 is breaking existing behavior #342
Comments
Encountering a similar issue. Two things contribute to the problem:
Our scenarioWe have a Rails model with a > Object.new.format("%.2f", 1) # private method `format' called for #<Object:0x0000000103fce3e8> (NoMethodError)
> Object.new.__send__(:format, "%.2f", 1) # => "1.00" So the corresponding I'm assuming Alba uses |
@kapso As @atcruice mentioned, using |
@atcruice The reason behind using |
I noticed
|
@remy727 Could you submit another issue with reproduction code? |
@okuramasafumi sure. I created #343 |
We have an attribute
params
in our serializer, which has started breaking after v3 upgrade.Error
I am guessing
params
is also an internal method, so its not a big deal, but I just wanted to flag it here.Environment
The text was updated successfully, but these errors were encountered: