Skip to content

Commit 99892da

Browse files
authored
Release v2.13.0 (#452)
1 parent 65923ac commit 99892da

14 files changed

+31
-18
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Change Log
22

3+
## [v2.13.0](https://github.com/auth0/react-native-auth0/tree/v2.13.0) (2022-01-27)
4+
5+
[Full Changelog](https://github.com/auth0/react-native-auth0/compare/v2.12.0...v2.13.0)
6+
7+
**Added**
8+
9+
- #409 Implement timeout support to networking Client [\#423](https://github.com/auth0/react-native-auth0/pull/423) ([mnylen](https://github.com/mnylen))
10+
11+
**Fixed**
12+
13+
- Fix android java doc task [\#450](https://github.com/auth0/react-native-auth0/pull/450) ([poovamraj](https://github.com/poovamraj))
14+
315
## [v2.12.0](https://github.com/auth0/react-native-auth0/tree/v2.12.0) (2022-01-07)
416

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

docs/Auth.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2607,7 +2607,7 @@ <h5>Returns:</h5>
26072607

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

docs/Auth0.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ <h4 class="name" id="Auth0">
236236
<ul class="dummy">
237237
<li>
238238
<a href="index.js.html">index.js</a>,
239-
<a href="index.js.html#line5">line 5</a>
239+
<a href="index.js.html#line6">line 6</a>
240240
</li>
241241
</ul>
242242
</dd>
@@ -258,7 +258,7 @@ <h3 class="subsection-title">Classes</h3>
258258

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

docs/Auth0.module.exports.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ <h5>Parameters:</h5>
323323

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

docs/Users.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ <h5>Returns:</h5>
491491

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

docs/WebAuth.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ <h5>Returns:</h5>
788788

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

docs/global.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ <h5>Returns:</h5>
297297

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

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,7 @@ <h2>License</h2>
10661066

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

docs/index.js.html

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ <h1 class="page-title">index.js</h1>
216216
><code>import Auth from './src/auth';
217217
import Users from './src/management/users';
218218
import WebAuth from './src/webauth';
219+
export {TimeoutError} from './src/utils/fetchWithTimeout';
219220

220221
/**
221222
* Auth0 for React Native client
@@ -224,7 +225,6 @@ <h1 class="page-title">index.js</h1>
224225
* @class Auth0
225226
*/
226227
export default class Auth0 {
227-
228228
/**
229229
* Creates an instance of Auth0.
230230
* @param {Object} options your Auth0 application information
@@ -234,7 +234,7 @@ <h1 class="page-title">index.js</h1>
234234
* @memberof Auth0
235235
*/
236236
constructor(options = {}) {
237-
const { domain, clientId, ...extras } = options;
237+
const {domain, clientId, ...extras} = options;
238238
this.auth = new Auth({baseUrl: domain, clientId, ...extras});
239239
this.webAuth = new WebAuth(this.auth);
240240
this.options = options;
@@ -246,10 +246,11 @@ <h1 class="page-title">index.js</h1>
246246
* @return {Users}
247247
*/
248248
users(token) {
249-
const { domain, clientId, ...extras } = this.options;
249+
const {domain, clientId, ...extras} = this.options;
250250
return new Users({baseUrl: domain, clientId, ...extras, token});
251251
}
252-
};</code></pre>
252+
}
253+
</code></pre>
253254
</article>
254255
</section>
255256
</div>
@@ -258,7 +259,7 @@ <h1 class="page-title">index.js</h1>
258259

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

docs/src_auth_index.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -863,7 +863,7 @@ <h1 class="page-title">src/auth/index.js</h1>
863863

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

0 commit comments

Comments
 (0)