|
1 | 1 | @{
|
2 |
| - ModuleVersion = '0.1.1' |
| 2 | + ModuleVersion = '0.1.2' |
3 | 3 | RootModule = 'WebSocket.psm1'
|
4 | 4 | Guid = '75c70c8b-e5eb-4a60-982e-a19110a1185d'
|
5 | 5 | Author = 'James Brundage'
|
6 | 6 | CompanyName = 'StartAutomating'
|
7 | 7 | Copyright = '2024 StartAutomating'
|
8 | 8 | Description = 'Work with WebSockets in PowerShell'
|
| 9 | + FunctionsToExport = @('Get-WebSocket') |
| 10 | + AliasesToExport = @('WebSocket') |
9 | 11 | PrivateData = @{
|
10 | 12 | PSData = @{
|
11 | 13 | Tags = @('WebSocket', 'WebSockets', 'Networking', 'Web')
|
|
15 | 17 | > Like It? [Star It](https://github.com/PowerShellWeb/WebSocket)
|
16 | 18 | > Love It? [Support It](https://github.com/sponsors/StartAutomating)
|
17 | 19 |
|
18 |
| -## WebSocket 0.1.1 |
| 20 | +## WebSocket 0.1.2 |
19 | 21 |
|
20 |
| -* WebSocket GitHub Action |
21 |
| - * Run any `*.WebSocket.ps1` files in a repository (#24) |
22 |
| -* WebSocket container updates |
23 |
| - * Container now runs mounted `*.WebSocket.ps1` files (#26) |
24 |
| -* Get-WebSocket improvements: |
25 |
| - * New Parameters: |
26 |
| - * -Maximum (#22) |
27 |
| - * -TimeOut (#23) |
28 |
| - * -WatchFor (#29) |
29 |
| - * -RawText (#30) |
30 |
| - * -Binary (#31) |
31 |
| -* WebSocket Testing (#25) |
32 |
| -* Adding FUNDING.yml (#14) |
| 22 | +* WebSocket now decorates (#34) |
| 23 | + * Added a -PSTypeName(s) parameter to Get-WebSocket, so we can extend the output. |
| 24 | +* Reusing WebSockets (#35) |
| 25 | + * If a WebSocketUri is already open, we will reuse it. |
| 26 | +* Explicitly exporting commands (#38) |
| 27 | + * This should enable automatic import and enable Find-Command |
33 | 28 |
|
34 | 29 | ---
|
35 | 30 |
|
|
0 commit comments