Skip to content

Latest commit

 

History

History
52 lines (32 loc) · 2.28 KB

File metadata and controls

52 lines (32 loc) · 2.28 KB

Release notes of angular-spring-data-rest

Version 0.3.1

Changes

  • Add empty string as default parameter value when returning the available resources instead of undefined.

Migration notes

  • You will need to change the logic on your side if you use the object which is returned if the _resources method is called without any parameter. The parameters have now an empty string set as default value instead of undefined.

Version 0.3.0

Changes

  • Automatic fetching of links
  • Refactor the configuration object
  • Add ability to set the response as promise
  • Return value of the SpringDataRestAdapter is an object with a process property which holds the core function.
  • Ability to pass a promise as data object to the SpringDataRestAdapter to support asynchronous response handling.

Migration notes

  • You will need to change your overridden configuration objects, as the keys of the configuration objects have been changed.
  • You will need to change all calls from new SpringDataRestAdapter(responseData) to SpringDataRestAdapter.process(responseData).

Version 0.2.0

Changes

  • Add ability to exchange the Angular $resource method with an own implementation
  • Updated source and test files structure
  • Add package to bower repository

Version 0.1.0

Changes

  • Initial release of angular-spring-data-rest