genesys-cloud-streaming-client 18.0.1-develop.126 → 18.0.1-develop.127

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,19 +4,13 @@
4
4
  "ecosystem": "pc",
5
5
  "team": "Client Streaming and Signaling",
6
6
  "indexFiles": [
7
- {
8
- "file": "v18.0.1/streaming-client.browser.ie.js"
9
- },
10
7
  {
11
8
  "file": "v18.0.1/streaming-client.browser.js"
12
9
  },
13
- {
14
- "file": "v18/streaming-client.browser.ie.js"
15
- },
16
10
  {
17
11
  "file": "v18/streaming-client.browser.js"
18
12
  }
19
13
  ],
20
- "build": "126",
21
- "buildDate": "2025-01-16T19:49:50.170135360Z"
14
+ "build": "127",
15
+ "buildDate": "2025-01-17T23:50:50.343196489Z"
22
16
  }
@@ -7,10 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
  # [Unreleased](https://github.com/purecloudlabs/genesys-cloud-streaming-client/compare/v18.0.0...HEAD)
8
8
  ### Breaking Changes
9
9
  * Lru-cache was upgraded from v6 to v11, which uses newer language features. Depending on your language target version, you may need to configure a transpiler accordingly. For example, we added `plugin-proposal-class-properties` and `plugin-transform-private-methods` to our Babel config for streaming-client.
10
+ * Support for IE has been removed.
10
11
 
11
12
  ### Changed
12
13
  * [STREAM-313](https://inindca.atlassian.net/browse/STREAM-313) - Streaming-client will ignore duplicate reinvite offers.
13
14
  * [PCM-2081](https://inindca.atlassian.net/browse/PCM-2081) - Set meetingId when initializing GenesysCloudMediaSessions and only delete pending sessions when processed for the right session type.
15
+ * [STREAM-324](https://inindca.atlassian.net/browse/STREAM-324) - Support for IE has been removed.
14
16
 
15
17
  ### Fixed
16
18
  * [STREAM-207](https://inindca.atlassian.net/browse/STREAM-207) - [STREAM-207] handle ice candidates received before the offer (sdpOverXmpp only)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "genesys-cloud-streaming-client",
3
- "version": "18.0.1-develop.126",
3
+ "version": "18.0.1-develop.127",
4
4
  "description": "client for the Genesys Cloud Streaming APIs (websocket/xmpp interface)",
5
5
  "repository": "https:github.com/purecloudlabs/genesys-cloud-streaming-client",
6
6
  "license": "MIT",
@@ -26,7 +26,6 @@
26
26
  "compile:module": "tsc -p . --outDir ./dist/es --target es2015 --module es2015",
27
27
  "compile:rollup": "rollup -c rollup.config.js",
28
28
  "compile:webpack": "webpack --mode production",
29
- "compile:webpack:ie": "webpack --env.ie --mode production",
30
29
  "test": "npm run lint && npm run test:unit",
31
30
  "test:unit": "jest --runInBand",
32
31
  "test:watch": "jest --watch --runInBand --collectCoverage=false",