Skip to content

Commit 5ee4ff0

Browse files
frederikprijckjcyling
authored andcommitted
Merge branch 'main' into v4-migration-profile-no-content-option
2 parents 932ec95 + eb45d4e commit 5ee4ff0

File tree

127 files changed

+4966
-2642
lines changed

Some content is hidden

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

127 files changed

+4966
-2642
lines changed

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,17 @@ updates:
77
ignore:
88
- dependency-name: "*"
99
update-types: ["version-update:semver-major"]
10+
cooldown:
11+
default-days: 5
12+
semver-minor-days: 5
13+
semver-patch-days: 3
1014

1115
- package-ecosystem: 'github-actions'
1216
directory: '/'
1317
schedule:
1418
interval: 'daily'
19+
cooldown:
20+
default-days: 5
21+
semver-major-days: 10
22+
semver-minor-days: 5
23+
semver-patch-days: 3

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: exit 0 # Skip unnecessary test runs for dependabot and merge queues. Artifically flag as successful, as this is a required check for branch protection.
3737

3838
- name: Checkout
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040

4141
- name: Initialize CodeQL
4242
uses: github/codeql-action/init@v4

.github/workflows/npm-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
steps:
3131
# Checkout the code
32-
- uses: actions/checkout@v5
32+
- uses: actions/checkout@v6
3333
with:
3434
fetch-depth: 0
3535

.github/workflows/playwright.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
timeout-minutes: 60
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
- uses: actions/setup-node@v6
1515
with:
1616
node-version: lts/*
@@ -26,7 +26,7 @@ jobs:
2626

2727
- name: Run Playwright tests
2828
run: pnpm exec playwright test
29-
- uses: actions/upload-artifact@v5
29+
- uses: actions/upload-artifact@v6
3030
if: ${{ !cancelled() }}
3131
with:
3232
name: playwright-report

.github/workflows/rl-secure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
steps:
3535
- name: Checkout code
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737
with:
3838
fetch-depth: 0
3939

.github/workflows/snyk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- if: github.actor == 'dependabot[bot]' || github.event_name == 'merge_group'
3232
run: exit 0 # Skip unnecessary test runs for dependabot and merge queues. Artifically flag as successful, as this is a required check for branch protection.
3333

34-
- uses: actions/checkout@v5
34+
- uses: actions/checkout@v6
3535
with:
3636
ref: ${{ github.event.pull_request.head.sha || github.ref }}
3737

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: Checkout code
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030

3131
- name: Setup pnpm
3232
uses: pnpm/action-setup@v4
@@ -48,7 +48,7 @@ jobs:
4848
node: ${{ env.NODE_VERSION }}
4949

5050
- name: Save build artifacts
51-
uses: actions/cache/save@v4
51+
uses: actions/cache/save@v5
5252
with:
5353
path: .
5454
key: ${{ env.CACHE_KEY }}
@@ -63,7 +63,7 @@ jobs:
6363

6464
steps:
6565
- name: Checkout code
66-
uses: actions/checkout@v5
66+
uses: actions/checkout@v6
6767

6868
- name: Setup pnpm
6969
uses: pnpm/action-setup@v4
@@ -83,7 +83,7 @@ jobs:
8383
run: pnpm test:coverage
8484

8585
- name: Upload coverage to Codecov
86-
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # pin@5.5.1
86+
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # pin@5.5.2
8787
with:
8888
token: ${{ secrets.CODECOV_TOKEN }}
8989

@@ -93,7 +93,7 @@ jobs:
9393

9494
steps:
9595
- name: Checkout code
96-
uses: actions/checkout@v5
96+
uses: actions/checkout@v6
9797

9898
- name: Setup pnpm
9999
uses: pnpm/action-setup@v4

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,5 +141,4 @@ dist
141141
*.tmp
142142
*PLAN*.md
143143
.yalc/
144-
yalc.lock
145-
.npmrc
144+
yalc.lock

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v4.13.1
1+
v4.14.0

CHANGELOG.md

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

3+
## [v4.14.0](https://github.com/auth0/nextjs-auth0/tree/v4.14.0) (2025-12-15)
4+
[Full Changelog](https://github.com/auth0/nextjs-auth0/compare/v4.13.3...v4.14.0)
5+
6+
**Added**
7+
- feat: Custom Token Exchange [\#2453](https://github.com/auth0/nextjs-auth0/pull/2453) ([tusharpandey13](https://github.com/tusharpandey13))
8+
9+
## [v4.13.3](https://github.com/auth0/nextjs-auth0/tree/v4.13.3) (2025-12-12)
10+
[Full Changelog](https://github.com/auth0/nextjs-auth0/compare/v4.13.2...v4.13.3)
11+
12+
**Fixed**
13+
- bugfix: session write not happening for pages router with chunked cookies [\#2447](https://github.com/auth0/nextjs-auth0/pull/2447) ([tusharpandey13](https://github.com/tusharpandey13))
14+
15+
**Security**
16+
- Security: Update Next.js peer dependencies for CVE-2025-55184 and CVE-2025-55183 [\#2457](https://github.com/auth0/nextjs-auth0/pull/2457) ([tusharpandey13](https://github.com/tusharpandey13))
17+
18+
## [v4.13.2](https://github.com/auth0/nextjs-auth0/tree/v4.13.2) (2025-12-05)
19+
[Full Changelog](https://github.com/auth0/nextjs-auth0/compare/v4.13.1...v4.13.2)
20+
21+
**Changed**
22+
- Updated peer dependency
23+
- Next: `^14.2.25 || ~15.0.5 || ~15.1.9 || ~15.2.6 || ~15.3.6 || ~15.4.8 || ~15.5.7 || ^16.0.7`
24+
- React: `^18.0.0 || ~19.0.1 || ~19.1.2 || ^19.2.1`
25+
- React-DOM: `^18.0.0 || ~19.0.1 || ~19.1.2 || ^19.2.1`
26+
327
## [v4.13.1](https://github.com/auth0/nextjs-auth0/tree/v4.13.1) (2025-11-19)
428
[Full Changelog](https://github.com/auth0/nextjs-auth0/compare/v4.13.0...v4.13.1)
529

0 commit comments

Comments
 (0)