Skip to content

Commit 9a28de3

Browse files
committed
1.3.2
1 parent b3edfc7 commit 9a28de3

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.3.2] - 2022-01-12
11+
1012
### Fixed
1113

1214
- Websocket client now supports parsing AMQP frames split over multiple WebSocket frames (could happen with high throughput via websocket-tcp-relay).

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudamqp/amqp-client",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"description": "AMQP 0-9-1 client, both for browsers (WebSocket) and node (TCP Socket)",
55
"type": "module",
66
"main": "dist/amqp-client.cjs",

src/amqp-base-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import AMQPError from './amqp-error.js'
33
import AMQPMessage from './amqp-message.js'
44
import AMQPView from './amqp-view.js'
55

6-
const VERSION = '1.3.1'
6+
const VERSION = '1.3.2'
77

88
/**
99
* Base class for AMQPClients.

0 commit comments

Comments
 (0)