You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+46-24Lines changed: 46 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,63 +7,73 @@ This project adheres to [Semantic Versioning](https://semver.org).
7
7
This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
8
8
9
9
## [Unreleased]
10
+
10
11
### Added
12
+
11
13
- CONTRIBUTING.md: expanded documentation detailing various contribution processes in a step-by-step way. Includes new sections: blog posts and support.
12
14
- README_upstream.md: documentation explaining how to rebase to main.
- ContractID check in PublicKey._from_proto() method
22
+
- ContractID check in PublicKey.\_from_proto() method
20
23
- PendingAirdropId Class
21
24
- PendingAirdropRecord Class
22
25
- TokenCancelAirdropTransaction Class
26
+
- Integrated pylint.yml and test.yml into a single workflow file ci.yml
23
27
24
28
### Fixed
29
+
25
30
- missing ECDSA support in query.py and contract_create_transaction.py (was only creating ED25519 keys)
26
31
- Applied linting and code formatting across the consensus module
27
32
28
-
29
33
### Breaking API changes
34
+
30
35
**We have several camelCase uses that will be deprecated → snake_case** Original aliases will continue to function, with a warning, until the following release.
31
36
32
37
#### In `token_info.py`
33
-
- tokenId → token_id
34
-
- totalSupply → total_supply
38
+
39
+
- tokenId → token_id
40
+
- totalSupply → total_supply
35
41
- isDeleted → is_deleted
36
-
- tokenType → token_type
37
-
- maxSupply → max_supply
38
-
- adminKey → admin_key
42
+
- tokenType → token_type
43
+
- maxSupply → max_supply
44
+
- adminKey → admin_key
39
45
- kycKey → kyc_key
40
-
- freezeKey → freeze_key
46
+
- freezeKey → freeze_key
41
47
- wipeKey → wipe_key
42
48
- supplyKey → supply_key
43
-
- defaultFreezeStatus → default_freeze_status
44
-
- defaultKycStatus → default_kyc_status
45
-
- autoRenewAccount → auto_renew_account
46
-
- autoRenewPeriod → auto_renew_period
47
-
- pauseStatus → pause_status
48
-
- supplyType → supply_type
49
+
- defaultFreezeStatus → default_freeze_status
50
+
- defaultKycStatus → default_kyc_status
51
+
- autoRenewAccount → auto_renew_account
52
+
- autoRenewPeriod → auto_renew_period
53
+
- pauseStatus → pause_status
54
+
- supplyType → supply_type
49
55
50
56
#### In `nft_id.py`
51
-
- tokenId → token_id
52
-
- serialNumber → serial_number
57
+
58
+
- tokenId → token_id
59
+
- serialNumber → serial_number
53
60
54
61
#### In `transaction_receipt.py`
62
+
55
63
- tokenId → token_id
56
-
- topicId → topic_id
57
-
- accountId → account_id
64
+
- topicId → topic_id
65
+
- accountId → account_id
58
66
- fileId → file_id
59
67
60
68
### Deprecated Additions
69
+
61
70
- logger.warn will be deprecated in v0.1.4. Please use logger.warning instead.
62
71
- get_logger method passing (name, level) will be deprecated in v0.1.4 for (level, name).
63
72
64
-
65
73
## [0.1.3] - 2025-07-03
74
+
66
75
### Added
76
+
67
77
- TokenType Class
68
78
- MAINTAINERS.md file
69
79
- Duration Class
@@ -90,8 +100,8 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
90
100
- TransactionRecordQuery Class
91
101
- AccountInfoQuery Class
92
102
93
-
94
103
### Changed
104
+
95
105
- replace datetime.utcnow() with datetime.now(timezone.utc) for Python 3.10
96
106
- updated pr-checks.yml
97
107
- added add_require_frozen() to Transaction Base Class
@@ -111,54 +121,66 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
111
121
- Created `sdk_users` docs folder and renamed `examples/README.md` to `running_examples.md`
112
122
- Updated references and links accordingly
113
123
114
-
115
124
### Fixed
125
+
116
126
- fixed INVALID_NODE_ACCOUNT during node switching
117
127
- fixed ed25519 key ambiguity (PrivateKey.from_string -> PrivateKey.from_string_ed25519 in examples)
0 commit comments