Skip to content

Commit b1c291e

Browse files
author
Steve Hobbs
authored
Release v9.16.0 (#1172)
1 parent 46aa758 commit b1c291e

19 files changed

+548
-73
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11

2+
## [v9.16.0](https://github.com/auth0/auth0.js/tree/v9.16.0) (2021-04-26)
3+
[Full Changelog](https://github.com/auth0/auth0.js/compare/v9.15.0...v9.16.0)
4+
5+
**Added**
6+
- Add Recaptcha Enterprise support [\#1169](https://github.com/auth0/auth0.js/pull/1169) ([akmjenkins](https://github.com/akmjenkins))
7+
8+
**Fixed**
9+
- Document optional params to WebAuth.signup [\#1168](https://github.com/auth0/auth0.js/pull/1168) ([zog](https://github.com/zog))
10+
11+
**Security**
12+
- [Security] Bump y18n from 4.0.0 to 4.0.1 [\#1162](https://github.com/auth0/auth0.js/pull/1162) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
13+
214
## [v9.15.0](https://github.com/auth0/auth0.js/tree/v9.15.0) (2021-03-19)
315
[Full Changelog](https://github.com/auth0/auth0.js/compare/v9.14.3...v9.15.0)
416

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ From CDN:
3434

3535
```html
3636
<!-- Latest patch release -->
37-
<script src="https://cdn.auth0.com/js/auth0/9.15.0/auth0.min.js"></script>
37+
<script src="https://cdn.auth0.com/js/auth0/9.16.0/auth0.min.js"></script>
3838
```
3939

4040
From [npm](https://npmjs.org):

docs/Authentication.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ <h5>Parameters:</h5>
499499
<br class="clear">
500500

501501
<footer>
502-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.3</a> on Thu Apr 08 2021 12:21:33 GMT+0100 (British Summer Time) using the Minami theme.
502+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.3</a> on Mon Apr 26 2021 13:39:00 GMT+0100 (British Summer Time) using the Minami theme.
503503
</footer>
504504

505505
<script>prettyPrint();</script>

docs/Management.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ <h5>Parameters:</h5>
294294
<br class="clear">
295295

296296
<footer>
297-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.3</a> on Thu Apr 08 2021 12:21:33 GMT+0100 (British Summer Time) using the Minami theme.
297+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.3</a> on Mon Apr 26 2021 13:39:00 GMT+0100 (British Summer Time) using the Minami theme.
298298
</footer>
299299

300300
<script>prettyPrint();</script>

docs/WebAuth.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ <h4 class="name" id="renderCaptcha"><span class="type-signature"></span>renderCa
751751

752752
<dt class="tag-source">Source:</dt>
753753
<dd class="tag-source"><ul class="dummy"><li>
754-
<a href="web-auth_index.js.html">web-auth/index.js</a>, <a href="web-auth_index.js.html#line1027">line 1027</a>
754+
<a href="web-auth_index.js.html">web-auth/index.js</a>, <a href="web-auth_index.js.html#line1032">line 1032</a>
755755
</li></ul></dd>
756756

757757

@@ -1145,7 +1145,7 @@ <h5>Parameters:</h5>
11451145
<br class="clear">
11461146

11471147
<footer>
1148-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.3</a> on Thu Apr 08 2021 12:21:33 GMT+0100 (British Summer Time) using the Minami theme.
1148+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.3</a> on Mon Apr 26 2021 13:39:00 GMT+0100 (British Summer Time) using the Minami theme.
11491149
</footer>
11501150

11511151
<script>prettyPrint();</script>

docs/authentication_db-connection.js.html

+6-1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ <h1 class="page-title">authentication/db-connection.js</h1>
6666
* @param {String} options.email user email address
6767
* @param {String} options.password user password
6868
* @param {String} [options.username] user desired username. Required if you use a database connection and you have enabled `Requires Username`
69+
* @param {String} [options.given_name] The user's given name(s).
70+
* @param {String} [options.family_name] The user's family name(s).
71+
* @param {String} [options.name] The user's full name.
72+
* @param {String} [options.nickname] The user's nickname.
73+
* @param {String} [options.picture] A URI pointing to the user's picture.
6974
* @param {String} options.connection name of the connection where the user will be created
7075
* @param {Object} [options.user_metadata] additional signup attributes used for creating the user. Will be stored in `user_metadata`
7176
* @param {signUpCallback} cb
@@ -167,7 +172,7 @@ <h1 class="page-title">authentication/db-connection.js</h1>
167172
<br class="clear">
168173

169174
<footer>
170-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.3</a> on Thu Apr 08 2021 12:21:33 GMT+0100 (British Summer Time) using the Minami theme.
175+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.3</a> on Mon Apr 26 2021 13:39:00 GMT+0100 (British Summer Time) using the Minami theme.
171176
</footer>
172177

173178
<script>prettyPrint();</script>

docs/authentication_index.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ <h1 class="page-title">authentication/index.js</h1>
688688
<br class="clear">
689689

690690
<footer>
691-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.3</a> on Thu Apr 08 2021 12:21:33 GMT+0100 (British Summer Time) using the Minami theme.
691+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.3</a> on Mon Apr 26 2021 13:39:00 GMT+0100 (British Summer Time) using the Minami theme.
692692
</footer>
693693

694694
<script>prettyPrint();</script>

0 commit comments

Comments
 (0)