Skip to content

Commit 540ba02

Browse files
authored
v0.7.0 (#30)
1 parent 607caac commit 540ba02

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@workos-inc/authkit-react-router",
3-
"version": "0.6.1",
3+
"version": "0.7.0",
44
"description": "Authentication and session helpers for using WorkOS & AuthKit with React Router 7+",
55
"sideEffects": false,
66
"type": "commonjs",

src/session.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ describe('session', () => {
495495
it('should return null from getAccessToken for unauthenticated users', async () => {
496496
// Mock no session
497497
unsealData.mockResolvedValue(null);
498-
498+
499499
const customLoader = jest.fn().mockImplementation(({ getAccessToken }) => {
500500
const token = getAccessToken();
501501
return { retrievedToken: token };

src/workos.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { WorkOS } from '@workos-inc/node';
22
import { getConfig } from './config.js';
33
import { lazy } from './utils.js';
44

5-
const VERSION = '0.6.1';
5+
const VERSION = '0.7.0';
66

77
/**
88
* Create a WorkOS instance with the provided API key and optional settings.

0 commit comments

Comments
 (0)