# Release Notes / 2025 11 22 Documentation – TypeScript ## Included Files 1. release-notes/2025-11-22/2025-11-22.mdx ## November 22, 2025 Source: release-notes/2025-11-22/2025-11-22.mdx Release notes for November 22, 2025 # November 22, 2025 This week brings powerful new tools for developers working with MooseStack: iterate on SQL queries faster with the new `moose query` command, scale your production deployments with ClickHouse cluster support, and seamlessly create Boreal projects from GitHub repositories. * **New:** [`moose query` CLI command](#moose-query-cli-command) for SQL exploration and code generation * **New:** [ClickHouse cluster support](#clickhouse-cluster-support) for distributed deployments * **New:** [Database performance metrics visualization](#database-performance-metrics-visualization) in Boreal project overview ## `moose query` CLI command Execute SQL queries against your ClickHouse database directly from the command line, with built-in validation, formatting, and code generation. **Why it matters:** When building data pipelines, you often need to test SQL queries before adding them to your code. Previously, this meant switching between ClickHouse clients, manually escaping strings, and copying queries back and forth. The `moose query` command streamlines this workflow by letting you validate queries, see results immediately, and generate properly-formatted code ready to paste into your Python or TypeScript application. CLI based querying (automatically set up to query your development ClickHouse instance): ```bash # Execute a query and see JSON results moose query "SELECT user_id, COUNT(*) as events FROM user_events GROUP BY user_id LIMIT 10" {"user_id": "abc-1213", "count": 37} ``` Code generation for using the query in your code: ```bash # Validate and format complex SQL for Python code moose query --format-query python --prettify <