Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file. The format

## Table of Contents

- [1.2.6 - 2025-07-21](#126---2025-07-21)
- [1.2.5 - 2025-07-16](#125---2025-07-16)
- [1.2.4 - 2025-06-30](#124---2025-06-30)
- [1.2.3 - 2025-06-30](#123---2025-06-30)
Expand Down Expand Up @@ -40,6 +41,21 @@ All notable changes to this project will be documented in this file. The format
- [1.1.0 - 2024-08-19](#110---2024-08-19)
- [1.0.0 - 2024-06-06](#100---2024-06-06)

## [1.2.6] - 2025-07-21

### Fixed
- Fixed BEEF validation stability issue where `IsValid` returned inconsistent results (#211)
- Fixed BEEF parsing panic when encountering transactions without merkle paths (#96)
- Fixed validation logic to properly check if transactions appear in BUMPs
- Fixed README installation instructions to use `go get` instead of `go install` (#202)

### Changed
- Renamed `SortTxs()` method to `ValidateTransactions()` for clarity
- Improved BEEF validation to handle transactions without source transactions gracefully
- Refactored BEEF implementation to use `chainhash.Hash` directly as map keys instead of string conversions for improved performance
- Added `*ByHash` versions of BEEF methods (`findTxidByHash`, `FindBumpByHash`, etc.) to avoid unnecessary hash/string conversions
- Updated `collectAncestors` to return `[]chainhash.Hash` instead of `[]string`

## [1.2.5] - 2025-07-16

### Changed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ The BSV Blockchain Libraries Project aims to structure and maintain a middleware

### Installation

To install the SDK, run:
To add the SDK to your Go module:

```bash
go install github.com/bsv-blockchain/go-sdk
go get github.com/bsv-blockchain/go-sdk
```

### Basic Usage
Expand Down
Loading
Loading