bsv-wallet 0.9.0 → 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7959ebc47fc5d89d3d0db18f4136c925e228f6ea483553decffd4b9e7de9defc
4
- data.tar.gz: 2365a17193357b64d50c15a61aa12422b966b8f0155a6ab989b3bacb700a0929
3
+ metadata.gz: 0eee112e765a4b52ce2e04895d79c1b25c0d3f26a57d56eb0cac72005dce34f0
4
+ data.tar.gz: 003f406ef0001d9495013d17adf802dc8c5c98ddcd85ebed0dd2c4a5aa6c1c27
5
5
  SHA512:
6
- metadata.gz: 895d3c7a661e00b7d70dd833d12e4dd0e17ca2a8d0d8ba6a2c0ef622dfbac6bc0d6fb534a3fe06c14c0b1747981f1e0c9b8b61e9f164e3cc8fea222e5f9e70c1
7
- data.tar.gz: 3086ff6e236c57d903c947ac7c230148104993837b3d2f46ddef3a09a9b43da42bab1a5ea6f1c7b375b105cc7e8feffe2c8defbd83a325ec7ca0775dbd1f2ea1
6
+ metadata.gz: f9ca8b1c01639c0a898d8772caa893d06a17e10d41e2a80d51aec66c3c1e33b5d384e2f2ad0e717455d08444ae40dce4b661ea0c87e5ff287747be7ca9048e8f
7
+ data.tar.gz: 7a4abf0597b7c3b16a166e6a1d4bf7557a9de120a635a396b1b1fe10c5816ae723d53a6d66b7ac8c11cd6388a2d60346a23d7afd4845c746aba6284ca9bdfda1
data/CHANGELOG.md CHANGED
@@ -5,6 +5,18 @@ All notable changes to the `bsv-wallet` gem are documented here.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
6
6
  and this gem adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## 0.9.1 — 2026-04-16
9
+
10
+ ### Changed
11
+
12
+ - Raised `bsv-sdk` dependency floor to `>= 0.12.1` to pick up BEEF ancestry correctness fixes ([bsv-sdk#467](https://github.com/sgbett/bsv-ruby-sdk/issues/467), [bsv-sdk#468](https://github.com/sgbett/bsv-ruby-sdk/issues/468), HLR #466). Consumer impact: recently-received UTXOs that previously could not be re-broadcast now can — the wallet's `create_action` flow relies on `Transaction.from_beef` producing fully-wired ancestry, which the old SDK didn't do.
13
+
14
+ ### Fixed
15
+
16
+ - Removed redundant `store_transaction` call in `internalize_action` — `store_proofs_from_beef` already persists every transaction in the BEEF bundle, so the subject tx was being written twice. No behaviour change; minor cleanup. (#469)
17
+
18
+ **Related:** [wallet-toolbox#149](https://github.com/bsv-blockchain/wallet-toolbox/issues/149) — same architectural gap reported upstream.
19
+
8
20
  ## 0.9.0 — 2026-04-16
9
21
 
10
22
  ### Changed — **Breaking**
@@ -2,6 +2,6 @@
2
2
 
3
3
  module BSV
4
4
  module Wallet
5
- VERSION = '0.9.0'
5
+ VERSION = '0.9.1'
6
6
  end
7
7
  end
@@ -311,7 +311,6 @@ module BSV
311
311
  tx = extract_subject_transaction(beef)
312
312
 
313
313
  store_proofs_from_beef(beef)
314
- @storage.store_transaction(tx.txid_hex, tx.to_hex)
315
314
  process_internalize_outputs(tx, args[:outputs])
316
315
  has_proof = !beef.find_bump(tx.txid).nil?
317
316
  store_action(tx, args, status: has_proof ? 'completed' : 'unproven')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bsv-wallet
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simon Bettison
@@ -29,7 +29,7 @@ dependencies:
29
29
  requirements:
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 0.11.0
32
+ version: 0.12.1
33
33
  - - "<"
34
34
  - !ruby/object:Gem::Version
35
35
  version: '1.0'
@@ -39,7 +39,7 @@ dependencies:
39
39
  requirements:
40
40
  - - ">="
41
41
  - !ruby/object:Gem::Version
42
- version: 0.11.0
42
+ version: 0.12.1
43
43
  - - "<"
44
44
  - !ruby/object:Gem::Version
45
45
  version: '1.0'