From ccd78ff85f8424491816794d1c187f81f5911f3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B4natas=20Santos?= Date: Thu, 14 Nov 2024 08:25:26 -0800 Subject: [PATCH] Bump version to v7.31.0 (#1165) ## Description Includes #1164 ## 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 2969645a8..32e716821 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "7.30.1", + "version": "7.31.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 ef18bb469..ad4649998 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.30.1/fetch", + "User-Agent": "workos-node/7.31.0/fetch", } `; @@ -61,7 +61,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.30.1/fetch", + "User-Agent": "workos-node/7.31.0/fetch", } `; diff --git a/src/workos.ts b/src/workos.ts index 5873ba205..6e7ab8187 100644 --- a/src/workos.ts +++ b/src/workos.ts @@ -34,7 +34,7 @@ import { FetchHttpClient } from './common/net/fetch-client'; import { IronSessionProvider } from './common/iron-session/iron-session-provider'; import { Widgets } from './widgets/widgets'; -const VERSION = '7.30.1'; +const VERSION = '7.31.0'; const DEFAULT_HOSTNAME = 'api.workos.com';