-
Notifications
You must be signed in to change notification settings - Fork 726
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
[RFR] Backward compatibility #356
Conversation
jpetitcolas
commented
Mar 11, 2015
- Fix build process (missing configuration part)
- Add BC proxy methods to ConfigurationProvider
- Test it on real-world project
- Update README and UPGRADE files
Don't forget the README and UPGRADE files |
@@ -46,6 +46,10 @@ class Factory { | |||
this._fieldTypes[name] = constructor; | |||
} | |||
|
|||
getFieldConstructor(name) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added to ease inheritance for custom types.
Switching to RFR. Tests pass locally. |
|
||
``` diff | ||
- app.config(function (NgAdminConfigurationProvider, RestangularProvider) { | ||
+ app.config(function (AdminDescription, NgAdminProvider, RestangularProvider) { | ||
+ app.config(function (AdminDescription, NgAdminConfigurationProvider, RestangularProvider) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove AdminDescription
Files updated. But tests are still failing on Travis only. Should we merge it? |
[RFR] Backward compatibility