@gaonjs/cli 0.57.2 → 0.57.3

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.
@@ -527,12 +527,15 @@ SQL 전용 · `collection()` 은 문서형** — 한 동사가 두 세계를 처
527
527
  **추가로 설치할 것은 `mongoose` 하나뿐이다.** `@gaonjs/adapter-mongo` 는 파사드
528
528
  `gaonjs` 의 정규 의존이라 이미 설치돼 있고(그래서 `gaonjs/data` 가 `collection`·
529
529
  `mongoSchema` 를 재수출한다), 실제 드라이버인 `mongoose` 만 **optional peer** 라
530
- SQL 전용 프로젝트는 받지 않는다 — 문서형을 쓰는 프로젝트만 명시 설치한다:
530
+ SQL 전용 프로젝트는 받지 않는다 — 문서형을 쓰는 프로젝트만 **최신 mongoose** 를 명시 설치한다:
531
531
 
532
532
  ```bash
533
533
  npm i mongoose
534
534
  ```
535
535
 
536
+ > 어댑터는 mongoose **8·9 두 메이저**를 지원한다(peer `^8.0.0 || ^9.0.0` · 결정 438).
537
+ > 특정 하위 버전에 고정하지 말고 최신을 설치하면 된다 — 라이브러리는 계속 올라간다.
538
+
536
539
  > `@gaonjs/adapter-mongo` 를 앱 의존으로 **따로 적지 말 것** — 파사드가 exact-pin 으로
537
540
  > 끌고 오는 버전과 앱이 적은 range 가 갈리면 설치 트리에 어댑터가 둘로 갈라져
538
541
  > (레지스트리 split) 커넥션 레지스트리가 서로 안 보인다. 설치 명령은 프로젝트의
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gaonjs/cli",
3
- "version": "0.57.2",
3
+ "version": "0.57.3",
4
4
  "description": "Gaon CLI — 스캐폴딩·제너레이터·마이그레이션·dev/serve/work/hub·doctor·check (bin: gaon)",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -33,12 +33,12 @@
33
33
  "typescript": "^5.9.0",
34
34
  "vite": "^7.0.0",
35
35
  "@gaonjs/async": "0.18.2",
36
- "@gaonjs/config": "0.25.1",
36
+ "@gaonjs/data": "0.25.3",
37
37
  "@gaonjs/core": "0.3.0",
38
+ "@gaonjs/config": "0.25.2",
38
39
  "@gaonjs/i18n": "0.3.1",
39
- "@gaonjs/web": "0.30.1",
40
40
  "@gaonjs/mail": "0.5.1",
41
- "@gaonjs/data": "0.25.3"
41
+ "@gaonjs/web": "0.30.1"
42
42
  },
43
43
  "scripts": {
44
44
  "build": "node ../../node_modules/typescript/bin/tsc -p tsconfig.json && node -e \"const fs=require('fs');fs.cpSync('src/templates','dist/templates',{recursive:true,filter:(s)=>!s.endsWith('.ts')});fs.rmSync('dist/templates/index.ts',{force:true})\""