Skip to content

Commit 7603fc6

Browse files
Revise CHANGELOG.md for recent updates
Signed-off-by: tech0priyanshu <[email protected]>
1 parent cf99cf3 commit 7603fc6

34 files changed

+3467
-168
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
- name: Prepare Hiero Solo
4747
id: solo
48-
uses: hiero-ledger/hiero-solo-action@be37932d21b1a1deaaca6ce8d7fc28a7251cfb56 # v0.13
48+
uses: hiero-ledger/hiero-solo-action@b76850c1ac44466900f8e7412b309c3aa0f539c1 # v0.14
4949
with:
5050
installMirrorNode: true
5151

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
5959
- Updated `rebasing.md` with clarification on using `git reset --soft HEAD~<n>` where `<n>` specifies the number of commits to rewind.
6060
- Calls in examples for PrivateKey.from_string_ed25519(os.getenv('OPERATOR_KEY')) to PrivateKey.from_string(os.getenv('OPERATOR_KEY')) to enable general key types
6161
- Add CI tests across Python 3.10–3.12.
62+
- kyc_status: Optional[TokenFreezeStatusProto] = None → kyc_status: Optional[TokenKycStatus] = None
63+
- assert relationship.freeze_status == TokenFreezeStatus.FROZEN, f"Expected freeze status to be FROZEN, but got {relationship.freeze_status}" → assert relationship.freeze_status == TokenFreezeStatus.UNFROZEN, f"Expected freeze status to be UNFROZEN, but got {relationship.freeze_status}"
6264

6365
### Fixed
6466

@@ -72,6 +74,7 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
7274
- deprecated CamelCase instances in /examples such as TokenId and totalSupply to snake_case
7375
- Invalid HEX representation and signature validation in keys_public_ecdsa.py
7476
- Invalid signature verification for examples/keys_public_der.py
77+
- Duplicate validation function in TokenCreate
7578

7679
### Removed
7780

@@ -85,9 +88,7 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
8588
- We have some changed imports and returns to maintain compatability in the proto bump
8689

8790
transaction_body_pb2.TransactionBody -> transaction_pb2.TransactionBody
88-
8991
contract_call_local_pb2.ContractFunctionResult -> contract_types_pb2.ContractFunctionResult
90-
9192
contract_call_local_pb2.ContractLoginfo -> contract_types_pb2.ContractLoginfo
9293

9394
- Removed init.py content in /tokens

0 commit comments

Comments
 (0)