Skip to content

Commit

Permalink
chore(release): v0.19.0.dev.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jost-s committed Oct 28, 2024
1 parent d6b8893 commit 01df775
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## \[Unreleased\]

### Added
- Bring back a websocket reconnection automation for Admin and App websockets. When either of them is closed and a new request made, it will attempt to reconnect using the same app authentication token that was used to initially authenticate the websocket. A specific `InvalidTokenError` is returned if that fails.
### Fixed
### Changed
### Removed

## 2024-10-28: v0.19.0-dev.1
### Added
- Bring back a websocket reconnection automation for Admin and App websockets. When either of them is closed and a new request made, it will attempt to reconnect using the same app authentication token that was used to initially authenticate the websocket. A specific `InvalidTokenError` is returned if that fails.

## 2024-10-09: v0.19.0-dev.0
### Changed
- Update to Holochain 0.5.0-dev.0
Expand Down
4 changes: 2 additions & 2 deletions docs/client.wsclient.close.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Close the websocket connection.
**Signature:**

```typescript
close(code?: number): Promise<CloseEvent>;
close(code?: number): Promise<IsoWebSocket.CloseEvent>;
```

## Parameters
Expand Down Expand Up @@ -49,5 +49,5 @@ _(Optional)_
</tbody></table>
**Returns:**

Promise&lt;CloseEvent&gt;
Promise&lt;IsoWebSocket.CloseEvent&gt;

2 changes: 1 addition & 1 deletion docs/client.wsclient.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Description
</td><td>
[WsClientOptions](./client.wsclientoptions.md) \| undefined
[WsClientOptions](./client.wsclientoptions.md)
</td><td>
Expand Down
2 changes: 1 addition & 1 deletion docs/client.wsclient.options.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
**Signature:**

```typescript
options: WsClientOptions | undefined;
options: WsClientOptions;
```
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@holochain/client",
"version": "0.19.0-dev.0",
"version": "0.19.0-dev.1",
"description": "A JavaScript client for the Holochain Conductor API",
"author": "Holochain Foundation <[email protected]> (https://holochain.org)",
"license": "CAL-1.0",
Expand Down Expand Up @@ -72,4 +72,4 @@
"tsx": "^4.7.2",
"typescript": "^4.9.5"
}
}
}

0 comments on commit 01df775

Please sign in to comment.