Skip to content

Commit 0c6082b

Browse files
yaooqinnCopilot
andcommitted
Release v1.4.0: spark-advisor skill and skills.sh support
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent cae094e commit 0c6082b

3 files changed

Lines changed: 13 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [1.4.0] - 2025-03-20
4+
5+
### Added
6+
- **`spark-advisor` skill** — Bundled skill for diagnosing, comparing, and optimizing Spark applications.
7+
- TPC-DS benchmark comparison methodology with per-query speedup analysis.
8+
- Diagnostic rules for skew, GC pressure, shuffle overhead, spill, and stragglers.
9+
- Gluten/Velox-aware: detects native offloading, fallback boundaries, and columnar transitions.
10+
- **`skills/` directory at repo root** — Standard discovery path for `npx skills add` (skills.sh).
11+
- Install both skills to any supported agent: `npx skills add yaooqinn/spark-history-cli`
12+
- `install-skill` command now installs both `spark-history-cli` and `spark-advisor` skills.
13+
314
## [1.3.0] - 2025-03-20
415

516
### Added

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="spark-history-cli",
5-
version="1.3.0",
5+
version="1.4.0",
66
description="CLI for querying the Apache Spark History Server REST API",
77
long_description=open("README.md").read(),
88
long_description_content_type="text/markdown",

spark_history_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""spark-history-cli: A CLI for querying the Apache Spark History Server REST API."""
22

3-
__version__ = "1.3.0"
3+
__version__ = "1.4.0"

0 commit comments

Comments
 (0)