Skip to content

Commit 4c47f6a

Browse files
Merge pull request #355 from bsv-blockchain/origin/setOriginatorForAuthfetch
set originator
2 parents 24e60f9 + 77ff677 commit 4c47f6a

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file. The format
55
## Table of Contents
66

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

157158
### Security
158159

160+
---
161+
### [1.7.6] - 2025-09-09
162+
163+
### Fixed
164+
165+
- Set the originator of AuthFetch within the constructor so it properly uses originator.
166+
159167
---
160168

161169
### [1.7.5] - 2025-09-08

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bsv/sdk",
3-
"version": "1.7.5",
3+
"version": "1.7.6",
44
"type": "module",
55
"description": "BSV Blockchain Software Development Kit",
66
"main": "dist/cjs/mod.js",

src/auth/clients/AuthFetch.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ export class AuthFetch {
5555
this.wallet = wallet
5656
this.requestedCertificates = requestedCertificates
5757
this.sessionManager = sessionManager ?? new SessionManager()
58+
this.originator = originator
5859
}
5960

6061
/**

0 commit comments

Comments
 (0)