@valve-tech/trueblocks-sdk 0.11.1 → 0.12.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -6,6 +6,27 @@ this file.
6
6
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
7
7
  and this project adheres to [Semantic Versioning](https://semver.org/).
8
8
 
9
+ ## [0.12.0] — 2026-05-11
10
+
11
+ ### Notes
12
+
13
+ - Synchronized release — no consumer-visible changes to this
14
+ package's published surface. Bumped in lockstep alongside the
15
+ v0.12.0 feature work in `@valve-tech/chain-source` (new
16
+ `getBlockByHash` API) and `@valve-tech/gas-oracle` (reorg-side
17
+ ring-lifecycle backfill that uses it).
18
+
19
+ ## [0.11.2] — 2026-05-11
20
+
21
+ ### Notes
22
+
23
+ - Synchronized release — no changes to this package. Republished at
24
+ 0.11.2 alongside the rest of the toolkit; the substantive fix is
25
+ in `@valve-tech/tx-tracker` (posture-consistency follow-up to
26
+ v0.11.1 — two additional strict-null read sites on persisted
27
+ `TxStatus` fields tightened defensively). See
28
+ `@valve-tech/tx-tracker`'s CHANGELOG for details.
29
+
9
30
  ## [0.11.1] — 2026-05-11
10
31
 
11
32
  ### Notes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@valve-tech/trueblocks-sdk",
3
- "version": "0.11.1",
3
+ "version": "0.12.0",
4
4
  "description": "Typed TypeScript HTTP client to a running TrueBlocks chifra daemon. Wraps chifra's REST surface (the same one served by `chifra daemon`) with TS types generated from the upstream OpenAPI spec; no Go runtime, no shelling-out.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/valve-tech/evm-toolkit/tree/main/packages/trueblocks-sdk#readme",