Skip to content

Commit

Permalink
chore(all): prepare release 1.0.0-beta.1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Feb 8, 2016
1 parent 009d95e commit b9d752d
Show file tree
Hide file tree
Showing 14 changed files with 193 additions and 126 deletions.
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "aurelia-http-client",
"version": "1.0.0-beta.1.1.0",
"version": "1.0.0-beta.1.1.1",
"description": "A simple, restful, message-based wrapper around XMLHttpRequest.",
"keywords": [
"aurelia",
Expand Down
7 changes: 6 additions & 1 deletion dist/amd/aurelia-http-client.d.ts
Expand Up @@ -222,7 +222,7 @@ declare module 'aurelia-http-client' {
/**
* The status code of the response.
*/
statusCode: string;
statusCode: number;

/**
* The raw response.
Expand Down Expand Up @@ -596,6 +596,11 @@ declare module 'aurelia-http-client' {
*/
export class HttpClient {

/**
* Indicates whether or not the client is in the process of requesting resources.
*/
isRequesting: boolean;

/**
* Creates an instance of HttpClient.
*/
Expand Down
3 changes: 2 additions & 1 deletion dist/amd/aurelia-http-client.js
Expand Up @@ -694,12 +694,13 @@ define(['exports', 'core-js', 'aurelia-path', 'aurelia-pal'], function (exports,
function HttpClient() {
_classCallCheck(this, HttpClient);

this.isRequesting = false;

this.requestTransformers = [];
this.requestProcessorFactories = new Map();
this.requestProcessorFactories.set(HttpRequestMessage, createHttpRequestMessageProcessor);
this.requestProcessorFactories.set(JSONPRequestMessage, createJSONPRequestMessageProcessor);
this.pendingRequests = [];
this.isRequesting = false;
}

HttpClient.prototype.configure = function configure(fn) {
Expand Down
7 changes: 6 additions & 1 deletion dist/aurelia-http-client.d.ts
Expand Up @@ -222,7 +222,7 @@ declare module 'aurelia-http-client' {
/**
* The status code of the response.
*/
statusCode: string;
statusCode: number;

/**
* The raw response.
Expand Down Expand Up @@ -596,6 +596,11 @@ declare module 'aurelia-http-client' {
*/
export class HttpClient {

/**
* Indicates whether or not the client is in the process of requesting resources.
*/
isRequesting: boolean;

/**
* Creates an instance of HttpClient.
*/
Expand Down
8 changes: 6 additions & 2 deletions dist/aurelia-http-client.js
Expand Up @@ -173,7 +173,7 @@ export class HttpResponseMessage {
/**
* The status code of the response.
*/
statusCode: string;
statusCode: number;

/**
* The raw response.
Expand Down Expand Up @@ -1081,6 +1081,11 @@ function trackRequestEnd(client: HttpClient, processor: RequestMessageProcessor)
* The main HTTP client object.
*/
export class HttpClient {
/**
* Indicates whether or not the client is in the process of requesting resources.
*/
isRequesting: boolean = false;

/**
* Creates an instance of HttpClient.
*/
Expand All @@ -1090,7 +1095,6 @@ export class HttpClient {
this.requestProcessorFactories.set(HttpRequestMessage, createHttpRequestMessageProcessor);
this.requestProcessorFactories.set(JSONPRequestMessage, createJSONPRequestMessageProcessor);
this.pendingRequests = [];
this.isRequesting = false;
}

/**
Expand Down
7 changes: 6 additions & 1 deletion dist/commonjs/aurelia-http-client.d.ts
Expand Up @@ -222,7 +222,7 @@ declare module 'aurelia-http-client' {
/**
* The status code of the response.
*/
statusCode: string;
statusCode: number;

/**
* The raw response.
Expand Down Expand Up @@ -596,6 +596,11 @@ declare module 'aurelia-http-client' {
*/
export class HttpClient {

/**
* Indicates whether or not the client is in the process of requesting resources.
*/
isRequesting: boolean;

/**
* Creates an instance of HttpClient.
*/
Expand Down
3 changes: 2 additions & 1 deletion dist/commonjs/aurelia-http-client.js
Expand Up @@ -699,12 +699,13 @@ var HttpClient = (function () {
function HttpClient() {
_classCallCheck(this, HttpClient);

this.isRequesting = false;

this.requestTransformers = [];
this.requestProcessorFactories = new Map();
this.requestProcessorFactories.set(HttpRequestMessage, createHttpRequestMessageProcessor);
this.requestProcessorFactories.set(JSONPRequestMessage, createJSONPRequestMessageProcessor);
this.pendingRequests = [];
this.isRequesting = false;
}

HttpClient.prototype.configure = function configure(fn) {
Expand Down
7 changes: 6 additions & 1 deletion dist/es6/aurelia-http-client.d.ts
Expand Up @@ -222,7 +222,7 @@ declare module 'aurelia-http-client' {
/**
* The status code of the response.
*/
statusCode: string;
statusCode: number;

/**
* The raw response.
Expand Down Expand Up @@ -596,6 +596,11 @@ declare module 'aurelia-http-client' {
*/
export class HttpClient {

/**
* Indicates whether or not the client is in the process of requesting resources.
*/
isRequesting: boolean;

/**
* Creates an instance of HttpClient.
*/
Expand Down
8 changes: 6 additions & 2 deletions dist/es6/aurelia-http-client.js
Expand Up @@ -173,7 +173,7 @@ export class HttpResponseMessage {
/**
* The status code of the response.
*/
statusCode: string;
statusCode: number;

/**
* The raw response.
Expand Down Expand Up @@ -1081,6 +1081,11 @@ function trackRequestEnd(client: HttpClient, processor: RequestMessageProcessor)
* The main HTTP client object.
*/
export class HttpClient {
/**
* Indicates whether or not the client is in the process of requesting resources.
*/
isRequesting: boolean = false;

/**
* Creates an instance of HttpClient.
*/
Expand All @@ -1090,7 +1095,6 @@ export class HttpClient {
this.requestProcessorFactories.set(HttpRequestMessage, createHttpRequestMessageProcessor);
this.requestProcessorFactories.set(JSONPRequestMessage, createJSONPRequestMessageProcessor);
this.pendingRequests = [];
this.isRequesting = false;
}

/**
Expand Down
7 changes: 6 additions & 1 deletion dist/system/aurelia-http-client.d.ts
Expand Up @@ -222,7 +222,7 @@ declare module 'aurelia-http-client' {
/**
* The status code of the response.
*/
statusCode: string;
statusCode: number;

/**
* The raw response.
Expand Down Expand Up @@ -596,6 +596,11 @@ declare module 'aurelia-http-client' {
*/
export class HttpClient {

/**
* Indicates whether or not the client is in the process of requesting resources.
*/
isRequesting: boolean;

/**
* Creates an instance of HttpClient.
*/
Expand Down
3 changes: 2 additions & 1 deletion dist/system/aurelia-http-client.js
Expand Up @@ -712,12 +712,13 @@ System.register(['core-js', 'aurelia-path', 'aurelia-pal'], function (_export) {
function HttpClient() {
_classCallCheck(this, HttpClient);

this.isRequesting = false;

this.requestTransformers = [];
this.requestProcessorFactories = new Map();
this.requestProcessorFactories.set(HttpRequestMessage, createHttpRequestMessageProcessor);
this.requestProcessorFactories.set(JSONPRequestMessage, createJSONPRequestMessageProcessor);
this.pendingRequests = [];
this.isRequesting = false;
}

HttpClient.prototype.configure = function configure(fn) {
Expand Down
8 changes: 8 additions & 0 deletions doc/CHANGELOG.md
@@ -1,3 +1,11 @@
### 1.0.0-beta.1.1.1 (2016-02-08)


#### Bug Fixes

* **http-response:** status code type ([2afe081e](http://github.com/aurelia/http-client/commit/2afe081e36bfbaedab1541291cfd4ea492b69ca8), closes [#114](http://github.com/aurelia/http-client/issues/114))


## 1.0.0-beta.1.1.0 (2016-01-29)


Expand Down

0 comments on commit b9d752d

Please sign in to comment.