From a4111eee862b4aa3d2c4b452e1c6f46c95d62674 Mon Sep 17 00:00:00 2001 From: Matt Dzwonczyk <9063128+mattgd@users.noreply.github.com> Date: Fri, 26 Jul 2024 10:41:05 -0500 Subject: [PATCH] Bump to version 7.17.1 (#1089) --- 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 e2b264f82..a7992428d 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "7.17.0", + "version": "7.17.1", "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 385a6bcc8..007bb8847 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.17.0/fetch", + "User-Agent": "workos-node/7.17.1/fetch", } `; @@ -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.17.0/fetch", + "User-Agent": "workos-node/7.17.1/fetch", } `; diff --git a/src/workos.ts b/src/workos.ts index a33293367..7325321d9 100644 --- a/src/workos.ts +++ b/src/workos.ts @@ -32,7 +32,7 @@ import { HttpClient, HttpClientError } from './common/net/http-client'; import { SubtleCryptoProvider } from './common/crypto/subtle-crypto-provider'; import { FetchHttpClient } from './common/net/fetch-client'; -const VERSION = '7.17.0'; +const VERSION = '7.17.1'; const DEFAULT_HOSTNAME = 'api.workos.com';