Skip to content

Latest commit

 

History

History
145 lines (83 loc) · 6.01 KB

RELEASENOTES.md

File metadata and controls

145 lines (83 loc) · 6.01 KB

Release notes of angular-spring-data-rest

Version 0.4.6

Changes

  • Fixed issue #30.

Version 0.4.5

Changes

  • Upgraded to the latest Angular 1.5.x version. See #21 for details.
  • Add new flag fetchMultiple to support fetching the same link multiple times. See #23 for details.

Version 0.4.4

Changes

  • Upgraded to the latest Angular 1.4.x version. See #18 for details.

Version 0.4.3

Changes

  • Fixed issue #12. Thanks to Romy (rkusuma) for the contribution!

Migration notes

  • No migration needed.

Version 0.4.2

Changes

  • Fixed issue #9.

Migration notes

  • No migration needed.

Version 0.4.1

Changes

  • Fixed issue #8.

Migration notes

  • No migration needed.

Version 0.4.0

Changes

  • Fixed issues with incorrect promise handling and simplified the code. Now the process function accepts promises and also returns promises. So there is no possibility to process data without using promises.

Migration notes

  • You will need to change all invocations of the processWithPromise function to the process function. Further you need to ensure that when you used the old process function that you now get a promise returned instead of the processed data directly.

Version 0.3.2

Changes

  • Add ability to have multiple embedded items. See documentation about embeddedNamedResources configurtion option. Thanks to Alexander and Mihai for having the idea and helping out with #4.

Migration notes

  • No migration needed.

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