Skip to content

Commit 1a25541

Browse files
committed
Merge remote-tracking branch 'origin' into requested_expiry
2 parents 7a5f91e + 5b52e65 commit 1a25541

File tree

3,942 files changed

+133376
-3481614
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,942 files changed

+133376
-3481614
lines changed

.c8rc

Lines changed: 0 additions & 7 deletions
This file was deleted.

.editorconfig

Lines changed: 0 additions & 17 deletions
This file was deleted.

.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.eslintrc.cjs

Lines changed: 0 additions & 29 deletions
This file was deleted.

.fernignore

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Specify files that shouldn't be modified by Fern
2+
3+
legacy/
4+
src/management/index.ts
5+
src/management/wrapper
6+
src/auth
7+
src/lib
8+
src/userinfo
9+
src/.eslintrc.cjs
10+
src/index.ts
11+
src/utils.ts
12+
src/version.ts
13+
jest.config.mjs
14+
src/management/tests/unit/client-headers/telemetry.test.ts
15+
README.md
16+
src/management/request-options.ts
17+
src/management/tests/unit/custom-domain-whitelist.test.ts
18+
src/management/tests/unit/management-client-custom-domain.test.ts
19+
src/management/tests/unit/request-options.test.ts
20+
tests/
21+
v5_MIGRATION_GUIDE.md
22+
CHANGELOG.md
23+
.version
24+
25+
# @todo auto-delete .mock folder
26+
27+
.mock
28+
tsconfig.base.json
29+
tsconfig.cjs.json
30+
tsconfig.esm.json
31+
typedoc.json
32+
jest.config.mjs
33+
34+
.github/
35+
.gitignore
36+
37+
# Coverage files
38+
39+
codecov.yml
40+
41+
# eslint
42+
43+
eslint.config.mjs
44+
45+
.husky/
46+
47+
.prettierignore
Lines changed: 57 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,67 @@
11
name: 🐞 Report a bug
22
description: Have you found a bug or issue? Create a bug report for this library
3-
labels: ['bug']
3+
labels: ["bug"]
44

