diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 06af0be..7e655f5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -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" } diff --git a/Cargo.lock b/Cargo.lock index 486c66d..f910be0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1242,7 +1242,7 @@ dependencies = [ [[package]] name = "hyperstack" -version = "0.5.3" +version = "0.5.4" dependencies = [ "anyhow", "bs58", @@ -1265,7 +1265,7 @@ dependencies = [ [[package]] name = "hyperstack-cli" -version = "0.5.3" +version = "0.5.4" dependencies = [ "anyhow", "chrono", @@ -1291,7 +1291,7 @@ dependencies = [ [[package]] name = "hyperstack-idl" -version = "0.1.0" +version = "0.1.1" dependencies = [ "serde", "serde_json", @@ -1301,7 +1301,7 @@ dependencies = [ [[package]] name = "hyperstack-interpreter" -version = "0.5.3" +version = "0.5.4" dependencies = [ "bs58", "dashmap", @@ -1328,7 +1328,7 @@ dependencies = [ [[package]] name = "hyperstack-macros" -version = "0.5.3" +version = "0.5.4" dependencies = [ "bs58", "hex", @@ -1343,7 +1343,7 @@ dependencies = [ [[package]] name = "hyperstack-sdk" -version = "0.5.3" +version = "0.5.4" dependencies = [ "anyhow", "chrono", @@ -1361,7 +1361,7 @@ dependencies = [ [[package]] name = "hyperstack-server" -version = "0.5.3" +version = "0.5.4" dependencies = [ "anyhow", "base64 0.22.1", @@ -1397,7 +1397,7 @@ dependencies = [ [[package]] name = "hyperstack-stacks" -version = "0.5.3" +version = "0.5.4" dependencies = [ "hyperstack-sdk", "serde", diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index cca25a1..49fc7e5 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -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) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 7d15ee2..d92aaff 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -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 @@ -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" diff --git a/hyperstack-idl/CHANGELOG.md b/hyperstack-idl/CHANGELOG.md new file mode 100644 index 0000000..5105520 --- /dev/null +++ b/hyperstack-idl/CHANGELOG.md @@ -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)) diff --git a/hyperstack-idl/Cargo.toml b/hyperstack-idl/Cargo.toml index 4613453..899fde3 100644 --- a/hyperstack-idl/Cargo.toml +++ b/hyperstack-idl/Cargo.toml @@ -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 diff --git a/hyperstack-macros/CHANGELOG.md b/hyperstack-macros/CHANGELOG.md index a614357..afafc2b 100644 --- a/hyperstack-macros/CHANGELOG.md +++ b/hyperstack-macros/CHANGELOG.md @@ -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) diff --git a/hyperstack-macros/Cargo.toml b/hyperstack-macros/Cargo.toml index cefc58a..9067c37 100644 --- a/hyperstack-macros/Cargo.toml +++ b/hyperstack-macros/Cargo.toml @@ -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 diff --git a/hyperstack/CHANGELOG.md b/hyperstack/CHANGELOG.md index d3dddba..901dfdd 100644 --- a/hyperstack/CHANGELOG.md +++ b/hyperstack/CHANGELOG.md @@ -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) diff --git a/hyperstack/Cargo.toml b/hyperstack/Cargo.toml index 309ec41..aac0c27 100644 --- a/hyperstack/Cargo.toml +++ b/hyperstack/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyperstack" -version = "0.5.3" +version = "0.5.4" 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.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 } diff --git a/interpreter/CHANGELOG.md b/interpreter/CHANGELOG.md index ebf748d..4ba9420 100644 --- a/interpreter/CHANGELOG.md +++ b/interpreter/CHANGELOG.md @@ -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) diff --git a/interpreter/Cargo.toml b/interpreter/Cargo.toml index fc13868..6769182 100644 --- a/interpreter/Cargo.toml +++ b/interpreter/Cargo.toml @@ -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 @@ -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) diff --git a/packages/hyperstack/CHANGELOG.md b/packages/hyperstack/CHANGELOG.md index 1087d2c..862b9eb 100644 --- a/packages/hyperstack/CHANGELOG.md +++ b/packages/hyperstack/CHANGELOG.md @@ -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) diff --git a/packages/hyperstack/package.json b/packages/hyperstack/package.json index a6c46f7..622bdea 100644 --- a/packages/hyperstack/package.json +++ b/packages/hyperstack/package.json @@ -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" diff --git a/rust/hyperstack-sdk/CHANGELOG.md b/rust/hyperstack-sdk/CHANGELOG.md index 311ef15..6163556 100644 --- a/rust/hyperstack-sdk/CHANGELOG.md +++ b/rust/hyperstack-sdk/CHANGELOG.md @@ -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) diff --git a/rust/hyperstack-sdk/Cargo.toml b/rust/hyperstack-sdk/Cargo.toml index 610f8b2..a5ee785 100644 --- a/rust/hyperstack-sdk/Cargo.toml +++ b/rust/hyperstack-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyperstack-sdk" -version = "0.5.3" +version = "0.5.4" edition.workspace = true license = "MIT" repository.workspace = true diff --git a/rust/hyperstack-server/CHANGELOG.md b/rust/hyperstack-server/CHANGELOG.md index 9e1b227..b63111b 100644 --- a/rust/hyperstack-server/CHANGELOG.md +++ b/rust/hyperstack-server/CHANGELOG.md @@ -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) diff --git a/rust/hyperstack-server/Cargo.toml b/rust/hyperstack-server/Cargo.toml index 12ea1ad..3aaa201 100644 --- a/rust/hyperstack-server/Cargo.toml +++ b/rust/hyperstack-server/Cargo.toml @@ -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 @@ -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" diff --git a/stacks/sdk/rust/CHANGELOG.md b/stacks/sdk/rust/CHANGELOG.md index 48c8088..d29b741 100644 --- a/stacks/sdk/rust/CHANGELOG.md +++ b/stacks/sdk/rust/CHANGELOG.md @@ -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) diff --git a/stacks/sdk/rust/Cargo.toml b/stacks/sdk/rust/Cargo.toml index 6630049..1b1bca3 100644 --- a/stacks/sdk/rust/Cargo.toml +++ b/stacks/sdk/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyperstack-stacks" -version = "0.5.3" +version = "0.5.4" edition.workspace = true license = "MIT" repository.workspace = true @@ -17,6 +17,6 @@ ore = [] full = ["ore"] [dependencies] -hyperstack-sdk = { version = "0.5.3", path = "../../../rust/hyperstack-sdk" } +hyperstack-sdk = { version = "0.5.4", 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 e219f1a..2f14b94 100644 --- a/stacks/sdk/typescript/CHANGELOG.md +++ b/stacks/sdk/typescript/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.5.4](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-stacks-v0.5.3...hyperstack-stacks-v0.5.4) (2026-02-25) + + +### Bug Fixes + +* Package.json trailing comma ([81c1c0d](https://github.com/HyperTekOrg/hyperstack/commit/81c1c0d879b23ddd94dddd3ecd65e579ab9c4540)) + + +### Dependencies + +* The following workspace dependencies were updated + * devDependencies + * hyperstack-typescript bumped from file:../../../typescript/core to 0.5.4 + * peerDependencies + * hyperstack-react bumped from >=0.5.3 to >=0.5.4 + * hyperstack-typescript 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) diff --git a/stacks/sdk/typescript/package-lock.json b/stacks/sdk/typescript/package-lock.json index 8533087..ab0986f 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.3", + "version": "0.5.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "hyperstack-stacks", - "version": "0.5.3", + "version": "0.5.4", "license": "MIT", "dependencies": { "zod": "^3.24.1" @@ -31,7 +31,7 @@ }, "../../../typescript/core": { "name": "hyperstack-typescript", - "version": "0.5.3", + "version": "0.5.4", "dev": true, "license": "MIT", "dependencies": { diff --git a/stacks/sdk/typescript/package.json b/stacks/sdk/typescript/package.json index 8fe527c..7f7a0fd 100644 --- a/stacks/sdk/typescript/package.json +++ b/stacks/sdk/typescript/package.json @@ -1,6 +1,6 @@ { "name": "hyperstack-stacks", - "version": "0.5.3", + "version": "0.5.4", "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.3", - "hyperstack-typescript": ">=0.5.3" + "hyperstack-react": ">=0.5.4", + "hyperstack-typescript": ">=0.5.4" }, "dependencies": { "zod": "^3.24.1" diff --git a/typescript/core/CHANGELOG.md b/typescript/core/CHANGELOG.md index a584726..c0d4c2b 100644 --- a/typescript/core/CHANGELOG.md +++ b/typescript/core/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.5.4](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-typescript-v0.5.3...hyperstack-typescript-v0.5.4) (2026-02-25) + + +### Miscellaneous Chores + +* **hyperstack-typescript:** Synchronize hyperstack versions + ## [0.5.3](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-typescript-v0.5.2...hyperstack-typescript-v0.5.3) (2026-02-20) diff --git a/typescript/core/package-lock.json b/typescript/core/package-lock.json index f76e5e3..5ba936b 100644 --- a/typescript/core/package-lock.json +++ b/typescript/core/package-lock.json @@ -1,12 +1,12 @@ { "name": "hyperstack-typescript", - "version": "0.5.3", + "version": "0.5.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "hyperstack-typescript", - "version": "0.5.3", + "version": "0.5.4", "license": "MIT", "dependencies": { "pako": "^2.1.0", diff --git a/typescript/core/package.json b/typescript/core/package.json index 71254a9..b331e6b 100644 --- a/typescript/core/package.json +++ b/typescript/core/package.json @@ -1,6 +1,6 @@ { "name": "hyperstack-typescript", - "version": "0.5.3", + "version": "0.5.4", "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 f2b509e..337f37d 100644 --- a/typescript/react/CHANGELOG.md +++ b/typescript/react/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.5.4](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-react-v0.5.3...hyperstack-react-v0.5.4) (2026-02-25) + + +### Miscellaneous Chores + +* **hyperstack-react:** Synchronize hyperstack versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * hyperstack-typescript bumped from ^0.5.3 to ^0.5.4 + ## [0.5.3](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-react-v0.5.2...hyperstack-react-v0.5.3) (2026-02-20) diff --git a/typescript/react/package-lock.json b/typescript/react/package-lock.json index e017999..21d2ea5 100644 --- a/typescript/react/package-lock.json +++ b/typescript/react/package-lock.json @@ -1,12 +1,12 @@ { "name": "hyperstack-react", - "version": "0.5.3", + "version": "0.5.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "hyperstack-react", - "version": "0.5.3", + "version": "0.5.4", "license": "MIT", "dependencies": { "hyperstack-typescript": "^0.4.2", @@ -35,7 +35,7 @@ }, "../core": { "name": "hyperstack-typescript", - "version": "0.5.3", + "version": "0.5.4", "license": "MIT", "dependencies": { "pako": "^2.1.0" diff --git a/typescript/react/package.json b/typescript/react/package.json index bfb94ee..f54a39d 100644 --- a/typescript/react/package.json +++ b/typescript/react/package.json @@ -1,6 +1,6 @@ { "name": "hyperstack-react", - "version": "0.5.3", + "version": "0.5.4", "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.3", + "hyperstack-typescript": "^0.5.4", "zustand": "^4.0.0" }, "devDependencies": {