- Tag: 0.4.2
- Release: angular-spring-data-rest-0.4.2.zip
- Fixed issue #9.
- No migration needed.
- Tag: 0.4.1
- Release: angular-spring-data-rest-0.4.1.zip
- Fixed issue #8.
- No migration needed.
- Tag: 0.4.0
- Release: angular-spring-data-rest-0.4.0.zip
- 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.
- You will need to change all invocations of the
processWithPromise
function to theprocess
function. Further you need to ensure that when you used the oldprocess
function that you now get a promise returned instead of the processed data directly.
- Tag: 0.3.2
- Release: angular-spring-data-rest-0.3.2.zip
- 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 guylabs#4.
- No migration needed.
- Tag: 0.3.1
- Release: angular-spring-data-rest-0.3.1.zip
- Add empty string as default parameter value when returning the available resources instead of undefined.
- 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 ofundefined
.
- Tag: 0.3.0
- Release: angular-spring-data-rest-0.3.0.zip
- 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 aprocess
property which holds the core function. - Ability to pass a promise as data object to the
SpringDataRestAdapter
to support asynchronous response handling.
- 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)
toSpringDataRestAdapter.process(responseData)
.
- Tag: 0.2.0
- Release: angular-spring-data-rest-0.2.0.zip
- Add ability to exchange the Angular
$resource
method with an own implementation - Updated source and test files structure
- Add package to bower repository
- Tag: 0.1.0
- Release: angular-spring-data-rest-0.1.0.zip
- Initial release of
angular-spring-data-rest