You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Removed ability to provide a sqlalchemy.orm.session.Session class
when initializing APIManager; provide an instance of the class
instead.
Changes some dynamically loaded relationships used for testing and in
examples to be many-to-one instead of the incorrect one-to-many. Versions of
SQLAlchemy after 0.8.0b2 raise an exception when the latter is used.
#105: added ability to set a list of related model instances on a model.
#107: server responds with an error code when a PATCH or POST request specifies a field which does not exist on the
model.
#108: dynamically loaded relationships should now be rendered correctly by
the views._to_dict function regardless of whether they are a list or
a single object.