From cc2eeda15722bb7096d628f46583dc37a560e79a Mon Sep 17 00:00:00 2001 From: Blair Lunceford <74257063+blairlunceford@users.noreply.github.com> Date: Fri, 24 May 2024 07:41:21 -0600 Subject: [PATCH] v7.6.0 (#1049) ## Description - Update dependency ts-jest to v29.1.3: https://github.com/workos/workos-node/pull/1044 - Add role to directory user: https://github.com/workos/workos-node/pull/1046 - Add methods and events for email verification and password reset: https://github.com/workos/workos-node/pull/1048 ## Documentation Does this require changes to the WorkOS Docs? E.g. the [API Reference](https://workos.com/docs/reference) or code snippets need updates. ``` [ ] Yes ``` If yes, link a related docs PR and add a docs maintainer as a reviewer. Their approval is required. --- package.json | 2 +- src/sso/__snapshots__/sso.spec.ts.snap | 4 ++-- src/workos.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index c3740d81f..ec8124091 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "7.5.0", + "version": "7.6.0", "name": "@workos-inc/node", "author": "WorkOS", "description": "A Node wrapper for the WorkOS API", diff --git a/src/sso/__snapshots__/sso.spec.ts.snap b/src/sso/__snapshots__/sso.spec.ts.snap index e563e3163..12dc78250 100644 --- a/src/sso/__snapshots__/sso.spec.ts.snap +++ b/src/sso/__snapshots__/sso.spec.ts.snap @@ -21,7 +21,7 @@ exports[`SSO SSO getProfileAndToken with all information provided sends a reques "Accept": "application/json, text/plain, */*", "Authorization": "Bearer sk_test_Sz3IQjepeSWaI4cMS4ms4sMuU", "Content-Type": "application/x-www-form-urlencoded;charset=utf-8", - "User-Agent": "workos-node/7.5.0", + "User-Agent": "workos-node/7.6.0", } `; @@ -58,7 +58,7 @@ exports[`SSO SSO getProfileAndToken without a groups attribute sends a request t "Accept": "application/json, text/plain, */*", "Authorization": "Bearer sk_test_Sz3IQjepeSWaI4cMS4ms4sMuU", "Content-Type": "application/x-www-form-urlencoded;charset=utf-8", - "User-Agent": "workos-node/7.5.0", + "User-Agent": "workos-node/7.6.0", } `; diff --git a/src/workos.ts b/src/workos.ts index 2a98688fd..95bcc436f 100644 --- a/src/workos.ts +++ b/src/workos.ts @@ -29,7 +29,7 @@ import { BadRequestException } from './common/exceptions/bad-request.exception'; import { FetchClient } from './common/utils/fetch-client'; import { FetchError } from './common/utils/fetch-error'; -const VERSION = '7.5.0'; +const VERSION = '7.6.0'; const DEFAULT_HOSTNAME = 'api.workos.com';