Skip to content

Commit 0a4457e

Browse files
author
guylabs
committed
#18(fix): update module to use Angular version 1.4.8
1 parent 6fa15a3 commit 0a4457e

7 files changed

+36
-33
lines changed

RELEASENOTES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Release notes of angular-spring-data-rest
22

3+
## Version 0.4.4
4+
5+
* Tag: [0.4.4](https://github.com/guylabs/angular-spring-data-rest/tree/0.4.4)
6+
* 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)
7+
8+
### Changes
9+
10+
* Upgraded to the latest Angular 1.4.x version. See [#18](https://github.com/guylabs/angular-spring-data-rest/issues/18) for details.
11+
312
## Version 0.4.3
413

514
* Tag: [0.4.3](https://github.com/guylabs/angular-spring-data-rest/tree/0.4.3)

bower.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-spring-data-rest",
3-
"version": "0.4.3",
3+
"version": "0.4.4",
44
"description": "An AngularJS module to ease the work with a Spring Data REST backend.",
55
"main": "./dist/angular-spring-data-rest.js",
66
"license": "MIT",
@@ -33,10 +33,10 @@
3333
"url": "https://github.com/guylabs/angular-spring-data-rest.git"
3434
},
3535
"dependencies": {
36-
"angular": "~1.3.15",
37-
"angular-resource": "~1.3.15"
36+
"angular": "~1.4.8",
37+
"angular-resource": "~1.4.8"
3838
},
3939
"devDependencies": {
40-
"angular-mocks": "~1.3.15"
40+
"angular-mocks": "~1.4.8"
4141
}
4242
}

dist/angular-spring-data-rest.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44

55
/**
66
* @module spring-data-rest
7-
* @version 0.4.3
7+
* @version 0.4.4
88
*
99
* An AngularJS module to ease the work with a Spring Data REST backend.
1010
*/
1111
angular.module("spring-data-rest", ["ngResource"]);
1212

1313
/**
1414
* @module spring-data-rest
15-
* @version 0.4.3
15+
* @version 0.4.4
1616
*
1717
* Provider for the SpringDataRestAdapter which is the core of this module.
1818
*/
@@ -389,7 +389,7 @@ angular.module("spring-data-rest").provider("SpringDataRestAdapter", function ()
389389
});
390390
/**
391391
* @module spring-data-rest
392-
* @version 0.4.3
392+
* @version 0.4.4
393393
*
394394
* Provider for the interceptor which wraps the SpringDataRestAdapter around the response object.
395395
*/

dist/angular-spring-data-rest.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-spring-data-rest",
3-
"version": "0.4.3",
3+
"version": "0.4.4",
44
"description": "An AngularJS module to ease the work with a Spring Data REST backend.",
55
"keywords": [
66
"AngularJS",
@@ -23,27 +23,24 @@
2323
},
2424
"main": "dist/angular-spring-data-rest.min.js",
2525
"devDependencies": {
26-
"bower": "~1.3.12",
27-
"coveralls": "^2.11.2",
26+
"bower": "~1.7.1",
27+
"coveralls": "~2.11.6",
2828
"grunt": "~0.4.5",
29-
"grunt-bower-install-simple": "~1.1.0",
29+
"grunt-bower-install-simple": "~1.2.0",
3030
"grunt-contrib-concat": "~0.5.1",
31-
"grunt-contrib-uglify": "~0.8.0",
32-
"grunt-karma": "~0.10.1",
33-
"karma": "~0.12.31",
34-
"karma-chrome-launcher": "~0.1.7",
35-
"karma-coverage": "^0.2.7",
36-
"karma-firefox-launcher": "~0.1.4",
37-
"karma-jasmine": "~0.3.5",
38-
"karma-phantomjs-launcher": "~0.1.4",
39-
"load-grunt-tasks": "~3.1.0",
40-
"time-grunt": "~1.1.0"
31+
"grunt-contrib-uglify": "~0.11.0",
32+
"grunt-karma": "~0.12.1",
33+
"karma": "~0.13.15",
34+
"karma-chrome-launcher": "~0.2.2",
35+
"karma-coverage": "~0.5.3",
36+
"karma-firefox-launcher": "~0.1.7",
37+
"karma-jasmine": "~0.3.6",
38+
"karma-phantomjs-launcher": "~0.2.1",
39+
"load-grunt-tasks": "~3.4.0",
40+
"time-grunt": "~1.2.2"
4141
},
4242
"dependencies": {},
43-
"license": {
44-
"type": "MIT",
45-
"url": "https://github.com/guylabs/angular-spring-data-rest/blob/master/LICENSE"
46-
},
43+
"license": "MIT",
4744
"scripts": {
4845
"test": "grunt test"
4946
}

test/angular-spring-data-rest-interceptor-provider.spec.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ describe("if the spring data rest interceptor is not added", function () {
1111
// initialize the provider by injecting it to a config block of a test module
1212
// and assign it to the this scope such that it is available in each test
1313
// (see https://jasmine.github.io/2.0/introduction.html#section-The_<code>this</code>_keyword)
14-
angular.module('testModule', function () {
15-
}).config(function (SpringDataRestAdapterProvider, SpringDataRestInterceptorProvider) {
14+
angular.module('testModule', []).config(function (SpringDataRestAdapterProvider, SpringDataRestInterceptorProvider) {
1615
springDataRestAdapterProvider = SpringDataRestAdapterProvider;
1716
});
1817

@@ -77,8 +76,7 @@ describe("if the spring data rest interceptor is added", function () {
7776
// initialize the provider by injecting it to a config block of a test module
7877
// and assign it to the this scope such that it is available in each test
7978
// (see https://jasmine.github.io/2.0/introduction.html#section-The_<code>this</code>_keyword)
80-
angular.module('testModule', function () {
81-
}).config(function (SpringDataRestAdapterProvider, SpringDataRestInterceptorProvider) {
79+
angular.module('testModule', []).config(function (SpringDataRestAdapterProvider, SpringDataRestInterceptorProvider) {
8280
springDataRestAdapterProvider = SpringDataRestAdapterProvider;
8381
SpringDataRestInterceptorProvider.apply();
8482
});

test/angular-spring-data-rest.helper.spec.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ var beforeEachFunction = function () {
99
// initialize the provider by injecting it to a config block of a test module
1010
// and assign it to the this scope such that it is available in each test
1111
// (see https://jasmine.github.io/2.0/introduction.html#section-The_<code>this</code>_keyword)
12-
angular.module('testModule', function () {
13-
}).config(function (SpringDataRestAdapterProvider) {
12+
angular.module('testModule', []).config(function (SpringDataRestAdapterProvider) {
1413
springDataRestAdapterProvider = SpringDataRestAdapterProvider;
1514
});
1615

0 commit comments

Comments
 (0)