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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file. The format
## Table of Contents

- [Unreleased](#unreleased)
- [1.7.6 - 2025-09-09](#176---2025-09-08)
- [1.7.5 - 2025-09-08](#175---2025-09-08)
- [1.7.4 - 2025-09-08](#174---2025-09-08)
- [1.7.3 - 2025-09-05](#173---2025-09-05)
Expand Down Expand Up @@ -156,6 +157,13 @@ All notable changes to this project will be documented in this file. The format

### Security

---
### [1.7.6] - 2025-09-09

### Fixed

- Set the originator of AuthFetch within the constructor so it properly uses originator.

---

### [1.7.5] - 2025-09-08
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bsv/sdk",
"version": "1.7.5",
"version": "1.7.6",
"type": "module",
"description": "BSV Blockchain Software Development Kit",
"main": "dist/cjs/mod.js",
Expand Down
1 change: 1 addition & 0 deletions src/auth/clients/AuthFetch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ export class AuthFetch {
this.wallet = wallet
this.requestedCertificates = requestedCertificates
this.sessionManager = sessionManager ?? new SessionManager()
this.originator = originator
}

/**
Expand Down