@roottale/cms-renderer-astro 0.3.0 → 0.5.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -5
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @roottale/cms-renderer-astro
2
2
 
3
+ ## 0.5.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [c43ab28]
8
+ - @roottale/cms-client@0.5.0
9
+
10
+ ## 0.4.0
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [31900de]
15
+ - @roottale/cms-client@0.4.0
16
+
3
17
  ## 0.3.0
4
18
 
5
19
  ### Minor Changes
@@ -38,7 +52,6 @@
38
52
  의미의 `theme` 옵션. style="..." 속성으로 CSS 변수 주입 (서버 측 escape 보강).
39
53
 
40
54
  `theme` prop semantics:
41
-
42
55
  - `undefined` → 자동 fetch
43
56
  - `RootTaleTheme` → 호출자 override
44
57
  - `null` → 자동 fetch 건너뜀 (부모 `RootTaleThemeProvider` 활용 시)
@@ -63,7 +76,6 @@
63
76
 
64
77
  수정: `tsup` 으로 `dist/*.js` + `dist/*.d.ts` (ESM) 출력. `exports` 가 dist
65
78
  가리킴. customer site 측 `transpilePackages` 불필요.
66
-
67
79
  - `cms-client@0.1.1` — ESM `dist/server.js` + types
68
80
  - `cms-core@0.2.1` — ESM `dist/index.js` + types
69
81
  - `cms-renderer-next@0.2.1` — ESM `dist/{server,index}.js` + types + `dist/cms-public.css`
@@ -72,7 +84,6 @@
72
84
  - `cms-renderer-astro@0.2.1` — ESM `dist/index.js` + types
73
85
 
74
86
  후속 (customer site PR):
75
-
76
87
  - roottale-web / kjmtax / theoneulsan 의 `next.config` 의 `transpilePackages`
77
88
  에서 `@roottale/cms-*` 제거. `pnpm update @roottale/cms-client @roottale/cms-renderer-next` 로 patch 적용.
78
89
 
@@ -89,7 +100,6 @@
89
100
  ADR-0029 §0 amend (publish-only dormant) 는 design system 5 패키지 (tokens, ui-css, ui-react, ui-astro, ui-admin) 에 한정. cms-\* 는 별도 정책 — 실행 로직 + 5-20 외부 customer site 직접 의존 + schema 호환 + 보안 경계. Codex consult verdict (session `019e6703…`) 정합.
90
101
 
91
102
  변경:
92
-
93
103
  - 4 패키지 `private: true` 해제 + `publishConfig.access: "public"`
94
104
  - `@roottale/cms-renderer-next` 에서 `@roottale/tokens/tokens.css` import 제거 — 모든 `--rt-*` 변수에 static fallback 으로 self-contained. tokens dormant 와 무관하게 동작.
95
105
  - `RootTaleLeadForm` RSC 추가 — 외부 사이트 진단 폼 (`vertical`/`redirectUrl` props, medical 국외이전 동의 자동).
@@ -98,7 +108,6 @@
98
108
  - `cms-renderer-astro` 도 동등 surface 유지를 위해 동시 publish
99
109
 
100
110
  후속:
101
-
102
111
  - ADR 신규 — cms-\* publish 정책 (별 PR)
103
112
  - Astro 측 LeadForm 컴포넌트 (현재 `@roottale/ui-astro` 위치, `cms-renderer-astro` 로 이동 검토)
104
113
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roottale/cms-renderer-astro",
3
- "version": "0.3.0",
3
+ "version": "0.5.0",
4
4
  "type": "module",
5
5
  "description": "RootTale CMS Astro 6 SSG/SSR public renderer. renderBlogList / renderBlogPost helpers + Tiptap → HTML. Companion of @roottale/cms-renderer-next (ADR-0034 §1.5 amended).",
6
6
  "main": "./dist/index.js",
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "dependencies": {
22
22
  "@roottale/cms-core": "^0.2.1",
23
- "@roottale/cms-client": "^0.2.0"
23
+ "@roottale/cms-client": "^0.5.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/node": "^22.0.0",