Skip to content

Commit 63767b6

Browse files
committed
v3.0.2
[skip ci]
1 parent 1415899 commit 63767b6

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [3.0.2] - 2021-9-22
9+
10+
### Added
11+
12+
- ExtraHeaders
13+
14+
### Changed
15+
16+
- fix WebSocketException on manual reconnection after manual disconnection
17+
- fix that the query cannot be changed after the connection is successful
18+
819
## [3.0.1] - 2021-9-18
920

1021
### Added

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ var client = new SocketIO("http://localhost:11000/", new SocketIOOptions
9393
| `ConnectionTimeout` | `20000` | connection timeout |
9494
| `Query` | `IEnumerable<KeyValuePair<string, string>>` | additional query parameters that are sent when connecting a namespace (then found in `socket.handshake.query` object on the server-side) |
9595
| `AutoUpgrade` | `true` | If websocket is available, it will be automatically upgrade to use websocket |
96+
| `ExtraHeaders` | `null` | Headers that will be passed for each request to the server (via xhr-polling and via websockets). These values then can be used during handshake or for special proxies. |
9697

9798
## Ack
9899

src/SocketIOClient.Windows7/SocketIOClient.Windows7.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
6-
<Version>3.0.0</Version>
6+
<Version>3.0.2</Version>
77
<Description>socket.io-client implemention for .NET</Description>
88
<PackageLicenseExpression>MIT</PackageLicenseExpression>
99
<PackageProjectUrl>https://github.com/doghappy/socket.io-client-csharp</PackageProjectUrl>

src/SocketIOClient/SocketIOClient.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<RepositoryType>github</RepositoryType>
1414
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1515
<PackageLicenseFile></PackageLicenseFile>
16-
<Version>3.0.1</Version>
16+
<Version>3.0.2</Version>
1717
<PackageReleaseNotes></PackageReleaseNotes>
1818
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1919
<SignAssembly>true</SignAssembly>

0 commit comments

Comments
 (0)