sh-ui-cli 0.50.0 → 0.52.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,6 +2,32 @@
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$description": "sh-ui 릴리즈 노트 단일 소스. docs(React)와 showcase(Flutter)가 함께 읽는다. 새 릴리즈마다 맨 앞에 추가.",
4
4
  "versions": [
5
+ {
6
+ "version": "0.52.0",
7
+ "date": "2026-05-04",
8
+ "title": "Flutter 위젯 golden 시각 회귀 테스트",
9
+ "type": "minor",
10
+ "highlights": [
11
+ "**Flutter 골든 테스트 인프라** — `apps/showcase/test/golden_test.dart`. button(2개 variant) · card · input · checkbox · radio · switch · skeleton · slider · label 10개 위젯의 기본 상태를 골든 이미지로 비교. 의도하지 않은 시각 변경을 PR 에서 잡음.",
12
+ "**macOS CI 워크플로우** — `.github/workflows/showcase-visual.yml` — apps/showcase 또는 packages/registry/flutter 변경 시에만 트리거. macos-latest 러너에서 `flutter test` 실행, 실패 시 diff 를 artifact 로 업로드.",
13
+ "**기준 골든 commit** — 10개 png 가 `test/goldens/` 에 commit. 새 위젯 추가는 `golden_test.dart` 안에 testWidgets 한 줄 + `flutter test --update-goldens` 갱신.",
14
+ "이로써 sh-ui 양쪽 플랫폼 (React docs · Flutter showcase) 모두 시각 회귀 가드가 깔림. v0.51.0 의 Playwright 작업과 한 쌍."
15
+ ],
16
+ "url": "https://github.com/sanghyeonKim0201/sh-ui/releases/tag/v0.52.0"
17
+ },
18
+ {
19
+ "version": "0.51.0",
20
+ "date": "2026-05-04",
21
+ "title": "Playwright 기반 시각 회귀 테스트 도입",
22
+ "type": "minor",
23
+ "highlights": [
24
+ "**시각 회귀 테스트 인프라** — `apps/docs` 에 Playwright 셋업. 15 개 컴포넌트 페이지의 Preview 영역을 캡쳐해 기준 스냅샷과 비교, 의도하지 않은 시각 변경을 PR 에서 잡음. `pnpm --filter @sh-ui/docs visual` 로 검증, `visual:update` 로 기준 갱신.",
25
+ "**macOS CI 워크플로우** — `.github/workflows/visual.yml` — macos-latest 러너에서 시각 비교, 실패 시 diff 리포트를 artifact 로 업로드.",
26
+ "**기준 스냅샷 commit** — button/card/input/badge/checkbox/switch/radio/label/separator/spinner/skeleton/progress/avatar/tooltip/textarea 15 개 시작. 새 컴포넌트는 `tests/visual/components.spec.ts` 의 COMPONENTS 배열에 슬러그만 추가하면 됨.",
27
+ "**docs 가이드 추가** — css-framework 페이지에 시각 회귀 워크플로우 섹션. 사용자 영향 없음 (npm 패키지엔 변동 없는 인프라 변경)."
28
+ ],
29
+ "url": "https://github.com/sanghyeonKim0201/sh-ui/releases/tag/v0.51.0"
30
+ },
5
31
  {
6
32
  "version": "0.50.0",
7
33
  "date": "2026-05-04",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sh-ui-cli",
3
- "version": "0.50.0",
3
+ "version": "0.52.0",
4
4
  "description": "sh-ui CLI — 프로젝트 스캐폴드(create) + 컴포넌트 추가(add/list/remove) + IDE-내 AI용 MCP 서버",
5
5
  "license": "MIT",
6
6
  "repository": {