Skip to content
This repository has been archived by the owner on Jun 7, 2019. It is now read-only.

Commit

Permalink
Release v2.0.0
Browse files Browse the repository at this point in the history
- MAJOR: Drop hard when.js dependency in favor of ES6 Promise API. See https://github.com/cujojs/when/blob/master/docs/es6-promise-shim.md to use when.js as an ES6 Promise polyfill.
- MAJOR: AMD modules are no longer supported. curl.js users can use the cjsm11 loader, see https://github.com/cujojs/curl#api-at-a-glance
- Moved path token param replacement from the clients into the `rest/interceptor/params` interceptor, which is also deprecated. The behavior will no longer be applied automatically in the client. Using the `rest/interceptor/template` interceptor is far more powerful and preferred.
- Fixed an issue preventing uri template exploded values from expanding correctly.
- Update tested environments:
  - Android 5.1, 4.4 and 4.3
  - Chrome latest
  - Edge latest
  - Firefox latest, 45 ESR, 38 ESR
  - Node 0.10, 4, 6
  - IE 11
  - iOS 8 and 9
  - Safari 8 and 9
- Removed old IE XDomainRequest client and xhr and xdr interceptors
- mime interceptor no longer sets Content-Type on requests without an entity
  • Loading branch information
scothis committed Jun 17, 2016
1 parent d613afe commit 4bd359d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ rest.js is made available under the MIT license. See LICENSE.txt for details.
Change Log
----------

.next
2.0.0
- MAJOR: Drop hard when.js dependency in favor of ES6 Promise API. See https://github.com/cujojs/when/blob/master/docs/es6-promise-shim.md to use when.js as an ES6 Promise polyfill.
- MAJOR: AMD modules are no longer supported. curl.js users can use the cjsm11 loader, see https://github.com/cujojs/curl#api-at-a-glance
- Moved path token param replacement from the clients into the `rest/interceptor/params` interceptor, which is also deprecated. The behavior will no longer be applied automatically in the client. Using the `rest/interceptor/template` interceptor is far more powerful and preferred.
Expand All @@ -249,7 +249,6 @@ Change Log
- iOS 8 and 9
- Safari 8 and 9
- Removed old IE XDomainRequest client and xhr and xdr interceptors
- include requested URL on response object
- mime interceptor no longer sets Content-Type on requests without an entity

1.3.2
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rest",
"version": "2.0.0-pre",
"version": "2.0.0",
"main": "./browser.js",
"moduleType": ["node"],
"dependencies": {},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rest",
"version": "2.0.0-pre",
"version": "2.0.0",
"description": "RESTful HTTP client library",
"keywords": ["rest", "http", "client", "rest-template", "spring", "cujojs"],
"license": "MIT",
Expand Down

0 comments on commit 4bd359d

Please sign in to comment.