Skip to content

Commit 718d2e3

Browse files
patrickfeeney03Aidan ZimmermannAidanWZhjon
authored
Release/v19.7.1 (#354)
* Update Axios * Update follow-redirects * [STREAM-1488 STREAM-1491 STREAM-1498 STREAM-1504] Update axios and follow-redirects (#348) * Update axios and follow-redirects * Changelog and remove dep * STREAM-1322: accept log level from config options * STREAM-1322: update changelog * STREAM-1322: retry notification subscription * STREAM-1322: revert extraneous commit * Backmerge (#352) * Prep v19.7.0 * Fix changelog --------- Co-authored-by: Jon Hjelle <jon.hjelle@genesys.com> Co-authored-by: Jon Hjelle <hjon@users.noreply.github.com> * Bump version * Update changelog * Packagelock * Changelog again --------- Co-authored-by: Aidan Zimmermann <aidan.zimmermann@genesys.com> Co-authored-by: Aidan Zimmermann <aidan.zimmermann@gmail.com> Co-authored-by: Jon Hjelle <jon.hjelle@genesys.com> Co-authored-by: Jon Hjelle <hjon@users.noreply.github.com>
1 parent c2ca7c1 commit 718d2e3

4 files changed

Lines changed: 20 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
# [Unreleased](https://github.com/purecloudlabs/genesys-cloud-streaming-client/compare/v19.7.0...HEAD)
7+
# [Unreleased](https://github.com/purecloudlabs/genesys-cloud-streaming-client/compare/v19.7.1...HEAD)
8+
9+
# [v19.7.1](https://github.com/purecloudlabs/genesys-cloud-streaming-client/compare/v19.7.0...v19.7.1)
10+
### Changed
11+
* [STREAM-1488](https://inindca.atlassian.net/browse/STREAM-1488) - Update `axios` to v1.15.2
12+
13+
### Fixed
14+
* [STREAM-1322](https://inindca.atlassian.net/browse/STREAM-1322) - Fix `logLevel` option being ignored. The value was not copied from `IClientOptions` into the internal config, so the logger always defaulted to `'info'`.
815

916
# [v19.7.0](https://github.com/purecloudlabs/genesys-cloud-streaming-client/compare/v19.6.0...v19.7.0)
1017
### Added

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "genesys-cloud-streaming-client",
3-
"version": "19.7.0",
3+
"version": "19.7.1",
44
"description": "client for the Genesys Cloud Streaming APIs (websocket/xmpp interface)",
55
"repository": "https:github.com/purecloudlabs/genesys-cloud-streaming-client",
66
"license": "MIT",
@@ -50,7 +50,7 @@
5050
"author": "",
5151
"dependencies": {
5252
"@babel/runtime-corejs3": "^7.10.4",
53-
"axios": "^1.15.0",
53+
"axios": "^1.15.2",
5454
"backoff-web": "^1.0.1",
5555
"browserama": "^3.2.0",
5656
"core-js": "^3.6.5",

src/client.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ export class Client extends EventEmitter {
9797
appName: options.appName,
9898
appVersion: options.appVersion,
9999
appId: options.appId,
100+
logLevel: options.logLevel,
100101
customHeaders: options.customHeaders
101102
};
102103

0 commit comments

Comments
 (0)