Skip to content

Commit 20bdf0d

Browse files
author
James Brundage
committed
release: WebSocket 0.1.3
Updating Module Version and release notes
1 parent 22aaf89 commit 20bdf0d

File tree

2 files changed

+70
-9
lines changed

2 files changed

+70
-9
lines changed

Diff for: CHANGELOG.md

+35
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,41 @@
11
> Like It? [Star It](https://github.com/PowerShellWeb/WebSocket)
22
> Love It? [Support It](https://github.com/sponsors/StartAutomating)
33
4+
## WebSocket 0.1.3
5+
6+
WebSocket server support!
7+
8+
### Server Features
9+
10+
For consistency, capabilities, and aesthetics,
11+
this is a fairly fully features HTTP server that happens to support websockets
12+
13+
* `Get-WebSocket` `-RootURL/-HostHeader` ( #47 )
14+
* `-StyleSheet` lets you include stylesheets ( #64 )
15+
* `-JavaScript` lets you include javascript ( #65 )
16+
* `-Timeout/-LifeSpan` server support ( #85 )
17+
18+
### Client Improvements
19+
20+
* `Get-WebSocket -QueryParameter` lets you specify query parameters ( #41 )
21+
* `Get-WebSocket -Debug` lets you debug the websocketjob. ( #45 )
22+
* `Get-WebSocket -SubProtocol` lets you specify a subprotocol (defaults to JSON) ( #46 )
23+
* `Get-WebSocket -Authenticate` allows sends pre-connection authentication ( #69 )
24+
* `Get-WebSocket -Handshake` allows post-connection authentication ( #81 )
25+
* `Get-WebSocket -Force` allows the creation of multiple clients ( #58 )
26+
27+
28+
### General Improvements
29+
30+
* `Get-WebSocket -SupportsPaging` ( #55 )
31+
* `Get-WebSocket -BufferSize 64kb` ( #52 )
32+
* `Get-WebSocket -Force` ( #58 )
33+
* `Get-WebSocket -Filter` ( #42 )
34+
* `Get-WebSocket -ForwardEvent` ( #56 )
35+
* `Get-WebSocket` Parameter Sets ( #73, #74 )
36+
* `-Broadcast` lets you broadcast to clients and servers ( #39 )
37+
* `Get-WebSocket` quieting previous job check ( #43 )
38+
439
## WebSocket 0.1.2
540

641
* WebSocket now decorates (#34)

Diff for: WebSocket.psd1

+35-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@{
2-
ModuleVersion = '0.1.2'
2+
ModuleVersion = '0.1.3'
33
RootModule = 'WebSocket.psm1'
44
Guid = '75c70c8b-e5eb-4a60-982e-a19110a1185d'
55
Author = 'James Brundage'
@@ -19,18 +19,44 @@
1919
> Like It? [Star It](https://github.com/PowerShellWeb/WebSocket)
2020
> Love It? [Support It](https://github.com/sponsors/StartAutomating)
2121
22-
## WebSocket 0.1.2
22+
## WebSocket 0.1.3
2323
24-
* WebSocket now decorates (#34)
25-
* Added a -PSTypeName(s) parameter to Get-WebSocket, so we can extend the output.
26-
* Reusing WebSockets (#35)
27-
* If a WebSocketUri is already open, we will reuse it.
28-
* Explicitly exporting commands (#38)
29-
* This should enable automatic import and enable Find-Command
24+
WebSocket server support!
25+
26+
### Server Features
27+
28+
For consistency, capabilities, and aesthetics,
29+
this is a fairly fully features HTTP server that happens to support websockets
30+
31+
* `Get-WebSocket` `-RootURL/-HostHeader` ( #47 )
32+
* `-StyleSheet` lets you include stylesheets ( #64 )
33+
* `-JavaScript` lets you include javascript ( #65 )
34+
* `-Timeout/-LifeSpan` server support ( #85 )
35+
36+
### Client Improvements
37+
38+
* `Get-WebSocket -QueryParameter` lets you specify query parameters ( #41 )
39+
* `Get-WebSocket -Debug` lets you debug the websocketjob. ( #45 )
40+
* `Get-WebSocket -SubProtocol` lets you specify a subprotocol (defaults to JSON) ( #46 )
41+
* `Get-WebSocket -Authenticate` allows sends pre-connection authentication ( #69 )
42+
* `Get-WebSocket -Handshake` allows post-connection authentication ( #81 )
43+
* `Get-WebSocket -Force` allows the creation of multiple clients ( #58 )
44+
45+
46+
### General Improvements
47+
48+
* `Get-WebSocket -SupportsPaging` ( #55 )
49+
* `Get-WebSocket -BufferSize 64kb` ( #52 )
50+
* `Get-WebSocket -Force` ( #58 )
51+
* `Get-WebSocket -Filter` ( #42 )
52+
* `Get-WebSocket -ForwardEvent` ( #56 )
53+
* `Get-WebSocket` Parameter Sets ( #73, #74 )
54+
* `-Broadcast` lets you broadcast to clients and servers ( #39 )
55+
* `Get-WebSocket` quieting previous job check ( #43 )
3056
3157
---
3258
33-
Additional details available in the [CHANGELOG](CHANGELOG.md)
59+
Additional details available in the [CHANGELOG](https://github.com/PowerShellWeb/WebSocket/blob/main/CHANGELOG.md)
3460
'@
3561
}
3662
}

0 commit comments

Comments
 (0)