Skip to content

Commit a378dc9

Browse files
fix: do not forward custom params from query when using PAR
add test for configured params chore: prevent open redirect with returnTo revert pnpm lock chore: configure eslint chore: wire up lint to ci chore: update lint workflow chore: address react version warning chore: cleanup pnpm lock formatting chore: CodeQL fix chore: ensure example use latest version 4.0.1 Release v4.0.1 (#1900) Fixing broken workflow `rl secure` (#1901) Fix: Changing the SDK version in auth-client.ts (#1902) fix: Fixing the action `npm-publish` (#1903) Fix: fixing release workflow (#1904) fix: Fix npm token issue using pnpm (#1905) Adding initial docs setup (#1892) Reverting the changes made for release on v4 (#1907) Testing playwright workflow (#1909) fix: Fixing broken coverage pipeline (#1910) Add support for Federated Connection Access Token (#1911) Co-authored-by: Tushar Pandey <[email protected]>
1 parent 93b053e commit a378dc9

Some content is hidden

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

44 files changed

+5345
-3351
lines changed

.github/actions/npm-publish/action.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,15 @@ runs:
2020
uses: actions/checkout@v4
2121

2222
- name: Setup Node.js with pnpm caching
23-
- uses: pnpm/action-setup@v4
24-
name: Install pnpm
25-
with:
26-
version: 10
23+
uses: pnpm/action-setup@v4
24+
with:
25+
version: 10
2726

28-
- name: Install Node.js
29-
uses: actions/setup-node@v4
30-
with:
31-
node-version: 22
32-
cache: 'pnpm'
27+
- name: Install Node.js
28+
uses: actions/setup-node@v4
29+
with:
30+
node-version: 22
31+
cache: 'pnpm'
3332

3433
- name: Install dependencies
3534
shell: bash
@@ -51,8 +50,9 @@ runs:
5150
else
5251
TAG="latest"
5352
fi
53+
npm config set "//registry.npmjs.org/:_authToken" "${NPM_TOKEN}"
5454
pnpm publish --tag $TAG
5555
env:
56-
NODE_AUTH_TOKEN: ${{ inputs.npm-token }}
56+
NPM_TOKEN: ${{ inputs.npm-token }}
5757
VERSION: ${{ inputs.version }}
5858
NPM_CONFIG_PROVENANCE: true

.github/workflows/playwright.yml

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
name: Playwright Tests
22
on:
33
push:
4-
branches: [ main, master ]
4+
branches: [main, master]
55
pull_request:
6-
branches: [ main, master ]
6+
branches: [main, master]
77
jobs:
88
test:
9+
if: false # Disable this job temporarily. TODO: Fix this workflow
910
timeout-minutes: 60
1011
runs-on: ubuntu-latest
1112
steps:
@@ -17,6 +18,12 @@ jobs:
1718
run: npm install -g pnpm && pnpm install
1819
- name: Install Playwright Browsers
1920
run: pnpm exec playwright install --with-deps
21+
22+
- name: Run build step
23+
uses: ./.github/actions/build
24+
with:
25+
node: 22
26+
2027
- name: Run Playwright tests
2128
run: pnpm exec playwright test
2229
- uses: actions/upload-artifact@v4

.github/workflows/rl-secure.yml

+14
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,20 @@ jobs:
3737
with:
3838
fetch-depth: 0
3939

40+
- name: Setup pnpm
41+
uses: pnpm/action-setup@v4
42+
with:
43+
version: 10
44+
45+
- name: Setup Node.js with pnpm caching
46+
uses: actions/setup-node@v4
47+
with:
48+
node-version: ${{ inputs.node-version }}
49+
cache: "pnpm"
50+
51+
- name: Install dependencies
52+
run: pnpm install --frozen-lockfile
53+
4054
- name: Build package
4155
uses: ./.github/actions/build
4256
with:

.github/workflows/test.yml

+38-5
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ on:
44
merge_group:
55
workflow_dispatch:
66
pull_request:
7-
branches: [ main, v4 ]
7+
branches: [main, v4]
88
push:
9-
branches: [ main, v4 ]
9+
branches: [main, v4]
1010

1111
permissions:
1212
contents: read
@@ -37,7 +37,7 @@ jobs:
3737
uses: actions/setup-node@v4
3838
with:
3939
node-version: ${{ env.NODE_VERSION }}
40-
cache: 'pnpm'
40+
cache: "pnpm"
4141

4242
- name: Install dependencies
4343
run: pnpm install --frozen-lockfile
@@ -75,7 +75,7 @@ jobs:
7575
uses: actions/setup-node@v4
7676
with:
7777
node-version: ${{ matrix.node }}
78-
cache: 'pnpm'
78+
cache: "pnpm"
7979

8080
- name: Restore build artifacts
8181
uses: actions/cache/restore@v4
@@ -86,4 +86,37 @@ jobs:
8686
- name: Run Test Coverage
8787
run: pnpm test:coverage
8888

89-
- uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # [email protected]
89+
- name: Upload coverage to Codecov
90+
uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # [email protected]
91+
with:
92+
token: ${{ secrets.CODECOV_TOKEN }}
93+
94+
lint:
95+
needs: build # Require build to complete before running tests
96+
97+
name: Lint Code
98+
runs-on: ubuntu-latest
99+
100+
steps:
101+
- name: Checkout code
102+
uses: actions/checkout@v4
103+
104+
- name: Setup pnpm
105+
uses: pnpm/action-setup@v4
106+
with:
107+
version: 10
108+
109+
- name: Setup Node.js with pnpm caching
110+
uses: actions/setup-node@v4
111+
with:
112+
node-version: 22
113+
cache: "pnpm"
114+
115+
- name: Restore build artifacts
116+
uses: actions/cache/restore@v4
117+
with:
118+
path: .
119+
key: ${{ env.CACHE_KEY }}
120+
121+
- name: Run Lint
122+
run: pnpm run lint

.version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v4.0.1

CHANGELOG.md

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

3+
## [v4.0.1](https://github.com/auth0/nextjs-auth0/releases/tag/v4.0.1) (2025-02-12)
4+
5+
[Full Changelog](https://github.com/auth0/nextjs-auth0/compare/v4.0.0...v4.0.1)
6+
7+
**Fixed**
8+
9+
- fix: sanitize the returnTo parameter to prevent open redirect vulnerabilities. [\#1897](https://github.com/auth0/nextjs-auth0/pull/1897) ([guabu](https://github.com/guabu))
10+
311
## [v3.6.0](https://github.com/auth0/nextjs-auth0/tree/v3.6.0) (2025-01-31)
412

513
This is a maintainance release for V3 of the SDK.

CONTRIBUTING.md

+5
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,8 @@ Please read [Auth0's contribution guidelines](https://github.com/auth0/open-sour
1616
- `pnpm test:unit`: Run the unit tests
1717
- `pnpm run test:coverage`: Run unit test coverage
1818
- `pnpm run test:e2e`: Run the E2E tests and watch for changes (you will need to populate the `TEST_USER_PASSWORD` env var)
19+
20+
## Generate docs
21+
22+
- `pnpm run docs` – Generates the API documentation
23+
- `npx http-server docs` – Serves the documentation locally

0 commit comments

Comments
 (0)