Skip to content

Commit aef1b70

Browse files
authored
Merge pull request #207 from binance/spot_8.0.0
spot 8.0.0
2 parents fdbef7d + dd03705 commit aef1b70

File tree

119 files changed

+17054
-5540
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+17054
-5540
lines changed

MIGRATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ For Spot (Spot package):
3737
<dependency>
3838
<groupId>io.github.binance</groupId>
3939
<artifactId>binance-spot</artifactId>
40-
<version>6.0.0</version>
40+
<version>8.0.0</version>
4141
</dependency>
4242
```
4343

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Each connector is published as a separate maven dependency. For example:
5353
<dependency>
5454
<groupId>io.github.binance</groupId>
5555
<artifactId>binance-spot</artifactId>
56-
<version>6.0.0</version>
56+
<version>8.0.0</version>
5757
</dependency>
5858
```
5959

clients/spot/CHANGELOG.md

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,71 @@
11
# Changelog
22

3+
## 8.0.0 - 2025-12-31
4+
5+
### Added (4)
6+
7+
#### REST API
8+
9+
- `orderListOpo()` (`POST /api/v3/orderList/opo`)
10+
- `orderListOpoco()` (`POST /api/v3/orderList/opoco`)
11+
12+
#### WebSocket API
13+
14+
- `orderListPlaceOpo()` (`orderList.place.opo` method)
15+
- `orderListPlaceOpoco()` (`orderList.place.opoco` method)
16+
17+
### Changed (6)
18+
19+
#### REST API
20+
21+
- Added parameter `symbolStatus`
22+
- affected methods:
23+
- `depth()` (`GET /api/v3/depth`)
24+
- `ticker()` (`GET /api/v3/ticker`)
25+
- `ticker24hr()` (`GET /api/v3/ticker/24hr`)
26+
- `tickerBookTicker()` (`GET /api/v3/ticker/bookTicker`)
27+
- `tickerPrice()` (`GET /api/v3/ticker/price`)
28+
- `tickerTradingDay()` (`GET /api/v3/ticker/tradingDay`)
29+
- Modified response for `exchangeInfo()` (`GET /api/v3/exchangeInfo`):
30+
- `symbols`.items: property `opoAllowed` added
31+
- `symbols`.items: item property `opoAllowed` added
32+
33+
- Marked `orderOco()` (`POST /api/v3/order/oco`) as deprecated.
34+
35+
#### WebSocket API
36+
37+
- Added parameter `symbolStatus`
38+
- affected methods:
39+
- `depth()` (`depth` method)
40+
- `ticker()` (`ticker` method)
41+
- `ticker24hr()` (`ticker.24hr` method)
42+
- `tickerBook()` (`ticker.book` method)
43+
- `tickerPrice()` (`ticker.price` method)
44+
- `tickerTradingDay()` (`ticker.tradingDay` method)
45+
- Modified response for `exchangeInfo()` (`exchangeInfo` method):
46+
- `result`.`symbols`.items: property `opoAllowed` added
47+
- `result`.`symbols`.items: item property `opoAllowed` added
48+
49+
- Marked `orderListPlace()` (`orderList.place` method) as deprecated.
50+
51+
### Removed (7)
52+
53+
#### REST API
54+
55+
- `deleteUserDataStream()` (`DELETE /api/v3/userDataStream`)
56+
- `newUserDataStream()` (`POST /api/v3/userDataStream`)
57+
- `putUserDataStream()` (`PUT /api/v3/userDataStream`)
58+
59+
#### WebSocket API
60+
61+
- `/userDataStream.ping()` (`userDataStream.ping` method)
62+
- `/userDataStream.start()` (`userDataStream.start` method)
63+
- `/userDataStream.stop()` (`userDataStream.stop` method)
64+
65+
#### WebSocket Streams
66+
67+
- `/!ticker@arr()` (`!ticker@arr` stream)
68+
369
## 7.0.0 - 2025-10-21
470

571
### Added (2)

clients/spot/docs/AccountApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ No authorization required
398398
399399
WebSocket Query Relevant Filters
400400

401-
Retrieves the list of [filters](filters.md) relevant to an account on a given symbol. This is the only endpoint that shows if an account has &#x60;MAX_ASSET&#x60; filters applied to it. Weight: 40
401+
Retrieves the list of [filters](filters.md) relevant to an account on a given symbol. This is the only method that shows if an account has &#x60;MAX_ASSET&#x60; filters applied to it. Weight: 40
402402

403403
### Example
404404
```java

clients/spot/docs/AllTickerResponse.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

clients/spot/docs/AllTickerResponseInner.md

Lines changed: 0 additions & 35 deletions
This file was deleted.

clients/spot/docs/DepthRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
|------------ | ------------- | ------------- | -------------|
1010
|**symbol** | **String** | | |
1111
|**limit** | **Integer** | | [optional] |
12+
|**symbolStatus** | **SymbolStatus** | | [optional] |
1213

1314

1415

clients/spot/docs/ExchangeInfoResponseResultSymbolsInner.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
|**icebergAllowed** | **Boolean** | | [optional] |
2121
|**ocoAllowed** | **Boolean** | | [optional] |
2222
|**otoAllowed** | **Boolean** | | [optional] |
23+
|**opoAllowed** | **Boolean** | | [optional] |
2324
|**quoteOrderQtyMarketAllowed** | **Boolean** | | [optional] |
2425
|**allowTrailingStop** | **Boolean** | | [optional] |
2526
|**cancelReplaceAllowed** | **Boolean** | | [optional] |

clients/spot/docs/ExchangeInfoResponseSymbolsInner.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
|**icebergAllowed** | **Boolean** | | [optional] |
2121
|**ocoAllowed** | **Boolean** | | [optional] |
2222
|**otoAllowed** | **Boolean** | | [optional] |
23+
|**opoAllowed** | **Boolean** | | [optional] |
2324
|**quoteOrderQtyMarketAllowed** | **Boolean** | | [optional] |
2425
|**allowTrailingStop** | **Boolean** | | [optional] |
2526
|**cancelReplaceAllowed** | **Boolean** | | [optional] |

clients/spot/docs/ListenKeyExpired.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)