Skip to content

Commit

Permalink
#18(fix): update module to use Angular version 1.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
guylabs committed Dec 23, 2015
1 parent 6fa15a3 commit 0a4457e
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 33 deletions.
9 changes: 9 additions & 0 deletions RELEASENOTES.md
@@ -1,5 +1,14 @@
# Release notes of angular-spring-data-rest

## Version 0.4.4

* Tag: [0.4.4](https://github.com/guylabs/angular-spring-data-rest/tree/0.4.4)
* Release: [angular-spring-data-rest-0.4.4.zip](https://github.com/guylabs/angular-spring-data-rest/releases/download/0.4.4/angular-spring-data-rest-0.4.4.zip)

### Changes

* Upgraded to the latest Angular 1.4.x version. See [#18](https://github.com/guylabs/angular-spring-data-rest/issues/18) for details.

## Version 0.4.3

* Tag: [0.4.3](https://github.com/guylabs/angular-spring-data-rest/tree/0.4.3)
Expand Down
8 changes: 4 additions & 4 deletions bower.json
@@ -1,6 +1,6 @@
{
"name": "angular-spring-data-rest",
"version": "0.4.3",
"version": "0.4.4",
"description": "An AngularJS module to ease the work with a Spring Data REST backend.",
"main": "./dist/angular-spring-data-rest.js",
"license": "MIT",
Expand Down Expand Up @@ -33,10 +33,10 @@
"url": "https://github.com/guylabs/angular-spring-data-rest.git"
},
"dependencies": {
"angular": "~1.3.15",
"angular-resource": "~1.3.15"
"angular": "~1.4.8",
"angular-resource": "~1.4.8"
},
"devDependencies": {
"angular-mocks": "~1.3.15"
"angular-mocks": "~1.4.8"
}
}
6 changes: 3 additions & 3 deletions dist/angular-spring-data-rest.js
Expand Up @@ -4,15 +4,15 @@

/**
* @module spring-data-rest
* @version 0.4.3
* @version 0.4.4
*
* An AngularJS module to ease the work with a Spring Data REST backend.
*/
angular.module("spring-data-rest", ["ngResource"]);

/**
* @module spring-data-rest
* @version 0.4.3
* @version 0.4.4
*
* Provider for the SpringDataRestAdapter which is the core of this module.
*/
Expand Down Expand Up @@ -389,7 +389,7 @@ angular.module("spring-data-rest").provider("SpringDataRestAdapter", function ()
});
/**
* @module spring-data-rest
* @version 0.4.3
* @version 0.4.4
*
* Provider for the interceptor which wraps the SpringDataRestAdapter around the response object.
*/
Expand Down
4 changes: 2 additions & 2 deletions dist/angular-spring-data-rest.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 15 additions & 18 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "angular-spring-data-rest",
"version": "0.4.3",
"version": "0.4.4",
"description": "An AngularJS module to ease the work with a Spring Data REST backend.",
"keywords": [
"AngularJS",
Expand All @@ -23,27 +23,24 @@
},
"main": "dist/angular-spring-data-rest.min.js",
"devDependencies": {
"bower": "~1.3.12",
"coveralls": "^2.11.2",
"bower": "~1.7.1",
"coveralls": "~2.11.6",
"grunt": "~0.4.5",
"grunt-bower-install-simple": "~1.1.0",
"grunt-bower-install-simple": "~1.2.0",
"grunt-contrib-concat": "~0.5.1",
"grunt-contrib-uglify": "~0.8.0",
"grunt-karma": "~0.10.1",
"karma": "~0.12.31",
"karma-chrome-launcher": "~0.1.7",
"karma-coverage": "^0.2.7",
"karma-firefox-launcher": "~0.1.4",
"karma-jasmine": "~0.3.5",
"karma-phantomjs-launcher": "~0.1.4",
"load-grunt-tasks": "~3.1.0",
"time-grunt": "~1.1.0"
"grunt-contrib-uglify": "~0.11.0",
"grunt-karma": "~0.12.1",
"karma": "~0.13.15",
"karma-chrome-launcher": "~0.2.2",
"karma-coverage": "~0.5.3",
"karma-firefox-launcher": "~0.1.7",
"karma-jasmine": "~0.3.6",
"karma-phantomjs-launcher": "~0.2.1",
"load-grunt-tasks": "~3.4.0",
"time-grunt": "~1.2.2"
},
"dependencies": {},
"license": {
"type": "MIT",
"url": "https://github.com/guylabs/angular-spring-data-rest/blob/master/LICENSE"
},
"license": "MIT",
"scripts": {
"test": "grunt test"
}
Expand Down
6 changes: 2 additions & 4 deletions test/angular-spring-data-rest-interceptor-provider.spec.js
Expand Up @@ -11,8 +11,7 @@ describe("if the spring data rest interceptor is not added", function () {
// initialize the provider by injecting it to a config block of a test module
// and assign it to the this scope such that it is available in each test
// (see https://jasmine.github.io/2.0/introduction.html#section-The_<code>this</code>_keyword)
angular.module('testModule', function () {
}).config(function (SpringDataRestAdapterProvider, SpringDataRestInterceptorProvider) {
angular.module('testModule', []).config(function (SpringDataRestAdapterProvider, SpringDataRestInterceptorProvider) {
springDataRestAdapterProvider = SpringDataRestAdapterProvider;
});

Expand Down Expand Up @@ -77,8 +76,7 @@ describe("if the spring data rest interceptor is added", function () {
// initialize the provider by injecting it to a config block of a test module
// and assign it to the this scope such that it is available in each test
// (see https://jasmine.github.io/2.0/introduction.html#section-The_<code>this</code>_keyword)
angular.module('testModule', function () {
}).config(function (SpringDataRestAdapterProvider, SpringDataRestInterceptorProvider) {
angular.module('testModule', []).config(function (SpringDataRestAdapterProvider, SpringDataRestInterceptorProvider) {
springDataRestAdapterProvider = SpringDataRestAdapterProvider;
SpringDataRestInterceptorProvider.apply();
});
Expand Down
3 changes: 1 addition & 2 deletions test/angular-spring-data-rest.helper.spec.js
Expand Up @@ -9,8 +9,7 @@ var beforeEachFunction = function () {
// initialize the provider by injecting it to a config block of a test module
// and assign it to the this scope such that it is available in each test
// (see https://jasmine.github.io/2.0/introduction.html#section-The_<code>this</code>_keyword)
angular.module('testModule', function () {
}).config(function (SpringDataRestAdapterProvider) {
angular.module('testModule', []).config(function (SpringDataRestAdapterProvider) {
springDataRestAdapterProvider = SpringDataRestAdapterProvider;
});

Expand Down

0 comments on commit 0a4457e

Please sign in to comment.