Skip to content
Merged
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
22 changes: 11 additions & 11 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"hyperstack": "0.5.2",
"interpreter": "0.5.2",
"hyperstack-macros": "0.5.2",
"cli": "0.5.2",
"rust/hyperstack-sdk": "0.5.2",
"rust/hyperstack-server": "0.5.2",
"typescript/react": "0.5.2",
"typescript/core": "0.5.2",
"stacks/sdk/typescript": "0.5.2",
"stacks/sdk/rust": "0.5.2",
"packages/hyperstack": "0.5.2"
"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"
}
14 changes: 7 additions & 7 deletions Cargo.lock

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

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

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


### Features

* **cli:** add explore command for stack and schema discovery ([17c3022](https://github.com/HyperTekOrg/hyperstack/commit/17c302249c0393200fc53a1eca79bd2cabc53ce2))


### Bug Fixes

* use next_back() instead of last() on DoubleEndedIterator ([a4aa568](https://github.com/HyperTekOrg/hyperstack/commit/a4aa5688959fb1eea5800b3764c0c9696a45e17e))


### Dependencies

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

## [0.5.2](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-cli-v0.5.1...hyperstack-cli-v0.5.2) (2026-02-07)


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.2"
version = "0.5.3"
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.2", path = "../interpreter" }
hyperstack-interpreter = { version = "0.5.3", path = "../interpreter" }
reqwest = { version = "0.11", default-features = false, features = ["json", "blocking", "rustls-tls"] }
dirs = "5.0"
rpassword = "7.3"
Expand Down
7 changes: 7 additions & 0 deletions hyperstack-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

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


### Miscellaneous Chores

* **hyperstack-macros:** Synchronize hyperstack versions

## [0.5.2](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.5.1...hyperstack-macros-v0.5.2) (2026-02-07)


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.2"
version = "0.5.3"
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.3](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-v0.5.2...hyperstack-v0.5.3) (2026-02-20)


### Miscellaneous Chores

* **hyperstack:** Synchronize hyperstack versions


### Dependencies

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

## [0.5.2](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-v0.5.1...hyperstack-v0.5.2) (2026-02-07)


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.2"
version = "0.5.3"
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.2", path = "../interpreter", optional = true }
hyperstack-interpreter = { version = "0.5.3", path = "../interpreter", optional = true }

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

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

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

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


### Miscellaneous Chores

* **hyperstack-interpreter:** Synchronize hyperstack versions


### Dependencies

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

## [0.5.2](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-interpreter-v0.5.1...hyperstack-interpreter-v0.5.2) (2026-02-07)


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.2"
version = "0.5.3"
edition.workspace = true
license-file = "LICENSE"
repository.workspace = true
Expand All @@ -26,7 +26,7 @@ lru = "0.12"
sha2 = "0.10"
tracing = "0.1"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
hyperstack-macros = { version = "0.5.2", path = "../hyperstack-macros" }
hyperstack-macros = { version = "0.5.3", path = "../hyperstack-macros" }

# OpenTelemetry for distributed tracing and metrics (optional, behind 'otel' feature)
opentelemetry = { version = "0.22", features = ["otel_unstable"], optional = true }
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.3](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-npm-v0.5.2...hyperstack-npm-v0.5.3) (2026-02-20)


### Miscellaneous Chores

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

## [0.5.2](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-npm-v0.5.1...hyperstack-npm-v0.5.2) (2026-02-07)


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.2",
"version": "0.5.3",
"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.3](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-sdk-v0.5.2...hyperstack-sdk-v0.5.3) (2026-02-20)


### Miscellaneous Chores

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

## [0.5.2](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-sdk-v0.5.1...hyperstack-sdk-v0.5.2) (2026-02-07)


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.2"
version = "0.5.3"
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.3](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-server-v0.5.2...hyperstack-server-v0.5.3) (2026-02-20)


### Miscellaneous Chores

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


### Dependencies

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

## [0.5.2](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-server-v0.5.1...hyperstack-server-v0.5.2) (2026-02-07)


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.2"
version = "0.5.3"
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.2", path = "../../interpreter" }
hyperstack-interpreter = { version = "0.5.3", 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.3](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-stacks-v0.5.2...hyperstack-stacks-v0.5.3) (2026-02-20)


### Miscellaneous Chores

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


### Dependencies

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

## [0.5.2](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-stacks-v0.5.1...hyperstack-stacks-v0.5.2) (2026-02-07)


Expand Down
4 changes: 2 additions & 2 deletions stacks/sdk/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hyperstack-stacks"
version = "0.5.2"
version = "0.5.3"
edition.workspace = true
license = "MIT"
repository.workspace = true
Expand All @@ -18,6 +18,6 @@ ore = []
full = ["pumpfun", "ore"]

[dependencies]
hyperstack-sdk = { version = "0.5.2", path = "../../../rust/hyperstack-sdk" }
hyperstack-sdk = { version = "0.5.3", path = "../../../rust/hyperstack-sdk" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
17 changes: 17 additions & 0 deletions stacks/sdk/typescript/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

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


### 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.3
* peerDependencies
* hyperstack-react bumped from >=0.5.2 to >=0.5.3
* hyperstack-typescript bumped from >=0.5.2 to >=0.5.3

## [0.5.2](https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-stacks-v0.5.1...hyperstack-stacks-v0.5.2) (2026-02-07)


Expand Down
Loading