Skip to content

Commit a398ff6

Browse files
authored
Merge branch 'master' into chore/upgrade-superagent-v9
2 parents 89c6829 + c93a683 commit a398ff6

36 files changed

+1969
-600
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @auth0/dx-sdks-engineer
1+
* @auth0/project-dx-sdks-engineer-codeowner

.github/workflows/browserstack.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Browserstack
33
on:
44
merge_group:
55
workflow_dispatch:
6-
pull_request_target:
6+
pull_request:
77
types:
88
- opened
99
- synchronize
@@ -23,15 +23,8 @@ env:
2323
CACHE_KEY: '${{ github.event.pull_request.head.sha || github.ref }}-${{ github.run_id }}-${{ github.run_attempt }}'
2424

2525
jobs:
26-
authorize:
27-
name: Authorize
28-
environment: ${{ github.actor != 'dependabot[bot]' && github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != github.repository && 'external' || 'internal' }}
29-
runs-on: ubuntu-latest
30-
steps:
31-
- run: true
3226

3327
build:
34-
needs: authorize # Require approval before running on forked pull requests
3528

3629
name: Build Package
3730
runs-on: ubuntu-latest

.github/workflows/semgrep.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Semgrep
22

33
on:
44
merge_group:
5-
pull_request_target:
5+
pull_request:
66
types:
77
- opened
88
- synchronize
@@ -20,15 +20,8 @@ concurrency:
2020
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
2121

2222
jobs:
23-
authorize:
24-
name: Authorize
25-
environment: ${{ github.actor != 'dependabot[bot]' && github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != github.repository && 'external' || 'internal' }}
26-
runs-on: ubuntu-latest
27-
steps:
28-
- run: true
2923

3024
run:
31-
needs: authorize # Require approval before running on forked pull requests
3225

3326
name: Check for Vulnerabilities
3427
runs-on: ubuntu-latest

.github/workflows/snyk.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Snyk
33
on:
44
merge_group:
55
workflow_dispatch:
6-
pull_request_target:
6+
pull_request:
77
types:
88
- opened
99
- synchronize
@@ -21,15 +21,8 @@ concurrency:
2121
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
2222

2323
jobs:
24-
authorize:
25-
name: Authorize
26-
environment: ${{ github.actor != 'dependabot[bot]' && github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != github.repository && 'external' || 'internal' }}
27-
runs-on: ubuntu-latest
28-
steps:
29-
- run: true
3024

3125
check:
32-
needs: authorize
3326

3427
name: Check for Vulnerabilities
3528
runs-on: ubuntu-latest

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v9.26.1
1+
v9.28.0

CHANGELOG.md

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

3+
## [v9.28.0](https://github.com/auth0/auth0.js/tree/v9.28.0) (2024-10-21)
4+
[Full Changelog](https://github.com/auth0/auth0.js/compare/v9.27.0...v9.28.0)
5+
6+
**Fixed**
7+
- Ensure done callback is correctly fired on captcha reload [\#1469](https://github.com/auth0/auth0.js/pull/1469) ([srijonsaha](https://github.com/srijonsaha))
8+
9+
## [v9.27.0](https://github.com/auth0/auth0.js/tree/v9.27.0) (2024-09-27)
10+
[Full Changelog](https://github.com/auth0/auth0.js/compare/v9.26.1...v9.27.0)
11+
12+
**Added**
13+
- [IAMRISK-3539] Add challenge endpoint for signup [\#1467](https://github.com/auth0/auth0.js/pull/1467) ([TSLarson](https://github.com/TSLarson))
14+
15+
**Changed**
16+
- Update codeowner file with new GitHub team name [\#1452](https://github.com/auth0/auth0.js/pull/1452) ([stevenwong-okta](https://github.com/stevenwong-okta))
17+
318
## [v9.26.1](https://github.com/auth0/auth0.js/tree/v9.26.1) (2024-05-20)
419
[Full Changelog](https://github.com/auth0/auth0.js/compare/v9.26.0...v9.26.1)
520

README.md

Lines changed: 1 addition & 1 deletion
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.26.1/auth0.min.js"></script>
26+
<script src="https://cdn.auth0.com/js/auth0/9.28.0/auth0.min.js"></script>
2727
```
2828

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

0 commit comments

Comments
 (0)