summaryrefslogtreecommitdiffstats
path: root/vendor/textalk/websocket/docs/Changelog.md
blob: 6a454539dc45993bea5ee6beae6e9fcb0a9236e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
[Client](Client.md) • [Server](Server.md) • [Message](Message.md) • [Examples](Examples.md) • Changelog • [Contributing](Contributing.md)

# Websocket: Changelog

## `v1.5`

 > PHP version `^7.2|^8.0`

### `1.5.5`

 * Support for psr/log v2 and v3 (@simPod)
 * GitHub Actions replaces Travis (@sirn-se)

### `1.5.4`

 * Keep open connection on read timeout (@marcroberts)

### `1.5.3`

 * Fix for persistent connection (@sirn-se)

### `1.5.2`

 * Fix for getName() method (@sirn-se)

### `1.5.1`

 * Fix for persistent connections (@rmeisler)

### `1.5.0`

 * Convenience send methods; text(), binary(), ping(), pong() (@sirn-se)
 * Optional Message instance as receive() method return (@sirn-se)
 * Opcode filter for receive() method (@sirn-se)
 * Added PHP `8.0` support (@webpatser)
 * Dropped PHP `7.1` support (@sirn-se)
 * Fix for unordered fragmented messages (@sirn-se)
 * Improved error handling on stream calls (@sirn-se)
 * Various code re-write (@sirn-se)

## `v1.4`

 > PHP version `^7.1`

#### `1.4.3`

 * Solve stream closure/get meta conflict (@sirn-se)
 * Examples and documentation overhaul (@sirn-se)

#### `1.4.2`

 * Force stream close on read error (@sirn-se)
 * Authorization headers line feed (@sirn-se)
 * Documentation (@matias-pool, @sirn-se)

#### `1.4.1`

 * Ping/Pong, handled internally to avoid breaking fragmented messages (@nshmyrev, @sirn-se)
 * Fix for persistent connections (@rmeisler)
 * Fix opcode bitmask (@peterjah)

#### `1.4.0`

 * Dropped support of old PHP versions (@sirn-se)
 * Added PSR-3 Logging support (@sirn-se)
 * Persistent connection option (@slezakattack)
 * TimeoutException on connection time out (@slezakattack)

## `v1.3`

 > PHP version `^5.4` and `^7.0`

#### `1.3.1`

 * Allow control messages without payload (@Logioniz)
 * Error code in ConnectionException (@sirn-se)

#### `1.3.0`

 * Implements ping/pong frames (@pmccarren @Logioniz)
 * Close behaviour (@sirn-se)
 * Various fixes concerning connection handling (@sirn-se)
 * Overhaul of Composer, Travis and Coveralls setup, PSR code standard and unit tests (@sirn-se)

## `v1.2`

 > PHP version `^5.4` and `^7.0`

#### `1.2.0`

 * Adding stream context options (to set e.g. SSL `allow_self_signed`).

## `v1.1`

 > PHP version `^5.4` and `^7.0`

#### `1.1.2`

 * Fixed error message on broken frame.

#### `1.1.1`

 * Adding license information.

#### `1.1.0`

 * Supporting huge payloads.

## `v1.0`

 > PHP version `^5.4` and `^7.0`

#### `1.0.3`

 * Bugfix: Correcting address in error-message

#### `1.0.2`

 * Bugfix: Add port in request-header.

#### `1.0.1`

 * Fixing a bug from empty payloads.

#### `1.0.0`

 * Release as production ready.
 * Adding option to set/override headers.
 * Supporting basic authentication from user:pass in URL.