55
body:
6-
- type: markdown
7-
attributes:
8-
value: |
9-
**Please do not report security vulnerabilities here**. The [Responsible Disclosure Program](https://auth0.com/responsible-disclosure-policy) details the procedure for disclosing security issues.
6+
- type: markdown
7+
attributes:
8+
value: |
9+
**Please do not report security vulnerabilities here**. The [Responsible Disclosure Program](https://auth0.com/responsible-disclosure-policy) details the procedure for disclosing security issues.
1010
11-
- type: checkboxes
12-
id: checklist
13-
attributes:
14-
label: Checklist
15-
options:
16-
- label: I have looked into the [Readme](https://github.com/auth0/node-auth0#readme), [Examples](https://github.com/auth0/node-auth0/blob/master/EXAMPLES.md), and [FAQ](https://github.com/auth0/node-auth0/blob/master/FAQ.md) and have not found a suitable solution or answer.
17-
required: true
18-
- label: I have looked into the [API documentation](https://auth0.github.io/node-auth0/) and have not found a suitable solution or answer.
19-
required: true
20-
- label: I have searched the [issues](https://github.com/auth0/node-auth0/issues) and have not found a suitable solution or answer.
21-
required: true
22-
- label: I have searched the [Auth0 Community](https://community.auth0.com) forums and have not found a suitable solution or answer.
23-
required: true
24-
- label: I agree to the terms within the [Auth0 Code of Conduct](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md).
25-
required: true
11+
- type: checkboxes
12+
id: checklist
13+
attributes:
14+
label: Checklist
15+
options:
16+
- label: I have looked into the [Readme](https://github.com/auth0/node-auth0#readme), [Examples](https://github.com/auth0/node-auth0/blob/master/EXAMPLES.md), and [FAQ](https://github.com/auth0/node-auth0/blob/master/FAQ.md) and have not found a suitable solution or answer.
17+
required: true
18+
- label: I have looked into the [API documentation](https://auth0.github.io/node-auth0/) and have not found a suitable solution or answer.
19+
required: true
20+
- label: I have searched the [issues](https://github.com/auth0/node-auth0/issues) and have not found a suitable solution or answer.
21+
required: true
22+
- label: I have searched the [Auth0 Community](https://community.auth0.com) forums and have not found a suitable solution or answer.
23+
required: true
24+
- label: I agree to the terms within the [Auth0 Code of Conduct](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md).
25+
required: true
2626

27-
- type: textarea
28-
id: description
29-
attributes:
30-
label: Description
31-
description: Provide a clear and concise description of the issue, including what you expected to happen.
32-
validations:
33-
required: true
27+
- type: textarea
28+
id: description
29+
attributes:
30+
label: Description
31+
description: Provide a clear and concise description of the issue, including what you expected to happen.
32+
validations:
33+
required: true
3434

35-
- type: textarea
36-
id: reproduction
37-
attributes:
38-
label: Reproduction
39-
description: Detail the steps taken to reproduce this error, and whether this issue can be reproduced consistently or if it is intermittent.
40-
placeholder: |
41-
1. Step 1...
42-
2. Step 2...
43-
3. ...
44-
validations:
45-
required: true
35+
- type: textarea
36+
id: reproduction
37+
attributes:
38+
label: Reproduction
39+
description: Detail the steps taken to reproduce this error, and whether this issue can be reproduced consistently or if it is intermittent.
40+
placeholder: |
41+
1. Step 1...
42+
2. Step 2...
43+
3. ...
44+
validations:
45+
required: true
4646

47-
- type: textarea
48-
id: additional-context
49-
attributes:
50-
label: Additional context
51-
description: Other libraries that might be involved, or any other relevant information you think would be useful.
52-
validations:
53-
required: false
47+
- type: textarea
48+
id: additional-context
49+
attributes:
50+
label: Additional context
51+
description: Other libraries that might be involved, or any other relevant information you think would be useful.
52+
validations:
53+
required: false
5454

55-
- type: input
56-
id: environment-version
57-
attributes:
58-
label: node-auth0 version
59-
validations:
60-
required: true
55+
- type: input
56+
id: environment-version
57+
attributes:
58+
label: node-auth0 version
59+
validations:
60+
required: true
6161

62-
- type: input
63-
id: environment-nodejs-version
64-
attributes:
65-
label: Node.js version
66-
validations:
67-
required: true
62+
- type: input
63+
id: environment-nodejs-version
64+
attributes:
65+
label: Node.js version
66+
validations:
67+
required: true
Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,53 @@
11
name: 🧩 Feature request
22
description: Suggest an idea or a feature for this library
3-
labels: ['feature request']
3+
labels: ["feature request"]
44

55
body:
6-
- type: checkboxes
7-
id: checklist
8-
attributes:
9-
label: Checklist
10-
options:
11-
- label: I have looked into the [Readme](https://github.com/auth0/node-auth0#readme), [Examples](https://github.com/auth0/node-auth0/blob/master/EXAMPLES.md), and [FAQ](https://github.com/auth0/node-auth0/blob/master/FAQ.md) and have not found a suitable solution or answer.
12-
required: true
13-
- label: I have looked into the [API documentation](https://auth0.github.io/node-auth0/) and have not found a suitable solution or answer.
14-
required: true
15-
- label: I have searched the [issues](https://github.com/auth0/node-auth0/issues) and have not found a suitable solution or answer.
16-
required: true
17-
- label: I have searched the [Auth0 Community](https://community.auth0.com) forums and have not found a suitable solution or answer.
18-
required: true
19-
- label: I agree to the terms within the [Auth0 Code of Conduct](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md).
20-
required: true
6+
- type: checkboxes
7+
id: checklist
8+
attributes:
9+
label: Checklist
10+
options:
11+
- label: I have looked into the [Readme](https://github.com/auth0/node-auth0#readme), [Examples](https://github.com/auth0/node-auth0/blob/master/EXAMPLES.md), and [FAQ](https://github.com/auth0/node-auth0/blob/master/FAQ.md) and have not found a suitable solution or answer.
12+
required: true
13+
- label: I have looked into the [API documentation](https://auth0.github.io/node-auth0/) and have not found a suitable solution or answer.
14+
required: true
15+
- label: I have searched the [issues](https://github.com/auth0/node-auth0/issues) and have not found a suitable solution or answer.
16+
required: true
17+
- label: I have searched the [Auth0 Community](https://community.auth0.com) forums and have not found a suitable solution or answer.
18+
required: true
19+
- label: I agree to the terms within the [Auth0 Code of Conduct](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md).
20+
required: true
2121

22-
- type: textarea
23-
id: description
24-
attributes:
25-
label: Describe the problem you'd like to have solved
26-
description: A clear and concise description of what the problem is.
27-
placeholder: I'm always frustrated when...
28-
validations:
29-
required: true
22+
- type: textarea
23+
id: description
24+
attributes:
25+
label: Describe the problem you'd like to have solved
26+
description: A clear and concise description of what the problem is.
27+
placeholder: I'm always frustrated when...
28+
validations:
29+
required: true
3030

31-
- type: textarea
32-
id: ideal-solution
33-
attributes:
34-
label: Describe the ideal solution
35-
description: A clear and concise description of what you want to happen.
36-
validations:
37-
required: true
31+
- type: textarea
32+
id: ideal-solution
33+
attributes:
34+
label: Describe the ideal solution
35+
description: A clear and concise description of what you want to happen.
36+
validations:
37+
required: true
3838

39-
- type: textarea
40-
id: alternatives-and-workarounds
41-
attributes:
42-
label: Alternatives and current workarounds
43-
description: A clear and concise description of any alternatives you've considered or any workarounds that are currently in place.
44-
validations:
45-
required: false
39+
- type: textarea
40+
id: alternatives-and-workarounds
41+
attributes:
42+
label: Alternatives and current workarounds
43+
description: A clear and concise description of any alternatives you've considered or any workarounds that are currently in place.
44+
validations:
45+
required: false
4646

47-
- type: textarea
48-
id: additional-context
49-
attributes:
50-
label: Additional context
51-
description: Add any other context or screenshots about the feature request here.
52-
validations:
53-
required: false
47+
- type: textarea
48+
id: additional-context
49+
attributes:
50+
label: Additional context
51+
description: Add any other context or screenshots about the feature request here.
52+
validations:
53+
required: false

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
blank_issues_enabled: false
22
contact_links:
3-
- name: Auth0 Community
4-
url: https://community.auth0.com
5-
about: Discuss this SDK in the Auth0 Community forums
6-
- name: Library Documentation
7-
url: https://auth0.github.io/node-auth0/
8-
about: Read the library docs
3+
- name: Auth0 Community
4+
url: https://community.auth0.com
5+
about: Discuss this SDK in the Auth0 Community forums
6+
- name: Library Documentation
7+
url: https://auth0.github.io/node-auth0/
8+
about: Read the library docs

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Please include relevant links supporting this change such as a:
1919

2020
### Testing
2121

22-
Please describe how this can be tested by reviewers. Be specific about anything not tested and reasons why. If this library has unit and/or integration testing, tests should be added for new functionality and existing tests should complete without errors.
22+
Please describe how this can be tested by reviewers. Be specific about anything not tested and reasons why. If this library has unit and/or integration testing, tests should be added for new functionality and existing tests should complete without errors.
2323

2424
- [ ] This change adds unit test coverage
2525
- [ ] This change adds integration test coverage

.github/actions/get-prerelease/action.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,24 @@ name: Return a boolean indicating if the version contains prerelease identifiers
77
#
88

99
inputs:
10-
version:
11-
required: true
10+
version:
11+
required: true
1212

1313
outputs:
14-
prerelease:
15-
value: ${{ steps.get_prerelease.outputs.PRERELEASE }}
14+
prerelease:
15+
value: ${{ steps.get_prerelease.outputs.PRERELEASE }}
1616

1717
runs:
18-
using: composite
18+
using: composite
1919

20-
steps:
21-
- id: get_prerelease
22-
shell: bash
23-
run: |
24-
if [[ "${VERSION}" == *"beta"* || "${VERSION}" == *"alpha"* ]]; then
25-
echo "PRERELEASE=true" >> $GITHUB_OUTPUT
26-
else
27-
echo "PRERELEASE=false" >> $GITHUB_OUTPUT
28-
fi
29-
env:
30-
VERSION: ${{ inputs.version }}
20+
steps:
21+
- id: get_prerelease
22+
shell: bash
23+
run: |
24+
if [[ "${VERSION}" == *"beta"* || "${VERSION}" == *"alpha"* ]]; then
25+
echo "PRERELEASE=true" >> $GITHUB_OUTPUT
26+
else
27+
echo "PRERELEASE=false" >> $GITHUB_OUTPUT
28+
fi
29+
env:
30+
VERSION: ${{ inputs.version }}

0 commit comments

Comments
 (0)