From 5d0bfdb2e8754366a48fb5a34ca8bf0db1a56f6c Mon Sep 17 00:00:00 2001 From: Granit Mullahasani Dula <156331405+gdulafactset@users.noreply.github.com> Date: Wed, 6 May 2026 11:34:27 +0100 Subject: [PATCH] chore(version): update to 2.1.4 --- __tests__/openIDClientFactory.spec.ts | 2 +- package.json | 2 +- src/openIDClientFactory.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/__tests__/openIDClientFactory.spec.ts b/__tests__/openIDClientFactory.spec.ts index 9bef248..f018f46 100644 --- a/__tests__/openIDClientFactory.spec.ts +++ b/__tests__/openIDClientFactory.spec.ts @@ -48,7 +48,7 @@ describe('Test OpenIDClientFactory class', () => { test('should not throw an error and set proxy properly', async () => { const proxyUrl = 'http://proxy.example.com:8080'; - const userAgent = `fds-sdk/javascript/utils/2.1.3 (${process.platform}; node ${process.version})`; + const userAgent = `fds-sdk/javascript/utils/2.1.4 (${process.platform}; node ${process.version})`; jest.mocked(Issuer.discover).mockResolvedValue({ metadata: { diff --git a/package.json b/package.json index 9230c57..0f1b11b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@factset/sdk-utils", "description": "Utilities for interacting with FactSet APIs.", - "version": "2.1.3", + "version": "2.1.4", "homepage": "https://developer.factset.com", "repository": "FactSet/enterprise-sdk-utils-typescript.git", "main": "lib/index.js", diff --git a/src/openIDClientFactory.ts b/src/openIDClientFactory.ts index 6a4fbff..26af80f 100644 --- a/src/openIDClientFactory.ts +++ b/src/openIDClientFactory.ts @@ -16,7 +16,7 @@ export class OpenIDClientFactory { custom.setHttpOptionsDefaults({ agent: proxyAgent, headers: { - 'user-agent': `fds-sdk/javascript/utils/2.1.3 (${process.platform}; node ${process.version})`, + 'user-agent': `fds-sdk/javascript/utils/2.1.4 (${process.platform}; node ${process.version})`, }, }); }