@frontegg/nextjs 9.2.13 → 9.2.14-alpha.29410929736
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/README.md +17 -0
- package/index.js +1 -1
- package/package.json +9 -2
- package/sdkVersion.js +1 -1
- package/sdkVersion.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [9.2.14](https://github.com/frontegg/frontegg-nextjs/compare/v9.2.13...v9.2.14) (2026-7-15)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### NextJS Wrapper 9.2.14:
|
|
7
|
+
- fix: bump dependencies and resolve security vulnerabilities
|
|
8
|
+
- test: add unit + E2E test coverage for cookies and token refresh
|
|
9
|
+
|
|
3
10
|
## [9.2.13](https://github.com/frontegg/frontegg-nextjs/compare/v9.2.12...v9.2.13) (2026-3-4)
|
|
4
11
|
|
|
5
12
|
|
package/README.md
CHANGED
|
@@ -19,6 +19,7 @@ and integrate them into their SaaS portals in up to 5 lines of code.
|
|
|
19
19
|
- [withSSRSession](#withssrsession)
|
|
20
20
|
- [Next.js middlewares usage](#nextjs-middlewares-usage)
|
|
21
21
|
- for more [visit](https://docs.frontegg.com/docs/self-service-introduction)
|
|
22
|
+
- [Security](#security)
|
|
22
23
|
|
|
23
24
|
## Installation
|
|
24
25
|
|
|
@@ -384,4 +385,20 @@ export const config = {
|
|
|
384
385
|
|
|
385
386
|
To easily clone frontegg app sample and deploy with Vercel click [here](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Ffrontegg%2Ffrontegg-nextjs%2Ftree%2Fmaster%2Fdemos%2Fquick-starter-demo&env=FRONTEGG_BASE_URL,FRONTEGG_CLIENT_ID,FRONTEGG_ENCRYPTION_PASSWORD&envDescription=Used%20to%20connect%20to%20your%20frontegg%20account%20and%20encrypt%20the%20frontegg%20session%20cookie&envLink=https%3A%2F%2Fdocs.frontegg.com%2Fdocs%2Fnextjs-12-13-ssr-hosted-login%23step-4-setup-environment&project-name=my-frontegg-app&repository-name=my-frontegg-app&demo-title=Authentication&demo-description=Basic%20application%20with%20Frontegg%20authentication%20&demo-url=https%3A%2F%2Fmy-frontegg-app.vercel.app&demo-image=https%3A%2F%2Ffronteggprodeustorage.blob.core.windows.net%2Fpublic-vendor-assets%2F4f091b2c-5755-4145-a313-10d9a530276f%2Fassets%2Flogo-fa2b14b1-d07d-49fd-8c24-a51f5d92c4d7.png)
|
|
386
387
|
|
|
388
|
+
## Security
|
|
389
|
+
|
|
390
|
+
The `@frontegg/nextjs` SDK is actively maintained, and its dependencies are kept on current, patched versions. Patched versions of transitive dependencies are enforced through the `resolutions` field in the root `package.json`.
|
|
391
|
+
|
|
392
|
+
To keep your application protected, always use the latest release:
|
|
393
|
+
|
|
394
|
+
```bash
|
|
395
|
+
yarn add @frontegg/nextjs@latest
|
|
396
|
+
# or
|
|
397
|
+
npm install @frontegg/nextjs@latest
|
|
398
|
+
```
|
|
399
|
+
|
|
400
|
+
### Reporting a vulnerability
|
|
401
|
+
|
|
402
|
+
If you discover a security vulnerability in this SDK, please report it responsibly by emailing **security@frontegg.com**. Please do not open a public GitHub issue for security reports.
|
|
403
|
+
|
|
387
404
|
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontegg/nextjs",
|
|
3
3
|
"libName": "FronteggNextJs",
|
|
4
|
-
"version": "9.2.
|
|
4
|
+
"version": "9.2.14-alpha.29410929736",
|
|
5
5
|
"author": "Frontegg LTD",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -23,7 +23,14 @@
|
|
|
23
23
|
"build:stable": "node ../../scripts/build node",
|
|
24
24
|
"build:types": "tsc -b tsconfig.build.json",
|
|
25
25
|
"build:copy-files": "node ../../scripts/copy-files.js",
|
|
26
|
-
"test": "node ../../scripts/prepare-env-test-file.js && CI=true npx playwright test",
|
|
26
|
+
"test": "yarn test:unit && node ../../scripts/prepare-env-test-file.js && CI=true PW_SKIP_WEBSERVER=1 npx playwright test --project=unit-playwright",
|
|
27
|
+
"test:unit": "vitest run",
|
|
28
|
+
"test:unit:watch": "vitest",
|
|
29
|
+
"test:unit:coverage": "vitest run --coverage",
|
|
30
|
+
"test:e2e": "playwright test",
|
|
31
|
+
"test:e2e:unit": "PW_SKIP_WEBSERVER=1 playwright test --project=unit-playwright",
|
|
32
|
+
"test:e2e:mocked": "playwright test --project=e2e-mocked",
|
|
33
|
+
"test:e2e:real": "playwright test --project=e2e-real",
|
|
27
34
|
"lint-json": "eslint -c .eslintrc.json -o ./lint-report.json --format json --no-color ./src/**/*.{ts,tsx}"
|
|
28
35
|
},
|
|
29
36
|
"dependencies": {
|
package/sdkVersion.js
CHANGED
package/sdkVersion.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sdkVersion.js","names":["version"],"sources":["../../../packages/nextjs/src/sdkVersion.ts"],"sourcesContent":["export default { version: '9.2.
|
|
1
|
+
{"version":3,"file":"sdkVersion.js","names":["version"],"sources":["../../../packages/nextjs/src/sdkVersion.ts"],"sourcesContent":["export default { version: '9.2.14-alpha.29410929736' };\n"],"mappings":";;;;;;iCAAe;EAAEA,OAAO,EAAE;AAA2B,CAAC","ignoreList":[]}
|