@valve-tech/chain-source 0.3.0 → 0.3.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +31 -9
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -6,13 +6,36 @@ 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.3.0] — 2026-05-04
9
+ ## [0.3.1] — 2026-05-04
10
10
 
11
- > **First release.** Part of the `valve-tech/evm-toolkit` v0.3.0
12
- > synchronized release line. All three packages in the toolkit
13
- > (`@valve-tech/chain-source`, `@valve-tech/gas-oracle`,
14
- > `@valve-tech/tx-tracker`) ship in lockstep from this version
15
- > onwards under a single `vX.Y.Z` tag.
11
+ > **First fully-synchronized release.** v0.3.0 was a partial publish:
12
+ > `@valve-tech/chain-source@0.3.0` made it onto npm, but the
13
+ > simultaneous `@valve-tech/gas-oracle@0.3.0` publish failed with an
14
+ > OIDC trusted-publisher mismatch (the gas-oracle record was pinned
15
+ > to the pre-rename `valve-tech/gas-oracle` repo, not the renamed
16
+ > `valve-tech/evm-toolkit`). The trusted-publisher record was fixed
17
+ > and v0.3.1 re-publishes all three packages at the same version to
18
+ > restore synced state.
19
+
20
+ ### Notes
21
+
22
+ - No functional change vs. v0.3.0. This package's contents are
23
+ byte-identical (still an `export {}` stub for the v0.3.x
24
+ implementation roadmap).
25
+ - Use v0.3.1 over v0.3.0 — they're identical in this package, but
26
+ v0.3.1 is the version where every toolkit package ships at the
27
+ same number.
28
+
29
+ ## [0.3.0] — 2026-05-04 — *partially published; superseded by 0.3.1*
30
+
31
+ > Published successfully here, but the simultaneous publishes for
32
+ > `@valve-tech/gas-oracle` and `@valve-tech/tx-tracker` did not land
33
+ > (npm OIDC trusted-publisher mismatch on gas-oracle, which then
34
+ > aborted the workflow before tx-tracker). All three packages were
35
+ > re-released as v0.3.1 to restore synced state.
36
+ >
37
+ > The v0.3.0 tarball remains on npm and is byte-identical to v0.3.1
38
+ > for this package.
16
39
 
17
40
  ### Added
18
41
 
@@ -27,9 +50,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
27
50
 
28
51
  ### Notes
29
52
 
53
+ - First release of this package. No published predecessor on npm.
30
54
  - The version starts at `0.3.0` rather than `0.1.0` because the
31
55
  toolkit converted to synchronized versioning at this release — all
32
- three packages share the same version going forward. This package
33
- has no published predecessor on npm; consumers can treat `0.3.0`
34
- as the initial release.
56
+ three packages share the same version going forward.
35
57
  - `viem ^2.0.0` is the only peer dependency. No runtime deps.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@valve-tech/chain-source",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Canonical EVM chain-observation primitive: a unified push-or-poll source for new blocks, mempool snapshots, on-demand receipt + tx lookups, and capability disclosure (HTTP / WS / per-method gating). Used as the shared foundation by @valve-tech/gas-oracle and @valve-tech/tx-tracker; consumable directly by anyone building their own derived view on chain state. viem-native. Part of the valve-tech/evm-toolkit synchronized release line — implementation lands in subsequent 0.3.x releases per docs/tx-tracker-spec.md.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/valve-tech/evm-toolkit/tree/main/packages/chain-source#readme",