solana_kit_rpc_subscriptions_api 0.9.3
solana_kit_rpc_subscriptions_api: ^0.9.3 copied to clipboard
Subscription method definitions for the Solana Kit Dart SDK.
Changelog #
All notable changes to this project will be documented in this file.
This changelog is managed by monochange.
0.9.3 - 2026-09-12 #
Changed #
- No package-specific changes were recorded;
solana_kit_rpc_subscriptions_apiwas updated to 0.9.3 as part of groupmain.
0.9.2 - 2026-09-06 #
Changed #
- No package-specific changes were recorded;
solana_kit_rpc_subscriptions_apiwas updated to 0.9.2 as part of groupmain.
0.9.1 - 2026-08-30 #
Changed #
- No package-specific changes were recorded;
solana_kit_rpc_subscriptions_apiwas updated to 0.9.1 as part of groupmain.
0.9.0 - 2026-08-30 #
π Documentation #
Unslop package docs and code comments
Rewrote every package README from a reader's perspective with verified, compilable examples, removed AI-tell phrasing from docs and code comments, and added a test that analyzes every Dart block in Markdown so examples cannot drift from the API.
0.8.0 - 2026-08-19 #
Changed #
- No package-specific changes were recorded;
solana_kit_rpc_subscriptions_apiwas updated to 0.8.0 as part of groupmain.
0.7.0 - 2026-08-18 #
0.6.0 - 2026-08-12 #
π Documentation #
Centralize package version documentation
Centralize package version metadata in versions.json and render package installation snippets from the shared MDT data source. Published package behavior is unchanged.
Owner: @ifiokjr Β· Review: PR #188
Point package README website badges at package docs
Updated package README website badges to link directly to each package's docs catalog entry and added missing package entries to the documentation website catalog/index.
0.5.0 - 2026-06-01 #
π₯ Breaking Change #
Raise minimum Dart SDK to 3.12
Raise the minimum supported Dart SDK constraint to ^3.12.0 across public Dart packages.
This is a breaking change because consumers must use Dart 3.12 or newer. Flutter consumers must use a Flutter SDK that bundles Dart 3.12 or newer.
environment:
sdk: ^3.12.0
Owner: Ifiok Jr. Β· Introduced in: 32d5d36
0.4.0 - 2026-05-30 #
π₯ Breaking Change #
Replace string encodings with typed enums
Replace string encoding fields with typed enums inβ¦
Replace string encoding fields with typed enums in subscription notification config classes.
The encoding field on AccountNotificationsConfig, BlockNotificationsConfig, and ProgramNotificationsConfig has been changed from String? to AccountEncoding? or TransactionEncoding? respectively. This is a breaking change: callers that previously passed raw strings like 'base64' or 'jsonParsed' must now use the corresponding enum values such as AccountEncoding.base64 or AccountEncoding.jsonParsed.
This aligns the subscriptions API with the same encoding-enum migration applied to the RPC request API, ensuring consistent type safety across both surfaces. The wire format is unchanged β the enums serialize to the same JSON strings β so no server-side compatibility is affected.
Migration example:
// Before
AccountNotificationsConfig(encoding: 'base64')
// After
AccountNotificationsConfig(encoding: AccountEncoding.base64)
Owner: Ifiok Jr. Β· Introduced in: 6fd8642 Β· Last updated in: 0ee3d60
π Changed #
Restructure release groups
Move program-specific and domain-specific packages out of the main release group into standalone release schedules with independent versioning. Core SDK packages remain synchronized in the main group.
Owner: Ifiok Jr. Β· Introduced in: fccec7f Β· Last updated in: 93b3cd3
π Fixed #
Add per-package coverage badges
Add codecov flags and per-package coverage badges to all package READMEs.
Owner: Ifiok Jr. Β· Introduced in: bed1b1f Β· Last updated in: 93b3cd3