From f751cc1f4dba1ffc47b0a4372351e14e08e95baa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Mar 2026 17:58:00 +0000 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 22 ++++++++++---------- Cargo.lock | 14 ++++++------- cli/CHANGELOG.md | 20 ++++++++++++++++++ cli/Cargo.toml | 4 ++-- hyperstack-macros/CHANGELOG.md | 20 ++++++++++++++++++ hyperstack-macros/Cargo.toml | 2 +- hyperstack/CHANGELOG.md | 17 ++++++++++++++++ hyperstack/Cargo.toml | 10 ++++----- interpreter/CHANGELOG.md | 26 ++++++++++++++++++++++++ interpreter/Cargo.toml | 4 ++-- packages/hyperstack/CHANGELOG.md | 7 +++++++ packages/hyperstack/package.json | 2 +- rust/hyperstack-sdk/CHANGELOG.md | 15 ++++++++++++++ rust/hyperstack-sdk/Cargo.toml | 2 +- rust/hyperstack-server/CHANGELOG.md | 27 +++++++++++++++++++++++++ rust/hyperstack-server/Cargo.toml | 4 ++-- stacks/sdk/rust/CHANGELOG.md | 14 +++++++++++++ stacks/sdk/rust/Cargo.toml | 4 ++-- stacks/sdk/typescript/CHANGELOG.md | 17 ++++++++++++++++ stacks/sdk/typescript/package-lock.json | 6 +++--- stacks/sdk/typescript/package.json | 6 +++--- typescript/core/CHANGELOG.md | 8 ++++++++ typescript/core/package-lock.json | 4 ++-- typescript/core/package.json | 2 +- typescript/react/CHANGELOG.md | 23 +++++++++++++++++++++ typescript/react/package-lock.json | 6 +++--- typescript/react/package.json | 4 ++-- 27 files changed, 242 insertions(+), 48 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 985c5208..ba6a4ace 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,14 +1,14 @@ { - "hyperstack": "0.5.10", - "interpreter": "0.5.10", - "hyperstack-macros": "0.5.10", - "cli": "0.5.10", - "rust/hyperstack-sdk": "0.5.10", - "rust/hyperstack-server": "0.5.10", - "typescript/react": "0.5.10", - "typescript/core": "0.5.10", - "stacks/sdk/typescript": "0.5.10", - "stacks/sdk/rust": "0.5.10", - "packages/hyperstack": "0.5.10", + "hyperstack": "0.5.11", + "interpreter": "0.5.11", + "hyperstack-macros": "0.5.11", + "cli": "0.5.11", + "rust/hyperstack-sdk": "0.5.11", + "rust/hyperstack-server": "0.5.11", + "typescript/react": "0.5.11", + "typescript/core": "0.5.11", + "stacks/sdk/typescript": "0.5.11", + "stacks/sdk/rust": "0.5.11", + "packages/hyperstack": "0.5.11", "hyperstack-idl": "0.1.5" } diff --git a/Cargo.lock b/Cargo.lock index 8c9afc8f..4fac5224 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1625,7 +1625,7 @@ dependencies = [ [[package]] name = "hyperstack" -version = "0.5.10" +version = "0.5.11" dependencies = [ "anyhow", "bs58", @@ -1652,7 +1652,7 @@ dependencies = [ [[package]] name = "hyperstack-cli" -version = "0.5.10" +version = "0.5.11" dependencies = [ "anyhow", "chrono", @@ -1689,7 +1689,7 @@ dependencies = [ [[package]] name = "hyperstack-interpreter" -version = "0.5.10" +version = "0.5.11" dependencies = [ "bs58", "dashmap", @@ -1720,7 +1720,7 @@ dependencies = [ [[package]] name = "hyperstack-macros" -version = "0.5.10" +version = "0.5.11" dependencies = [ "bs58", "hex", @@ -1735,7 +1735,7 @@ dependencies = [ [[package]] name = "hyperstack-sdk" -version = "0.5.10" +version = "0.5.11" dependencies = [ "anyhow", "chrono", @@ -1753,7 +1753,7 @@ dependencies = [ [[package]] name = "hyperstack-server" -version = "0.5.10" +version = "0.5.11" dependencies = [ "anyhow", "base64 0.22.1", @@ -1790,7 +1790,7 @@ dependencies = [ [[package]] name = "hyperstack-stacks" -version = "0.5.10" +version = "0.5.11" dependencies = [ "hyperstack-sdk", "serde", diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index fd8aadda..035001a4 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [0.5.11](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-cli-v0.5.10...hyperstack-cli-v0.5.11) (2026-03-21) + + +### Features + +* Add AST versioning system with automatic migration support ([997706b](https://github.com/HyperTekOrg/hyperstack/commit/997706b2854fc2e95427ef6b67b710db35ad86ac)) +* Add AST versioning system with automatic migration support ([b62d08d](https://github.com/HyperTekOrg/hyperstack/commit/b62d08d99a579f323ea3f4a052fa90b83b269942)) + + +### Bug Fixes + +* Address code review feedback on error messages and examples ([262be58](https://github.com/HyperTekOrg/hyperstack/commit/262be585c0af291dbcec6a41bed14f3184b5d2b8)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * hyperstack-interpreter bumped from 0.5.10 to 0.5.11 + ## [0.5.10](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-cli-v0.5.9...hyperstack-cli-v0.5.10) (2026-03-19) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index b30b810b..c23865d9 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyperstack-cli" -version = "0.5.10" +version = "0.5.11" edition.workspace = true license-file = "LICENSE" repository.workspace = true @@ -31,7 +31,7 @@ colored = "2.1" chrono = "0.4" indicatif = "0.17" console = "0.15" -hyperstack-interpreter = { version = "0.5.10", path = "../interpreter" } +hyperstack-interpreter = { version = "0.5.11", path = "../interpreter" } hyperstack-idl = { path = "../hyperstack-idl", version = "0.1.5" } reqwest = { version = "0.11", default-features = false, features = ["json", "blocking", "rustls-tls"] } dirs = "5.0" diff --git a/hyperstack-macros/CHANGELOG.md b/hyperstack-macros/CHANGELOG.md index f7079af6..ec057321 100644 --- a/hyperstack-macros/CHANGELOG.md +++ b/hyperstack-macros/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [0.5.11](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.5.10...hyperstack-macros-v0.5.11) (2026-03-21) + + +### Features + +* Add AST versioning system with automatic migration support ([997706b](https://github.com/HyperTekOrg/hyperstack/commit/997706b2854fc2e95427ef6b67b710db35ad86ac)) +* Add AST versioning system with automatic migration support ([b62d08d](https://github.com/HyperTekOrg/hyperstack/commit/b62d08d99a579f323ea3f4a052fa90b83b269942)) + + +### Bug Fixes + +* Address clippy warnings in AST versioning module ([1d6540f](https://github.com/HyperTekOrg/hyperstack/commit/1d6540fd71a66e76a211de35e81a89cfe584dc66)) +* Address code review feedback on AST versioning ([1791986](https://github.com/HyperTekOrg/hyperstack/commit/1791986fa0e37f5762a57c166ecbcf6be26bcb0b)) +* Address code review feedback on into_latest, test assertions, and parsing ([da49bf9](https://github.com/HyperTekOrg/hyperstack/commit/da49bf9358362d27c307c8cc958a60b872ae2a2f)) +* Clarify UnsupportedVersion error message to mention migration support ([51fde69](https://github.com/HyperTekOrg/hyperstack/commit/51fde6960103340b0fd18158f1e6d3a5a2b398ea)) +* Make sync tests fail explicitly when source file not found ([c824e3d](https://github.com/HyperTekOrg/hyperstack/commit/c824e3dc74e102d57eb96485d9dad0c925d0bfc3)) +* Remove Serialize derive from Versioned*Spec enums to prevent duplicate keys ([73ad7b4](https://github.com/HyperTekOrg/hyperstack/commit/73ad7b4b8519a30b7dcfca66badd05daf1eee085)) +* Use CURRENT_AST_VERSION constant instead of hardcoded version ([5df9efe](https://github.com/HyperTekOrg/hyperstack/commit/5df9efe883d5880f6c440ae8e0577004041d53ca)) +* Use CURRENT_AST_VERSION in test assertions instead of hardcoded string ([6809f1a](https://github.com/HyperTekOrg/hyperstack/commit/6809f1a632f464e2c1c6b175458fd51a24712acd)) + ## [0.5.10](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.5.9...hyperstack-macros-v0.5.10) (2026-03-19) diff --git a/hyperstack-macros/Cargo.toml b/hyperstack-macros/Cargo.toml index 19194036..c445a2ac 100644 --- a/hyperstack-macros/Cargo.toml +++ b/hyperstack-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyperstack-macros" -version = "0.5.10" +version = "0.5.11" edition.workspace = true license-file = "LICENSE" repository.workspace = true diff --git a/hyperstack/CHANGELOG.md b/hyperstack/CHANGELOG.md index d7ba5c05..812ae7f4 100644 --- a/hyperstack/CHANGELOG.md +++ b/hyperstack/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.5.11](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-v0.5.10...hyperstack-v0.5.11) (2026-03-21) + + +### Miscellaneous Chores + +* **hyperstack:** Synchronize hyperstack versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * hyperstack-interpreter bumped from 0.5.10 to 0.5.11 + * hyperstack-macros bumped from 0.5.10 to 0.5.11 + * hyperstack-server bumped from 0.5.10 to 0.5.11 + * hyperstack-sdk bumped from 0.5.10 to 0.5.11 + ## [0.5.10](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-v0.5.9...hyperstack-v0.5.10) (2026-03-19) diff --git a/hyperstack/Cargo.toml b/hyperstack/Cargo.toml index c897c25e..cc14df1f 100644 --- a/hyperstack/Cargo.toml +++ b/hyperstack/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyperstack" -version = "0.5.10" +version = "0.5.11" edition.workspace = true license-file = "LICENSE" repository.workspace = true @@ -13,16 +13,16 @@ readme = "README.md" [dependencies] # Core interpreter - AST transformation runtime and VM -hyperstack-interpreter = { version = "0.5.10", path = "../interpreter", optional = true } +hyperstack-interpreter = { version = "0.5.11", path = "../interpreter", optional = true } # Macros - proc-macros for defining streams -hyperstack-macros = { version = "0.5.10", path = "../hyperstack-macros", optional = true } +hyperstack-macros = { version = "0.5.11", path = "../hyperstack-macros", optional = true } # Server - WebSocket server and projection handlers -hyperstack-server = { version = "0.5.10", path = "../rust/hyperstack-server", optional = true } +hyperstack-server = { version = "0.5.11", path = "../rust/hyperstack-server", optional = true } # SDK - Rust client for connecting to HyperStack servers -hyperstack-sdk = { version = "0.5.10", path = "../rust/hyperstack-sdk", optional = true } +hyperstack-sdk = { version = "0.5.11", path = "../rust/hyperstack-sdk", optional = true } # Runtime dependencies for macro-generated code (re-exported via hyperstack::runtime) tokio = { version = "1.0", features = ["full"], optional = true } diff --git a/interpreter/CHANGELOG.md b/interpreter/CHANGELOG.md index 9294ab29..f409729e 100644 --- a/interpreter/CHANGELOG.md +++ b/interpreter/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## [0.5.11](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-interpreter-v0.5.10...hyperstack-interpreter-v0.5.11) (2026-03-21) + + +### Features + +* Add AST versioning system with automatic migration support ([997706b](https://github.com/HyperTekOrg/hyperstack/commit/997706b2854fc2e95427ef6b67b710db35ad86ac)) +* Add AST versioning system with automatic migration support ([b62d08d](https://github.com/HyperTekOrg/hyperstack/commit/b62d08d99a579f323ea3f4a052fa90b83b269942)) + + +### Bug Fixes + +* Address code review feedback on AST versioning ([1791986](https://github.com/HyperTekOrg/hyperstack/commit/1791986fa0e37f5762a57c166ecbcf6be26bcb0b)) +* Address code review feedback on into_latest, test assertions, and parsing ([da49bf9](https://github.com/HyperTekOrg/hyperstack/commit/da49bf9358362d27c307c8cc958a60b872ae2a2f)) +* Clarify UnsupportedVersion error message to mention migration support ([51fde69](https://github.com/HyperTekOrg/hyperstack/commit/51fde6960103340b0fd18158f1e6d3a5a2b398ea)) +* Make sync tests fail explicitly when source file not found ([c824e3d](https://github.com/HyperTekOrg/hyperstack/commit/c824e3dc74e102d57eb96485d9dad0c925d0bfc3)) +* Remove Serialize derive from Versioned*Spec enums to prevent duplicate keys ([73ad7b4](https://github.com/HyperTekOrg/hyperstack/commit/73ad7b4b8519a30b7dcfca66badd05daf1eee085)) +* Use CURRENT_AST_VERSION constant instead of hardcoded version ([5df9efe](https://github.com/HyperTekOrg/hyperstack/commit/5df9efe883d5880f6c440ae8e0577004041d53ca)) +* Use CURRENT_AST_VERSION in test assertions instead of hardcoded string ([6809f1a](https://github.com/HyperTekOrg/hyperstack/commit/6809f1a632f464e2c1c6b175458fd51a24712acd)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * hyperstack-macros bumped from 0.5.10 to 0.5.11 + ## [0.5.10](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-interpreter-v0.5.9...hyperstack-interpreter-v0.5.10) (2026-03-19) diff --git a/interpreter/Cargo.toml b/interpreter/Cargo.toml index c9a6245f..75d68bb9 100644 --- a/interpreter/Cargo.toml +++ b/interpreter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyperstack-interpreter" -version = "0.5.10" +version = "0.5.11" edition.workspace = true license-file = "LICENSE" repository.workspace = true @@ -31,7 +31,7 @@ once_cell = "1.20" percent-encoding = "2" reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] } futures = "0.3" -hyperstack-macros = { version = "0.5.10", path = "../hyperstack-macros" } +hyperstack-macros = { version = "0.5.11", path = "../hyperstack-macros" } hyperstack-idl = { path = "../hyperstack-idl", version = "0.1.5" } # OpenTelemetry for distributed tracing and metrics (optional, behind 'otel' feature) diff --git a/packages/hyperstack/CHANGELOG.md b/packages/hyperstack/CHANGELOG.md index 6437d1b4..ba67d564 100644 --- a/packages/hyperstack/CHANGELOG.md +++ b/packages/hyperstack/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.5.11](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-npm-v0.5.10...hyperstack-npm-v0.5.11) (2026-03-21) + + +### Miscellaneous Chores + +* **hyperstack-npm:** Synchronize hyperstack versions + ## [0.5.10](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-npm-v0.5.9...hyperstack-npm-v0.5.10) (2026-03-19) diff --git a/packages/hyperstack/package.json b/packages/hyperstack/package.json index 80e40e34..d2baf2b7 100644 --- a/packages/hyperstack/package.json +++ b/packages/hyperstack/package.json @@ -1,6 +1,6 @@ { "name": "hyperstack-cli", - "version": "0.5.10", + "version": "0.5.11", "description": "Hyperstack CLI - Real-time Solana streaming pipelines", "bin": { "hyperstack-cli": "./bin/hs.js" diff --git a/rust/hyperstack-sdk/CHANGELOG.md b/rust/hyperstack-sdk/CHANGELOG.md index 0579996a..f99e8dd8 100644 --- a/rust/hyperstack-sdk/CHANGELOG.md +++ b/rust/hyperstack-sdk/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [0.5.11](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-sdk-v0.5.10...hyperstack-sdk-v0.5.11) (2026-03-21) + + +### Features + +* Make snapshots optional with cursor-based filtering (HYP-148) ([46be9aa](https://github.com/HyperTekOrg/hyperstack/commit/46be9aa235d28a5c1ebe3f32ca94068ada9b245f)) +* **rust-sdk:** Support optional snapshots and cursor-based resume ([9c5fcc0](https://github.com/HyperTekOrg/hyperstack/commit/9c5fcc0a063f8696277bb190ab4fa14e9e0f8e73)) +* **sdk:** Add builder methods and React hooks for new subscription options ([1f7f95b](https://github.com/HyperTekOrg/hyperstack/commit/1f7f95be29e70391c74cec425ee2badd1f87e0bc)) + + +### Bug Fixes + +* add camelCase serde rename to Subscription struct ([522d7ae](https://github.com/HyperTekOrg/hyperstack/commit/522d7ae2b3d77bbd8cbd9c3ca92764138c826e9c)) +* **rust-sdk:** Wire up new subscription fields through stream layer ([8f4fba0](https://github.com/HyperTekOrg/hyperstack/commit/8f4fba016c6a530d6462b4711b19acc1ca670452)) + ## [0.5.10](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-sdk-v0.5.9...hyperstack-sdk-v0.5.10) (2026-03-19) diff --git a/rust/hyperstack-sdk/Cargo.toml b/rust/hyperstack-sdk/Cargo.toml index 1d3edc5b..982bfc32 100644 --- a/rust/hyperstack-sdk/Cargo.toml +++ b/rust/hyperstack-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyperstack-sdk" -version = "0.5.10" +version = "0.5.11" edition.workspace = true license = "MIT" repository.workspace = true diff --git a/rust/hyperstack-server/CHANGELOG.md b/rust/hyperstack-server/CHANGELOG.md index 21610723..7fb57f7f 100644 --- a/rust/hyperstack-server/CHANGELOG.md +++ b/rust/hyperstack-server/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## [0.5.11](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-server-v0.5.10...hyperstack-server-v0.5.11) (2026-03-21) + + +### Features + +* Make snapshots optional with cursor-based filtering (HYP-148) ([46be9aa](https://github.com/HyperTekOrg/hyperstack/commit/46be9aa235d28a5c1ebe3f32ca94068ada9b245f)) +* **server:** Add optional snapshot and cursor-based filtering to WebSocket protocol ([da7b486](https://github.com/HyperTekOrg/hyperstack/commit/da7b4862375de7a25c0e254d6e90aa2c1e64c546)) + + +### Bug Fixes + +* add camelCase serde rename to Subscription struct ([fc68ea5](https://github.com/HyperTekOrg/hyperstack/commit/fc68ea51cf1074e4442f7264322908901f1e041e)) +* add truncate after sorting by _seq to respect snapshot_limit ([0782e66](https://github.com/HyperTekOrg/hyperstack/commit/0782e666a33ac9326f53c0b9f5556d66a663badc)) +* apply snapshot_limit after key filter in websocket subscriptions ([12f8f75](https://github.com/HyperTekOrg/hyperstack/commit/12f8f755d2a125f4a255c4da79e699dab842cdd4)) +* apply snapshot_limit when no after cursor is provided ([b3850e6](https://github.com/HyperTekOrg/hyperstack/commit/b3850e6e411576c31bb846508230dd7afda91cb1)) +* correct snapshot ordering when using cursor with limit ([6f4a4d3](https://github.com/HyperTekOrg/hyperstack/commit/6f4a4d36132809ec91cd4a542e4239b82ca83eca)) +* Fix _seq numeric comparison and missing borrow_and_update in cache and WebSocket handlers ([7b2c06c](https://github.com/HyperTekOrg/hyperstack/commit/7b2c06cb699b1f8bc1503a31a190e08a91996158)) +* make snapshot_limit deterministic by sorting before truncation ([1d62917](https://github.com/HyperTekOrg/hyperstack/commit/1d629172fc023aff7576bd79c13351ce12535df7)) +* sort entities by _seq before applying snapshot_limit ([6abba2a](https://github.com/HyperTekOrg/hyperstack/commit/6abba2a923bb725465f579e6f4ee25e2d68ec03e)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * hyperstack-interpreter bumped from 0.5.10 to 0.5.11 + ## [0.5.10](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-server-v0.5.9...hyperstack-server-v0.5.10) (2026-03-19) diff --git a/rust/hyperstack-server/Cargo.toml b/rust/hyperstack-server/Cargo.toml index 18e23985..9d654bd5 100644 --- a/rust/hyperstack-server/Cargo.toml +++ b/rust/hyperstack-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyperstack-server" -version = "0.5.10" +version = "0.5.11" edition.workspace = true license-file = "LICENSE" repository.workspace = true @@ -30,7 +30,7 @@ yellowstone-vixen-proto = { workspace = true, features = ["stream"] } yellowstone-vixen-yellowstone-grpc-source = { workspace = true } # Interpreter library -hyperstack-interpreter = { version = "0.5.10", path = "../../interpreter" } +hyperstack-interpreter = { version = "0.5.11", path = "../../interpreter" } # Async utilities tokio-util = "0.7" diff --git a/stacks/sdk/rust/CHANGELOG.md b/stacks/sdk/rust/CHANGELOG.md index 9895ce46..12484a48 100644 --- a/stacks/sdk/rust/CHANGELOG.md +++ b/stacks/sdk/rust/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.5.11](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-stacks-v0.5.10...hyperstack-stacks-v0.5.11) (2026-03-21) + + +### Miscellaneous Chores + +* **hyperstack-stacks:** Synchronize hyperstack versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * hyperstack-sdk bumped from 0.5.10 to 0.5.11 + ## [0.5.10](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-stacks-v0.5.9...hyperstack-stacks-v0.5.10) (2026-03-19) diff --git a/stacks/sdk/rust/Cargo.toml b/stacks/sdk/rust/Cargo.toml index 1bd36730..df3726e4 100644 --- a/stacks/sdk/rust/Cargo.toml +++ b/stacks/sdk/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyperstack-stacks" -version = "0.5.10" +version = "0.5.11" edition.workspace = true license = "MIT" repository.workspace = true @@ -17,6 +17,6 @@ ore = [] full = ["ore"] [dependencies] -hyperstack-sdk = { version = "0.5.10", path = "../../../rust/hyperstack-sdk" } +hyperstack-sdk = { version = "0.5.11", path = "../../../rust/hyperstack-sdk" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/stacks/sdk/typescript/CHANGELOG.md b/stacks/sdk/typescript/CHANGELOG.md index 7c53c1db..e36bfc05 100644 --- a/stacks/sdk/typescript/CHANGELOG.md +++ b/stacks/sdk/typescript/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.5.11](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-stacks-v0.5.10...hyperstack-stacks-v0.5.11) (2026-03-21) + + +### Miscellaneous Chores + +* **hyperstack-stacks:** Synchronize hyperstack versions + + +### Dependencies + +* The following workspace dependencies were updated + * devDependencies + * hyperstack-typescript bumped from file:../../../typescript/core to 0.5.11 + * peerDependencies + * hyperstack-react bumped from >=0.5.10 to >=0.5.11 + * hyperstack-typescript bumped from >=0.5.10 to >=0.5.11 + ## [0.5.10](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-stacks-v0.5.9...hyperstack-stacks-v0.5.10) (2026-03-19) diff --git a/stacks/sdk/typescript/package-lock.json b/stacks/sdk/typescript/package-lock.json index f081e791..5c65a42f 100644 --- a/stacks/sdk/typescript/package-lock.json +++ b/stacks/sdk/typescript/package-lock.json @@ -1,12 +1,12 @@ { "name": "hyperstack-stacks", - "version": "0.5.10", + "version": "0.5.11", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "hyperstack-stacks", - "version": "0.5.10", + "version": "0.5.11", "license": "MIT", "dependencies": { "zod": "^3.24.1" @@ -31,7 +31,7 @@ }, "../../../typescript/core": { "name": "hyperstack-typescript", - "version": "0.5.10", + "version": "0.5.11", "dev": true, "license": "MIT", "dependencies": { diff --git a/stacks/sdk/typescript/package.json b/stacks/sdk/typescript/package.json index 9dcd0cf3..a29e2ad9 100644 --- a/stacks/sdk/typescript/package.json +++ b/stacks/sdk/typescript/package.json @@ -1,6 +1,6 @@ { "name": "hyperstack-stacks", - "version": "0.5.10", + "version": "0.5.11", "description": "Protocol stacks for Hyperstack - ready-to-use Solana data streams", "type": "module", "main": "dist/index.cjs", @@ -28,8 +28,8 @@ "prepublishOnly": "npm run build" }, "peerDependencies": { - "hyperstack-react": ">=0.5.10", - "hyperstack-typescript": ">=0.5.10" + "hyperstack-react": ">=0.5.11", + "hyperstack-typescript": ">=0.5.11" }, "dependencies": { "zod": "^3.24.1" diff --git a/typescript/core/CHANGELOG.md b/typescript/core/CHANGELOG.md index 5b798083..f16b1a11 100644 --- a/typescript/core/CHANGELOG.md +++ b/typescript/core/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.5.11](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-typescript-v0.5.10...hyperstack-typescript-v0.5.11) (2026-03-21) + + +### Features + +* Make snapshots optional with cursor-based filtering (HYP-148) ([46be9aa](https://github.com/HyperTekOrg/hyperstack/commit/46be9aa235d28a5c1ebe3f32ca94068ada9b245f)) +* **typescript-sdk:** Support optional snapshots and cursor-based resume ([3f239e9](https://github.com/HyperTekOrg/hyperstack/commit/3f239e9d9fa2f992b7d8eaa1c467c541af9a8a9a)) + ## [0.5.10](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-typescript-v0.5.9...hyperstack-typescript-v0.5.10) (2026-03-19) diff --git a/typescript/core/package-lock.json b/typescript/core/package-lock.json index 883d9e76..54dfde4d 100644 --- a/typescript/core/package-lock.json +++ b/typescript/core/package-lock.json @@ -1,12 +1,12 @@ { "name": "hyperstack-typescript", - "version": "0.5.10", + "version": "0.5.11", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "hyperstack-typescript", - "version": "0.5.10", + "version": "0.5.11", "license": "MIT", "dependencies": { "pako": "^2.1.0", diff --git a/typescript/core/package.json b/typescript/core/package.json index cf0a92cf..c5146711 100644 --- a/typescript/core/package.json +++ b/typescript/core/package.json @@ -1,6 +1,6 @@ { "name": "hyperstack-typescript", - "version": "0.5.10", + "version": "0.5.11", "type": "module", "description": "Pure TypeScript SDK for the Hyperstack Solana streaming platform", "main": "dist/index.js", diff --git a/typescript/react/CHANGELOG.md b/typescript/react/CHANGELOG.md index ceef44e7..2a74ee94 100644 --- a/typescript/react/CHANGELOG.md +++ b/typescript/react/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## [0.5.11](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-react-v0.5.10...hyperstack-react-v0.5.11) (2026-03-21) + + +### Features + +* Make snapshots optional with cursor-based filtering (HYP-148) ([46be9aa](https://github.com/HyperTekOrg/hyperstack/commit/46be9aa235d28a5c1ebe3f32ca94068ada9b245f)) +* **sdk:** Add builder methods and React hooks for new subscription options ([1f7f95b](https://github.com/HyperTekOrg/hyperstack/commit/1f7f95be29e70391c74cec425ee2badd1f87e0bc)) +* **typescript-sdk:** Support optional snapshots and cursor-based resume ([3f239e9](https://github.com/HyperTekOrg/hyperstack/commit/3f239e9d9fa2f992b7d8eaa1c467c541af9a8a9a)) + + +### Bug Fixes + +* guard refresh() isLoading behind withSnapshot check ([18ec45d](https://github.com/HyperTekOrg/hyperstack/commit/18ec45d17f7851e4dce85897a2bf90dff8f0c1da)) +* guard setIsLoading(true) when withSnapshot is false ([3808e59](https://github.com/HyperTekOrg/hyperstack/commit/3808e59d65ccaa1af24477cf29b64e38c718b340)) +* prevent isLoading stuck when withSnapshot is false in view hooks ([b8a3692](https://github.com/HyperTekOrg/hyperstack/commit/b8a369264feba1245a53c8b550fb09875382a03c)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * hyperstack-typescript bumped from ^0.5.10 to ^0.5.11 + ## [0.5.10](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-react-v0.5.9...hyperstack-react-v0.5.10) (2026-03-19) diff --git a/typescript/react/package-lock.json b/typescript/react/package-lock.json index ae2cc97e..b4ae99b1 100644 --- a/typescript/react/package-lock.json +++ b/typescript/react/package-lock.json @@ -1,12 +1,12 @@ { "name": "hyperstack-react", - "version": "0.5.10", + "version": "0.5.11", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "hyperstack-react", - "version": "0.5.10", + "version": "0.5.11", "license": "MIT", "dependencies": { "hyperstack-typescript": "^0.5.9", @@ -35,7 +35,7 @@ }, "../core": { "name": "hyperstack-typescript", - "version": "0.5.10", + "version": "0.5.11", "license": "MIT", "dependencies": { "pako": "^2.1.0", diff --git a/typescript/react/package.json b/typescript/react/package.json index 2a0bd060..e52fe923 100644 --- a/typescript/react/package.json +++ b/typescript/react/package.json @@ -1,6 +1,6 @@ { "name": "hyperstack-react", - "version": "0.5.10", + "version": "0.5.11", "type": "module", "description": "React SDK for the Hyperstack Solana developer platform", "main": "dist/index.js", @@ -42,7 +42,7 @@ "zustand": "^4.0.0 || ^5.0.0" }, "dependencies": { - "hyperstack-typescript": "^0.5.10", + "hyperstack-typescript": "^0.5.11", "zustand": "^4.0.0" }, "devDependencies": {