@connekz/connekz-agent 1.5.1 → 2.0.0
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.
- package/CHANGELOG.md +21 -0
- package/dist/connekz-agent.es.js +134 -128
- package/dist/connekz-agent.umd.js +9 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## [2.0.0] - 2026-06-23 (Major Release)
|
|
2
|
+
|
|
3
|
+
### Added
|
|
4
|
+
- Cross redis session support
|
|
5
|
+
- Support for multiple redis instances
|
|
6
|
+
|
|
7
|
+
## [1.5.2] - 2026-06-23 (Patch Release)
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Minor lint cleanup in `Icon.vue` (quote style).
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- Socket.IO now connects with `withCredentials: true` so the AWS ALB sticky-session cookie (`AWSALBCORS`, `SameSite=None`) is sent on cross-origin requests. Without it, long-polling sessions were routed to different backend instances behind the load balancer and failed with HTTP 400 ("Session ID unknown").
|
|
18
|
+
- `setCurrentConversationId` no longer resets the active audio batch when a repeated `THINKING` status arrives for the same conversation (prevents killing in-flight audio).
|
|
19
|
+
|
|
20
|
+
### Security
|
|
21
|
+
|
|
1
22
|
## [1.5.1] - 2026-04-01 (Patch Release)
|
|
2
23
|
|
|
3
24
|
### Added
|