Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/npm-publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ runs:
TAG="latest"
fi
npm config set "//registry.npmjs.org/:_authToken" "${NPM_TOKEN}"
pnpm publish --tag $TAG
pnpm publish
Copy link
Member Author

@frederikprijck frederikprijck Nov 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not adding the latest tag as this is not the latest. Assumably this works, if not, we need to fix the dist-tags post-release.

env:
NPM_TOKEN: ${{ inputs.npm-token }}
VERSION: ${{ inputs.version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ on:
merge_group:
workflow_dispatch:
pull_request:
branches: [main, v4]
branches: [main, v4, patch/v4.11.1]
push:
branches: [main, v4]
branches: [main, v4, patch/v4.11.1]

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v4.11.1
v4.11.2
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [v4.11.2](https://github.com/auth0/nextjs-auth0/tree/v4.11.2) (2025-11-13)
[Full Changelog](https://github.com/auth0/nextjs-auth0/compare/v4.11.1...v4.11.2)

**Changed**
- Remove TokenRequestCache when calling getAccessToken

## [v4.11.1](https://github.com/auth0/nextjs-auth0/tree/v4.11.1) (2025-10-31)
[Full Changelog](https://github.com/auth0/nextjs-auth0/compare/v4.11.0...v4.11.1)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@auth0/nextjs-auth0",
"version": "4.11.1",
"version": "4.11.2",
"description": "Auth0 Next.js SDK",
"type": "module",
"scripts": {
Expand Down
Loading