Skip to content

Commit 8548d07

Browse files
authored
Merge branch 'main' into feat/test-naming-check-v2
2 parents 1ee0792 + 01e2369 commit 8548d07

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

.github/workflows/examples.yml

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

3535
- name: Prepare Hiero Solo
3636
id: solo
37-
uses: hiero-ledger/hiero-solo-action@6a1a77601cf3e69661fb6880530a4edf656b40d5 #v0.14.0
37+
uses: hiero-ledger/hiero-solo-action@dd0048139ef1e40fd6067f01bf94eb42a67294f4 #v0.15.0
3838
with:
3939
installMirrorNode: true
4040
- name: Run Examples

.github/workflows/test.yml

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

5050
- name: Prepare Hiero Solo
5151
id: solo
52-
uses: hiero-ledger/hiero-solo-action@6a1a77601cf3e69661fb6880530a4edf656b40d5 # v0.14.0
52+
uses: hiero-ledger/hiero-solo-action@dd0048139ef1e40fd6067f01bf94eb42a67294f4 # v0.15.0
5353
with:
5454
installMirrorNode: true
5555

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,19 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
66

77
## [Unreleased]
88

9+
10+
### Added
11+
12+
13+
### Changed
14+
15+
16+
### Fixed
17+
18+
19+
20+
## [0.1.8] - 2025-11-07
21+
922
### Added
1023
- CI: Add standalone workflow `pr-check-naming-test.yml` to validate test filenames. Enforces unit tests begin with `test_` and integration tests end with `_test.py`, with exclusions for helper files. (Fixes #744)
1124
- Add `TokenFeeScheduleUpdateTransaction` class to support updating custom fee schedules on tokens (#471).
@@ -30,6 +43,7 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
3043
- docs: Add `docs/sdk_developers/project_structure.md` to explain repository layout and import paths.
3144

3245
### Changed
46+
- chore: bumped solo action from 14.0 to 15.0 (#764)
3347
- chore: replaced hardcoded 'testnet' messages with environment network name
3448
- chore: validate that token airdrop transactions require an available token service on the channel (#632)
3549
- chore: update local environment configuration in env.example (#649)
@@ -55,6 +69,7 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
5569
- Dependabot alerts (version bumps)
5670
- Fixed incorrect `TokenType` import (protobuf vs. SDK enum) in 18 example files.
5771
- Update `schedule_sign_transaction_e2e_test` to check for key presence instead of relying on index.
72+
- Add `localhost` and `local` as network names
5873

5974
### Breaking Changes
6075
- chore: changed the file names airdrop classes (#631)
@@ -87,6 +102,7 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
87102
- Added `checksum` filed for TopicId, FileId, ContractId, ScheduleId class
88103
- Added workflow for running example scripts.
89104
- docs: workflow.md documenting key steps to creating a pull request (#605)
105+
- chore: fix the examples workflow to log error messages and run on import failure (#738)
90106
- Added `docs/discord.md` explaining how to join and navigate the Hiero community Discord (#614).
91107

92108

@@ -176,7 +192,6 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
176192
- Add strict type hints to `TransactionGetReceiptQuery` (#420)
177193
- Fixed broken documentation links in CONTRIBUTING.md by converting absolute GitHub URLs to relative paths
178194
- Updated all documentation references to use local paths instead of pointing to hiero-sdk project hub
179-
- chore: fix the examples workflow to log error messages and run on import failure (#738)
180195

181196
## [0.1.5] - 2025-09-25
182197

src/hiero_sdk_python/client/network.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,12 @@ class Network:
5959
'solo': [
6060
("localhost:50211", AccountId(0, 0, 3))
6161
],
62+
'localhost': [
63+
("localhost:50211", AccountId(0, 0, 3))
64+
],
65+
'local': [
66+
("localhost:50211", AccountId(0, 0, 3))
67+
],
6268
}
6369

6470
LEDGER_ID: Dict[str, bytes] = {

0 commit comments

Comments
 (0)