Skip to content

Commit 71472a2

Browse files
committed
Bump version to 1.6.0, update changelog
1 parent 74d444e commit 71472a2

File tree

3 files changed

+36
-12
lines changed

3 files changed

+36
-12
lines changed

CHANGELOG.md

Lines changed: 33 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,43 @@
1+
# 1.6.0 (2016-12-25)
2+
3+
* Url now supports unescaped suffix (0350bcd)
4+
* Added Restangular Plunkr example (c4ef002)
5+
* Now id can be a nested property (a94228b)
6+
* Add withHttpConfig to objects created with .service (e8f7295)
7+
* Add support for angularjs dependency injection using commonjs require syntax (f02db83)
8+
* Fix missing 'get' in decoupled service (8096ce1)
9+
* Avoid restangularizing an undefined element in restangularizeCollecti onAndElements. (0f8b562)
10+
* Fixes #1167: Extend condition to treat '0, which as a falsy value currently fails, as a valid ID (95ea231)
11+
* Add customPatch method (01297fe)
12+
* Added UMD snippet (caab5e6)
13+
* Support BaseUrl with athority without schema (5f3eacb)
14+
* Add ability to restangularize a collection with fromServer set (51066ec)
15+
* Add configuration option to use plain() by default (94ffaf0)
16+
* Fix fromServer param while copying (b53f4b6)
17+
* Rename CONTRIBUTE.md to CONTRIBUTING.md in accordance with GitHub's spec (c17df47)
18+
* Remove moot `version` property from bower.json (1a585f3)
19+
* Add more realistic POST response for accounts, with id (#943) (11fb475)
20+
* Added context/explanation of when to use JSONP. (fec9b27)
21+
* Add regexp matching for route to element transformers (#1430) (de8f561)
22+
23+
124
1.5.2 / 2016-02-15
225
==================
326

4-
* Change _.contains to _.includes for compatability with lodash >= 4.0
27+
* Change \_.contains to \_.includes for compatability with lodash >= 4.0
528

629
1.5.1 / 2015-04-03
730
==================
831

9-
* Release 1.5.0
10-
* Updated zip
11-
* Merge branch 'master' of github.com:mgonto/restangular
12-
* Merge pull request #1081 from rajeshwarpatlolla/develop
13-
* Merge pull request #1079 from wching/master
14-
* change in README file
15-
* url modified for 'Chain methods together to easily build complex requests'
16-
* Update README.md
17-
* Update README.md
32+
* Release 1.5.0
33+
* Updated zip
34+
* Merge branch 'master' of github.com:mgonto/restangular
35+
* Merge pull request #1081 from rajeshwarpatlolla/develop
36+
* Merge pull request #1079 from wching/master
37+
* change in README file
38+
* url modified for 'Chain methods together to easily build complex requests'
39+
* Update README.md
40+
* Update README.md
1841

1942
1.5.0 / 2015-04-03
2043
==================

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -684,6 +684,7 @@ module.factory('Users', function(Restangular) {
684684
});
685685

686686
// In your controller you inject Users
687+
Users.get(2) // GET to /users/2
687688
Users.one(2).get() // GET to /users/2
688689
Users.post({data}) // POST to /users
689690

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "restangular",
33
"description": "Restful Resources service for AngularJS apps",
4-
"version": "1.5.2",
4+
"version": "1.6.0",
55
"filename": "restangular.min.js",
66
"main": "./dist/restangular.js",
77
"homepage": "https://github.com/mgonto/restangular",
@@ -57,4 +57,4 @@
5757
"test": "grunt test --verbose"
5858
},
5959
"license": "MIT"
60-
}
60+
}

0 commit comments

Comments
 (0)