Skip to content

Commit 524bb6b

Browse files
authored
chore(version): update to 2.1.4 (#763)
Description Updating version to fix the issue with version 2.1.3 release not having lib files
1 parent 7513900 commit 524bb6b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

__tests__/openIDClientFactory.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ describe('Test OpenIDClientFactory class', () => {
4848

4949
test('should not throw an error and set proxy properly', async () => {
5050
const proxyUrl = 'http://proxy.example.com:8080';
51-
const userAgent = `fds-sdk/javascript/utils/2.1.3 (${process.platform}; node ${process.version})`;
51+
const userAgent = `fds-sdk/javascript/utils/2.1.4 (${process.platform}; node ${process.version})`;
5252

5353
jest.mocked(Issuer.discover).mockResolvedValue({
5454
metadata: {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@factset/sdk-utils",
33
"description": "Utilities for interacting with FactSet APIs.",
4-
"version": "2.1.3",
4+
"version": "2.1.4",
55
"homepage": "https://developer.factset.com",
66
"repository": "FactSet/enterprise-sdk-utils-typescript.git",
77
"main": "lib/index.js",

src/openIDClientFactory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class OpenIDClientFactory {
1616
custom.setHttpOptionsDefaults({
1717
agent: proxyAgent,
1818
headers: {
19-
'user-agent': `fds-sdk/javascript/utils/2.1.3 (${process.platform}; node ${process.version})`,
19+
'user-agent': `fds-sdk/javascript/utils/2.1.4 (${process.platform}; node ${process.version})`,
2020
},
2121
});
2222
}

0 commit comments

Comments
 (0)