Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"hyperstack": "0.5.3",
"interpreter": "0.5.3",
"hyperstack-macros": "0.5.3",
"cli": "0.5.3",
"rust/hyperstack-sdk": "0.5.3",
"rust/hyperstack-server": "0.5.3",
"typescript/react": "0.5.3",
"typescript/core": "0.5.3",
"stacks/sdk/typescript": "0.5.3",
"stacks/sdk/rust": "0.5.3",
"packages/hyperstack": "0.5.3",
"hyperstack-idl": "0.1.0"
"hyperstack": "0.5.4",
"interpreter": "0.5.4",
"hyperstack-macros": "0.5.4",
"cli": "0.5.4",
"rust/hyperstack-sdk": "0.5.4",
"rust/hyperstack-server": "0.5.4",
"typescript/react": "0.5.4",
"typescript/core": "0.5.4",
"stacks/sdk/typescript": "0.5.4",
"stacks/sdk/rust": "0.5.4",
"packages/hyperstack": "0.5.4",
"hyperstack-idl": "0.1.1"
}
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [0.5.4](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-cli-v0.5.3...hyperstack-cli-v0.5.4) (2026-02-25)


### Features

* **cli:** implement hs idl connect command with hyperstack suggestions ([6579a84](https://github.com/HyperTekOrg/hyperstack/commit/6579a84b1bd6018255e707fc3fb7cf2d16a050ee))
* **cli:** implement hs idl data commands (errors through discriminator) ([87267dd](https://github.com/HyperTekOrg/hyperstack/commit/87267ddb1df671c162ffdc0a3b2c539dadcb1660))
* **cli:** implement hs idl data commands (summary through type) ([60e3efe](https://github.com/HyperTekOrg/hyperstack/commit/60e3efe8dfddba45ffb17b0cbbd550322ad19b76))
* **cli:** implement hs idl relationship commands ([8fccdcb](https://github.com/HyperTekOrg/hyperstack/commit/8fccdcbdf6a198cbe1127182fc5efff3c47ccc3c))
* **cli:** scaffold hs idl subcommand structure + ci publish order ([64f3f4c](https://github.com/HyperTekOrg/hyperstack/commit/64f3f4cffd286092886496e2da920d353204de6f))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* hyperstack-interpreter bumped from 0.5.3 to 0.5.4

## [0.5.3](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-cli-v0.5.2...hyperstack-cli-v0.5.3) (2026-02-20)


Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hyperstack-cli"
version = "0.5.3"
version = "0.5.4"
edition.workspace = true
license-file = "LICENSE"
repository.workspace = true
Expand Down Expand Up @@ -31,7 +31,7 @@ colored = "2.1"
chrono = "0.4"
indicatif = "0.17"
console = "0.15"
hyperstack-interpreter = { version = "0.5.3", path = "../interpreter" }
hyperstack-interpreter = { version = "0.5.4", path = "../interpreter" }
hyperstack-idl = { path = "../hyperstack-idl" }
reqwest = { version = "0.11", default-features = false, features = ["json", "blocking", "rustls-tls"] }
dirs = "5.0"
Expand Down
23 changes: 23 additions & 0 deletions hyperstack-idl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Changelog

## [0.1.1](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-idl-v0.1.0...hyperstack-idl-v0.1.1) (2026-02-25)


### Features

* **idl:** add compute_discriminator public API ([48de0ae](https://github.com/HyperTekOrg/hyperstack/commit/48de0ae92ac45747208260befa977ac2363225fd))
* **idl:** add connect analysis module for path finding ([75ea359](https://github.com/HyperTekOrg/hyperstack/commit/75ea35917112ce5717125bd43bdc29be147d44be))
* **idl:** add constants field support to IdlSpec ([d9af98f](https://github.com/HyperTekOrg/hyperstack/commit/d9af98fbd101a8821614326ac8b4976d25a4c2d4))
* **idl:** add PDA graph analysis ([db9db3c](https://github.com/HyperTekOrg/hyperstack/commit/db9db3c793b5d0096bf500c0c16a22a7ca2e6427))
* **idl:** add relations analysis module ([bdc52eb](https://github.com/HyperTekOrg/hyperstack/commit/bdc52ebbb273c6ec52f6752e4eb40e35b98f8848))
* **idl:** add search module with fuzzy matching and structured errors ([541a8a5](https://github.com/HyperTekOrg/hyperstack/commit/541a8a51e91f2e64e2c4d6a1fe02e0f69c243284))
* **idl:** add snake_case/pascal_case utilities ([1eba345](https://github.com/HyperTekOrg/hyperstack/commit/1eba345f699892fd96916efa33b665b6cf39b002))
* **idl:** add type graph analysis + release-please independent versioning ([a64a26d](https://github.com/HyperTekOrg/hyperstack/commit/a64a26df62d6db190dd7a7f0762bf8144aa0e6a2))
* **idl:** create hyperstack-idl crate skeleton ([90712df](https://github.com/HyperTekOrg/hyperstack/commit/90712df6ece12a8bda63941417ff96361eaf59c1))
* **idl:** extract core IDL parsing types into hyperstack-idl ([1b1ea56](https://github.com/HyperTekOrg/hyperstack/commit/1b1ea5616e2d7ea3ea904c026491aa61000dd8b2))
* **idl:** extract snapshot types with backwards-compatible HashMap handling ([fe882e7](https://github.com/HyperTekOrg/hyperstack/commit/fe882e739ac5162d9e281ce385cc7e5de7729f02))


### Bug Fixes

* **idl:** remove redundant closure in pda_graph (clippy) ([4566a9d](https://github.com/HyperTekOrg/hyperstack/commit/4566a9db588199bf080eb77083052ba7a2bdcaad))
2 changes: 1 addition & 1 deletion hyperstack-idl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hyperstack-idl"
version = "0.1.0"
version = "0.1.1"
edition.workspace = true
license-file = "LICENSE"
repository.workspace = true
Expand Down
18 changes: 18 additions & 0 deletions hyperstack-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [0.5.4](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.5.3...hyperstack-macros-v0.5.4) (2026-02-25)


### Features

* add HashMap type support, auto-derive discriminators, and to_json_value codegen ([7e81e3d](https://github.com/HyperTekOrg/hyperstack/commit/7e81e3d9802ad25987439841b7e4dd0f45232386))


### Bug Fixes

* - Instantiate UrlResolverClient once at startup on VmHandler instead of per-request ([f346bfa](https://github.com/HyperTekOrg/hyperstack/commit/f346bfa2131d2cb1ae3ea98e03b25e9351f25eca))
* add serde derives to IDL-generated account and custom types ([cada9f5](https://github.com/HyperTekOrg/hyperstack/commit/cada9f53f00112b7048f62743dd9aea0ffb07baa))
* eliminate duplicate url_path qualification logic in sections.rs ([6ed8e94](https://github.com/HyperTekOrg/hyperstack/commit/6ed8e948f4490e2aa659c7c25812fdcc968ac64e))
* re-queue URL resolver requests on empty URL or failure ([dc204a2](https://github.com/HyperTekOrg/hyperstack/commit/dc204a2cfae505b7cf603b4eb56b39e0d8277f97))
* resolve instruction field prefix for camelCase IDL instruction names ([df75acf](https://github.com/HyperTekOrg/hyperstack/commit/df75acfca07371ffbda8f410bcc777a42f62627a))
* use transaction_accounts_include in prefilter builder ([2df88f8](https://github.com/HyperTekOrg/hyperstack/commit/2df88f890e7549a2d5dadee9703e2cb31cd866ef))
* validate HTTP method input in ResolveAttributeArgs parser to support only 'GET' and 'POST' ([fb80a48](https://github.com/HyperTekOrg/hyperstack/commit/fb80a48ebf603a13d72d67cd6aedb602d5818cc3))

## [0.5.3](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.5.2...hyperstack-macros-v0.5.3) (2026-02-20)


Expand Down
2 changes: 1 addition & 1 deletion hyperstack-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hyperstack-macros"
version = "0.5.3"
version = "0.5.4"
edition.workspace = true
license-file = "LICENSE"
repository.workspace = true
Expand Down
17 changes: 17 additions & 0 deletions hyperstack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [0.5.4](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-v0.5.3...hyperstack-v0.5.4) (2026-02-25)


### Features

* add HashMap type support, auto-derive discriminators, and to_json_value codegen ([7e81e3d](https://github.com/HyperTekOrg/hyperstack/commit/7e81e3d9802ad25987439841b7e4dd0f45232386))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* hyperstack-interpreter bumped from 0.5.3 to 0.5.4
* hyperstack-macros bumped from 0.5.3 to 0.5.4
* hyperstack-server bumped from 0.5.3 to 0.5.4
* hyperstack-sdk bumped from 0.5.3 to 0.5.4

## [0.5.3](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-v0.5.2...hyperstack-v0.5.3) (2026-02-20)


Expand Down
10 changes: 5 additions & 5 deletions hyperstack/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hyperstack"
version = "0.5.3"
version = "0.5.4"
edition.workspace = true
license-file = "LICENSE"
repository.workspace = true
Expand All @@ -13,16 +13,16 @@ readme = "README.md"

[dependencies]
# Core interpreter - AST transformation runtime and VM
hyperstack-interpreter = { version = "0.5.3", path = "../interpreter", optional = true }
hyperstack-interpreter = { version = "0.5.4", path = "../interpreter", optional = true }

# Macros - proc-macros for defining streams
hyperstack-macros = { version = "0.5.3", path = "../hyperstack-macros", optional = true }
hyperstack-macros = { version = "0.5.4", path = "../hyperstack-macros", optional = true }

# Server - WebSocket server and projection handlers
hyperstack-server = { version = "0.5.3", path = "../rust/hyperstack-server", optional = true }
hyperstack-server = { version = "0.5.4", path = "../rust/hyperstack-server", optional = true }

# SDK - Rust client for connecting to HyperStack servers
hyperstack-sdk = { version = "0.5.3", path = "../rust/hyperstack-sdk", optional = true }
hyperstack-sdk = { version = "0.5.4", 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 }
Expand Down
20 changes: 20 additions & 0 deletions interpreter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## [0.5.4](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-interpreter-v0.5.3...hyperstack-interpreter-v0.5.4) (2026-02-25)


### Bug Fixes

* add hashMap IDL type variant to support Metaplex token metadata SDK generation ([21a81ad](https://github.com/HyperTekOrg/hyperstack/commit/21a81ada3b8325295428de6c0cb5eaaedcc4f215))
* improve error handling in UrlResolverClient for out-of-bounds access ([540aeef](https://github.com/HyperTekOrg/hyperstack/commit/540aeefed35be873067f41fc14daa205c4e959d9))


### Performance Improvements

* parallelize URL batch resolution using join_all ([e252a8e](https://github.com/HyperTekOrg/hyperstack/commit/e252a8ea2f91b7b7e0dc266586d670e98bae0cfb))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* hyperstack-macros bumped from 0.5.3 to 0.5.4

## [0.5.3](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-interpreter-v0.5.2...hyperstack-interpreter-v0.5.3) (2026-02-20)


Expand Down
4 changes: 2 additions & 2 deletions interpreter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hyperstack-interpreter"
version = "0.5.3"
version = "0.5.4"
edition.workspace = true
license-file = "LICENSE"
repository.workspace = true
Expand All @@ -27,7 +27,7 @@ sha2 = "0.10"
tracing = "0.1"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
futures = "0.3"
hyperstack-macros = { version = "0.5.3", path = "../hyperstack-macros" }
hyperstack-macros = { version = "0.5.4", path = "../hyperstack-macros" }
hyperstack-idl = { path = "../hyperstack-idl" }

# OpenTelemetry for distributed tracing and metrics (optional, behind 'otel' feature)
Expand Down
7 changes: 7 additions & 0 deletions packages/hyperstack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.5.4](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-npm-v0.5.3...hyperstack-npm-v0.5.4) (2026-02-25)


### Miscellaneous Chores

* **hyperstack-npm:** Synchronize hyperstack versions

## [0.5.3](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-npm-v0.5.2...hyperstack-npm-v0.5.3) (2026-02-20)


Expand Down
2 changes: 1 addition & 1 deletion packages/hyperstack/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hyperstack-cli",
"version": "0.5.3",
"version": "0.5.4",
"description": "Hyperstack CLI - Real-time Solana streaming pipelines",
"bin": {
"hyperstack-cli": "./bin/hs.js"
Expand Down
7 changes: 7 additions & 0 deletions rust/hyperstack-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.5.4](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-sdk-v0.5.3...hyperstack-sdk-v0.5.4) (2026-02-25)


### Miscellaneous Chores

* **hyperstack-sdk:** Synchronize hyperstack versions

## [0.5.3](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-sdk-v0.5.2...hyperstack-sdk-v0.5.3) (2026-02-20)


Expand Down
2 changes: 1 addition & 1 deletion rust/hyperstack-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hyperstack-sdk"
version = "0.5.3"
version = "0.5.4"
edition.workspace = true
license = "MIT"
repository.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions rust/hyperstack-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.5.4](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-server-v0.5.3...hyperstack-server-v0.5.4) (2026-02-25)


### Miscellaneous Chores

* **hyperstack-server:** Synchronize hyperstack versions


### Dependencies

* The following workspace dependencies were updated
* dependencies
* hyperstack-interpreter bumped from 0.5.3 to 0.5.4

## [0.5.3](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-server-v0.5.2...hyperstack-server-v0.5.3) (2026-02-20)


Expand Down
4 changes: 2 additions & 2 deletions rust/hyperstack-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hyperstack-server"
version = "0.5.3"
version = "0.5.4"
edition.workspace = true
license-file = "LICENSE"
repository.workspace = true
Expand Down Expand Up @@ -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.3", path = "../../interpreter" }
hyperstack-interpreter = { version = "0.5.4", path = "../../interpreter" }

# Async utilities
tokio-util = "0.7"
Expand Down
14 changes: 14 additions & 0 deletions stacks/sdk/rust/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.5.4](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-stacks-v0.5.3...hyperstack-stacks-v0.5.4) (2026-02-25)


### Miscellaneous Chores

* **hyperstack-stacks:** Synchronize hyperstack versions


### Dependencies

* The following workspace dependencies were updated
* dependencies
* hyperstack-sdk bumped from 0.5.3 to 0.5.4

## [0.5.3](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-stacks-v0.5.2...hyperstack-stacks-v0.5.3) (2026-02-20)


Expand Down
Loading