-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* v0.2.0 Release
- Loading branch information
Showing
25 changed files
with
565 additions
and
315 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,33 @@ | ||
# Change log | ||
|
||
## v0.2.0 - 2023-04-21 | ||
|
||
### Added | ||
- WebsocketStreamClient | ||
- Websocket Client can be initialized with 2 parameters, `NewWebsocketStreamClient(isCombined, baseURL)`: | ||
- `isCombined` is a MANDATORY boolean value that specifies whether you are calling a combined stream or not. | ||
- If `isCombined` is set to `true`, `"/stream?streams="` will be appended to the `baseURL` to allow for Combining streams. | ||
- Otherwise, if set to `false`, `"/ws/"` will be appended to the `baseURL`. | ||
- `baseURL` is an OPTIONAL string value that determines the base URL to use for the websocket connection. | ||
- If `baseURL` is not set, it will default to the Live Exchange URL: `"wss://stream.binance.com:9443"`. | ||
|
||
### Fixed | ||
- Order Response Types for `CreateOrderService` - `POST /api/v3/order` | ||
- Added support for all 3 Order Response Types - `ACK`, `RESULT` and `FULL` | ||
- Order Response Types for `MarginAccountNewOrderService` - `POST /sapi/v1/margin/order` | ||
- Added support for all 3 Order Response Types - `ACK`, `RESULT` and `FULL` | ||
- Different Response Types for `MarginIsolatedAccountInfoService` - `GET /sapi/v1/margin/isolated/account` | ||
- Added support for both Response Types, depending on whether `symbols` is set or not. | ||
|
||
### Changed | ||
- Renamed `WsAllMiniMarketsStatServe` to `WsAllMarketMiniTickersStatServe`. | ||
- Renamed `WsMarketsStatServe` to `WsMarketTickersStatServe`. | ||
- Renamed `WsAllMarketsStatServe` to `WsAllMarketTickersStatServe`. | ||
- Updated Github Action `UnitTest`. | ||
|
||
### Removed | ||
- Removed unused `setFormParam`, `setFormParams`, `WithRecvWindow`, `WithHeader` and `WithHeaders` functions from `request.go`. | ||
|
||
## v0.1.0 - 2023-03-31 | ||
|
||
- First release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ package binance_connector | |
|
||
const Name = "binance-connector-go" | ||
|
||
const Version = "0.1.0" | ||
const Version = "0.2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.