Skip to content

Commit

Permalink
Release v2.13.0 (#452)
Browse files Browse the repository at this point in the history
  • Loading branch information
poovamraj authored Jan 27, 2022
1 parent 65923ac commit 99892da
Show file tree
Hide file tree
Showing 14 changed files with 31 additions and 18 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## [v2.13.0](https://github.com/auth0/react-native-auth0/tree/v2.13.0) (2022-01-27)

[Full Changelog](https://github.com/auth0/react-native-auth0/compare/v2.12.0...v2.13.0)

**Added**

- #409 Implement timeout support to networking Client [\#423](https://github.com/auth0/react-native-auth0/pull/423) ([mnylen](https://github.com/mnylen))

**Fixed**

- Fix android java doc task [\#450](https://github.com/auth0/react-native-auth0/pull/450) ([poovamraj](https://github.com/poovamraj))

## [v2.12.0](https://github.com/auth0/react-native-auth0/tree/v2.12.0) (2022-01-07)

[Full Changelog](https://github.com/auth0/react-native-auth0/compare/v2.11.0...v2.12.0)
Expand Down
2 changes: 1 addition & 1 deletion docs/Auth.html
Original file line number Diff line number Diff line change
Expand Up @@ -2607,7 +2607,7 @@ <h5>Returns:</h5>

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on
Fri Jan 07 2022 16:42:51 GMT+0100 (Central European Standard Time) using
Thu Jan 27 2022 16:10:06 GMT+0100 (Central European Standard Time) using
the Minami theme.
</footer>

Expand Down
4 changes: 2 additions & 2 deletions docs/Auth0.html
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ <h4 class="name" id="Auth0">
<ul class="dummy">
<li>
<a href="index.js.html">index.js</a>,
<a href="index.js.html#line5">line 5</a>
<a href="index.js.html#line6">line 6</a>
</li>
</ul>
</dd>
Expand All @@ -258,7 +258,7 @@ <h3 class="subsection-title">Classes</h3>

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on
Fri Jan 07 2022 16:42:51 GMT+0100 (Central European Standard Time) using
Thu Jan 27 2022 16:10:06 GMT+0100 (Central European Standard Time) using
the Minami theme.
</footer>

Expand Down
2 changes: 1 addition & 1 deletion docs/Auth0.module.exports.html
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ <h5>Parameters:</h5>

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on
Fri Jan 07 2022 16:42:51 GMT+0100 (Central European Standard Time) using
Thu Jan 27 2022 16:10:06 GMT+0100 (Central European Standard Time) using
the Minami theme.
</footer>

Expand Down
2 changes: 1 addition & 1 deletion docs/Users.html
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ <h5>Returns:</h5>

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on
Fri Jan 07 2022 16:42:51 GMT+0100 (Central European Standard Time) using
Thu Jan 27 2022 16:10:06 GMT+0100 (Central European Standard Time) using
the Minami theme.
</footer>

Expand Down
2 changes: 1 addition & 1 deletion docs/WebAuth.html
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ <h5>Returns:</h5>

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on
Fri Jan 07 2022 16:42:51 GMT+0100 (Central European Standard Time) using
Thu Jan 27 2022 16:10:06 GMT+0100 (Central European Standard Time) using
the Minami theme.
</footer>

Expand Down
2 changes: 1 addition & 1 deletion docs/global.html
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ <h5>Returns:</h5>

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on
Fri Jan 07 2022 16:42:51 GMT+0100 (Central European Standard Time) using
Thu Jan 27 2022 16:10:06 GMT+0100 (Central European Standard Time) using
the Minami theme.
</footer>

Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1066,7 +1066,7 @@ <h2>License</h2>

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on
Fri Jan 07 2022 16:42:51 GMT+0100 (Central European Standard Time) using
Thu Jan 27 2022 16:10:06 GMT+0100 (Central European Standard Time) using
the Minami theme.
</footer>

Expand Down
11 changes: 6 additions & 5 deletions docs/index.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ <h1 class="page-title">index.js</h1>
><code>import Auth from './src/auth';
import Users from './src/management/users';
import WebAuth from './src/webauth';
export {TimeoutError} from './src/utils/fetchWithTimeout';

/**
* Auth0 for React Native client
Expand All @@ -224,7 +225,6 @@ <h1 class="page-title">index.js</h1>
* @class Auth0
*/
export default class Auth0 {

/**
* Creates an instance of Auth0.
* @param {Object} options your Auth0 application information
Expand All @@ -234,7 +234,7 @@ <h1 class="page-title">index.js</h1>
* @memberof Auth0
*/
constructor(options = {}) {
const { domain, clientId, ...extras } = options;
const {domain, clientId, ...extras} = options;
this.auth = new Auth({baseUrl: domain, clientId, ...extras});
this.webAuth = new WebAuth(this.auth);
this.options = options;
Expand All @@ -246,10 +246,11 @@ <h1 class="page-title">index.js</h1>
* @return {Users}
*/
users(token) {
const { domain, clientId, ...extras } = this.options;
const {domain, clientId, ...extras} = this.options;
return new Users({baseUrl: domain, clientId, ...extras, token});
}
};</code></pre>
}
</code></pre>
</article>
</section>
</div>
Expand All @@ -258,7 +259,7 @@ <h1 class="page-title">index.js</h1>

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on
Fri Jan 07 2022 16:42:51 GMT+0100 (Central European Standard Time) using
Thu Jan 27 2022 16:10:06 GMT+0100 (Central European Standard Time) using
the Minami theme.
</footer>

Expand Down
2 changes: 1 addition & 1 deletion docs/src_auth_index.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,7 @@ <h1 class="page-title">src/auth/index.js</h1>

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on
Fri Jan 07 2022 16:42:51 GMT+0100 (Central European Standard Time) using
Thu Jan 27 2022 16:10:06 GMT+0100 (Central European Standard Time) using
the Minami theme.
</footer>

Expand Down
2 changes: 1 addition & 1 deletion docs/src_management_users.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ <h1 class="page-title">src/management/users.js</h1>

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on
Fri Jan 07 2022 16:42:51 GMT+0100 (Central European Standard Time) using
Thu Jan 27 2022 16:10:06 GMT+0100 (Central European Standard Time) using
the Minami theme.
</footer>

Expand Down
2 changes: 1 addition & 1 deletion docs/src_webauth_index.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ <h1 class="page-title">src/webauth/index.js</h1>

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on
Fri Jan 07 2022 16:42:51 GMT+0100 (Central European Standard Time) using
Thu Jan 27 2022 16:10:06 GMT+0100 (Central European Standard Time) using
the Minami theme.
</footer>

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-auth0",
"title": "React Native Auth0",
"version": "2.12.0",
"version": "2.13.0",
"description": "React Native toolkit for Auth0 API",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/networking/telemetry.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = {name: 'react-native-auth0', version: '2.12.0'};
module.exports = {name: 'react-native-auth0', version: '2.13.0'};

0 comments on commit 99892da

Please sign in to comment.