From 08ab75f210b11371fa4de78eb97f35d2deb90a5c Mon Sep 17 00:00:00 2001 From: Maxwell Hammad Date: Tue, 19 Nov 2024 12:58:04 -0500 Subject: [PATCH] v7.33.0 (#1173) ## Description Bump minor version for Actions release ## 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 | 4 ++-- src/sso/__snapshots__/sso.spec.ts.snap | 4 ++-- src/workos.ts | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index c59372f52..8211505dd 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "7.32.0", + "version": "7.33.0", "name": "@workos-inc/node", "author": "WorkOS", "description": "A Node wrapper for the WorkOS API", @@ -72,4 +72,4 @@ "default": "./lib/index.js" } } -} \ No newline at end of file +} diff --git a/src/sso/__snapshots__/sso.spec.ts.snap b/src/sso/__snapshots__/sso.spec.ts.snap index b34e87c1d..fd833b3b2 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.32.0/fetch", + "User-Agent": "workos-node/7.33.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.32.0/fetch", + "User-Agent": "workos-node/7.33.0/fetch", } `; diff --git a/src/workos.ts b/src/workos.ts index 32f659305..68a7e5caf 100644 --- a/src/workos.ts +++ b/src/workos.ts @@ -35,7 +35,7 @@ import { IronSessionProvider } from './common/iron-session/iron-session-provider import { Widgets } from './widgets/widgets'; import { Actions } from './actions/actions'; -const VERSION = '7.32.0'; +const VERSION = '7.33.0'; const DEFAULT_HOSTNAME = 'api.workos.com';