Skip to content

Commit cad5786

Browse files
Release v9.24.1 (#1391)
1 parent 74bf482 commit cad5786

27 files changed

+64
-41
lines changed

.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v9.24.0
1+
v9.24.1

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## [v9.24.1](https://github.com/auth0/auth0.js/tree/v9.24.1) (2024-01-04)
4+
[Full Changelog](https://github.com/auth0/auth0.js/compare/v9.24.0...v9.24.1)
5+
6+
**Changed**
7+
- [IAMRISK-3011] Auth0 V2 Captcha failOpen support [\#1382](https://github.com/auth0/auth0.js/pull/1382) ([alexkoumarianos-okta](https://github.com/alexkoumarianos-okta))
8+
39
## [v9.24.0](https://github.com/auth0/auth0.js/tree/v9.24.0) (2023-12-13)
410
[Full Changelog](https://github.com/auth0/auth0.js/compare/v9.23.3...v9.24.0)
511

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ From CDN:
2323

2424
```html
2525
<!-- Latest patch release -->
26-
<script src="https://cdn.auth0.com/js/auth0/9.24.0/auth0.min.js"></script>
26+
<script src="https://cdn.auth0.com/js/auth0/9.24.1/auth0.min.js"></script>
2727
```
2828

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

dist/auth0.js

+22-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
2-
* auth0-js v9.24.0
2+
* auth0-js v9.24.1
33
* Author: Auth0
4-
* Date: 2023-12-13
4+
* Date: 2024-01-04
55
* License: MIT
66
*/
77

@@ -4929,7 +4929,7 @@
49294929
decode: decode$1
49304930
};
49314931

4932-
var version = { raw: '9.24.0' };
4932+
var version = { raw: '9.24.1' };
49334933

49344934
var toString = Object.prototype.toString;
49354935

@@ -7763,7 +7763,10 @@
77637763
opts.clientSubdomain,
77647764
opts.siteKey
77657765
);
7766-
if (opts.provider === ARKOSE_PROVIDER) {
7766+
if (
7767+
opts.provider === ARKOSE_PROVIDER ||
7768+
opts.provider === AUTH0_V2_CAPTCHA_PROVIDER
7769+
) {
77677770
var retryCount = 0;
77687771
attributes['data-callback'] = callbackName;
77697772
attributes['onerror'] = function () {
@@ -7774,7 +7777,7 @@
77747777
return;
77757778
}
77767779
removeScript(scriptSrc);
7777-
// Optimzation to tell auth0 to fail open if Arkose is configured to fail open
7780+
// Optimzation to tell auth0 to fail open if Arkose/auth0_v2 is configured to fail open
77787781
setValue('BYPASS_CAPTCHA');
77797782
};
77807783
window[callbackName] = function (arkose) {
@@ -7901,9 +7904,23 @@
79017904
},
79027905
sitekey: challenge.siteKey
79037906
};
7907+
79047908
if (challenge.provider === AUTH0_V2_CAPTCHA_PROVIDER) {
7909+
retryCount = 0;
79057910
renderParams.language = options.lang;
79067911
renderParams.theme = 'light';
7912+
renderParams.retry = 'never';
7913+
renderParams['response-field'] = false;
7914+
renderParams['error-callback'] = function () {
7915+
if (retryCount < MAX_RETRY) {
7916+
setValue();
7917+
globalForCaptchaProvider(challenge.provider).reset(widgetId);
7918+
retryCount++;
7919+
} else {
7920+
setValue('BYPASS_CAPTCHA');
7921+
}
7922+
return true;
7923+
};
79077924
}
79087925
widgetId = global.render(captchaDiv, renderParams);
79097926
element.setAttribute('data-wid', widgetId);

dist/auth0.min.esm.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/auth0.min.esm.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/auth0.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/auth0.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cordova-auth0-plugin.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
2-
* auth0-js v9.24.0
2+
* auth0-js v9.24.1
33
* Author: Auth0
4-
* Date: 2023-12-13
4+
* Date: 2024-01-04
55
* License: MIT
66
*/
77

@@ -11,7 +11,7 @@
1111
(global = global || self, global.CordovaAuth0Plugin = factory());
1212
}(this, (function () { 'use strict';
1313

14-
var version = { raw: '9.24.0' };
14+
var version = { raw: '9.24.1' };
1515

1616
var toString = Object.prototype.toString;
1717

dist/cordova-auth0-plugin.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cordova-auth0-plugin.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/Authentication.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4202,7 +4202,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Authentic
42024202
<br class="clear">
42034203

42044204
<footer>
4205-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Wed Dec 13 2023 15:55:02 GMT+0100 (Central European Standard Time)
4205+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Thu Jan 04 2024 11:44:32 GMT+0100 (Central European Standard Time)
42064206
</footer>
42074207

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

docs/Management.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1205,7 +1205,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Authentic
12051205
<br class="clear">
12061206

12071207
<footer>
1208-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Wed Dec 13 2023 15:55:02 GMT+0100 (Central European Standard Time)
1208+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Thu Jan 04 2024 11:44:32 GMT+0100 (Central European Standard Time)
12091209
</footer>
12101210

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

docs/Popup.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1995,7 +1995,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Authentic
19951995
<br class="clear">
19961996

19971997
<footer>
1998-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Wed Dec 13 2023 15:55:02 GMT+0100 (Central European Standard Time)
1998+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Thu Jan 04 2024 11:44:32 GMT+0100 (Central European Standard Time)
19991999
</footer>
20002000

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

docs/Redirect.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Authentic
791791
<br class="clear">
792792

793793
<footer>
794-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Wed Dec 13 2023 15:55:02 GMT+0100 (Central European Standard Time)
794+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Thu Jan 04 2024 11:44:32 GMT+0100 (Central European Standard Time)
795795
</footer>
796796

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

docs/WebAuth.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7350,7 +7350,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Authentic
73507350
<br class="clear">
73517351

73527352
<footer>
7353-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Wed Dec 13 2023 15:55:02 GMT+0100 (Central European Standard Time)
7353+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Thu Jan 04 2024 11:44:32 GMT+0100 (Central European Standard Time)
73547354
</footer>
73557355

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

docs/authentication_index.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Authentic
696696
<br class="clear">
697697

698698
<footer>
699-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Wed Dec 13 2023 15:55:02 GMT+0100 (Central European Standard Time)
699+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Thu Jan 04 2024 11:44:32 GMT+0100 (Central European Standard Time)
700700
</footer>
701701

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

docs/authentication_passwordless-authentication.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Authentic
289289
<br class="clear">
290290

291291
<footer>
292-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Wed Dec 13 2023 15:55:02 GMT+0100 (Central European Standard Time)
292+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Thu Jan 04 2024 11:44:32 GMT+0100 (Central European Standard Time)
293293
</footer>
294294

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

docs/global.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1081,7 +1081,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Authentic
10811081
<br class="clear">
10821082

10831083
<footer>
1084-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Wed Dec 13 2023 15:55:02 GMT+0100 (Central European Standard Time)
1084+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Thu Jan 04 2024 11:44:32 GMT+0100 (Central European Standard Time)
10851085
</footer>
10861086

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

docs/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ <h1 class="page-title">Home</h1>
2626

2727

2828

29-
<h3>auth0-js 9.24.0</h3>
29+
<h3>auth0-js 9.24.1</h3>
3030

3131

3232

@@ -61,7 +61,7 @@ <h2>Getting started</h2>
6161
<h3>Installation</h3>
6262
<p>From CDN:</p>
6363
<pre class="prettyprint source lang-html"><code>&lt;!-- Latest patch release -->
64-
&lt;script src=&quot;https://cdn.auth0.com/js/auth0/9.24.0/auth0.min.js&quot;>&lt;/script>
64+
&lt;script src=&quot;https://cdn.auth0.com/js/auth0/9.24.1/auth0.min.js&quot;>&lt;/script>
6565
</code></pre>
6666
<p>From <a href="https://npmjs.org">npm</a>:</p>
6767
<pre class="prettyprint source lang-sh"><code>npm install auth0-js
@@ -167,7 +167,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Authentic
167167
<br class="clear">
168168

169169
<footer>
170-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Wed Dec 13 2023 15:55:02 GMT+0100 (Central European Standard Time)
170+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Thu Jan 04 2024 11:44:32 GMT+0100 (Central European Standard Time)
171171
</footer>
172172

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

docs/management_index.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Authentic
217217
<br class="clear">
218218

219219
<footer>
220-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Wed Dec 13 2023 15:55:02 GMT+0100 (Central European Standard Time)
220+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Thu Jan 04 2024 11:44:32 GMT+0100 (Central European Standard Time)
221221
</footer>
222222

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

docs/web-auth_index.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1235,7 +1235,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Authentic
12351235
<br class="clear">
12361236

12371237
<footer>
1238-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Wed Dec 13 2023 15:55:02 GMT+0100 (Central European Standard Time)
1238+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Thu Jan 04 2024 11:44:32 GMT+0100 (Central European Standard Time)
12391239
</footer>
12401240

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

docs/web-auth_popup.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Authentic
374374
<br class="clear">
375375

376376
<footer>
377-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Wed Dec 13 2023 15:55:02 GMT+0100 (Central European Standard Time)
377+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Thu Jan 04 2024 11:44:32 GMT+0100 (Central European Standard Time)
378378
</footer>
379379

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

docs/web-auth_redirect.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Authentic
113113
<br class="clear">
114114

115115
<footer>
116-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Wed Dec 13 2023 15:55:02 GMT+0100 (Central European Standard Time)
116+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.11</a> on Thu Jan 04 2024 11:44:32 GMT+0100 (Central European Standard Time)
117117
</footer>
118118

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

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "auth0-js",
3-
"version": "9.24.0",
3+
"version": "9.24.1",
44
"description": "Auth0 headless browser sdk",
55
"author": "Auth0",
66
"license": "MIT",

src/version.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = { raw: '9.24.0' };
1+
module.exports = { raw: '9.24.1' };

0 commit comments

Comments
 (0)