Skip to content

Commit

Permalink
v0.7.0 (#64)
Browse files Browse the repository at this point in the history
* Updates user information when refreshing
* Bumps WorkOS client to 7.12.0
  • Loading branch information
cmatheson authored Jul 9, 2024
1 parent 79cf806 commit 6166ec4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@workos-inc/authkit-nextjs",
"version": "0.6.2",
"version": "0.7.0",
"description": "Authentication and session helpers for using WorkOS & AuthKit with Next.js",
"sideEffects": false,
"type": "commonjs",
Expand Down
5 changes: 5 additions & 0 deletions src/workos.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
import { WorkOS } from '@workos-inc/node';
import { WORKOS_API_HOSTNAME, WORKOS_API_HTTPS, WORKOS_API_KEY, WORKOS_API_PORT } from './env-variables.js';

export const VERSION = '0.7.0';

const options = {
apiHostname: WORKOS_API_HOSTNAME,
https: WORKOS_API_HTTPS ? WORKOS_API_HTTPS === 'true' : true,
port: WORKOS_API_PORT ? parseInt(WORKOS_API_PORT) : undefined,
appInfo: {
name: 'authkit/nextjs',
version: VERSION,
},
};

// Initialize the WorkOS client
Expand Down

0 comments on commit 6166ec4

Please sign in to comment.