You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"query": "SELECT CustomerID, CustomerName, Email, Phone, Region FROM Customers WHERE IsActive = 1 AND Region IN (${regionList}) AND CreatedDate >= '${startDate}'"
55
+
}
56
+
},
57
+
"sheets": [
58
+
{
59
+
"name": "SeoulCustomers",
60
+
"use": true,
61
+
"queryRef": "customer_base",
62
+
"params": {
63
+
"regionList": ["Seoul"],
64
+
"startDate": "2024-01-01"
65
+
}
66
+
}
67
+
]
68
+
}
69
+
```
70
+
71
+
### 🔧 Improvements
72
+
-**Enhanced Variable Processing Logic**: Added sheet-specific parameter support to `substituteVars` method
73
+
-**Parser Improvements**: Parameter override functionality supported in both XML and JSON parsers
74
+
-**Type Safety**: Safe parsing and processing for various data types
75
+
-**Logging System**: Detailed logging output for parameter override process to support debugging
"query": "SELECT CustomerID, CustomerName, Email, Phone, Region FROM Customers WHERE IsActive = 1 AND Region IN (${regionList}) AND CreatedDate >= '${startDate}'"
55
+
}
56
+
},
57
+
"sheets": [
58
+
{
59
+
"name": "서울고객목록",
60
+
"use": true,
61
+
"queryRef": "customer_base",
62
+
"params": {
63
+
"regionList": ["서울"],
64
+
"startDate": "2024-01-01"
65
+
}
66
+
}
67
+
]
68
+
}
69
+
```
70
+
71
+
### 🔧 개선사항
72
+
-**변수 처리 로직 강화**: `substituteVars` 메서드에 시트별 파라미터 지원 추가
73
+
-**파서 개선**: XML과 JSON 파서 모두에서 파라미터 재설정 기능 지원
74
+
-**타입 안전성**: 다양한 데이터 타입에 대한 안전한 파싱 및 처리
75
+
-**로깅 시스템**: 파라미터 재설정 과정의 상세한 로그 출력으로 디버깅 지원
76
+
77
+
### 📚 문서화
78
+
-**사용자 매뉴얼 업데이트**: 파라미터 재설정 기능 상세 설명 추가
79
+
-**예제 파일 업데이트**: 파라미터 재설정 예제 추가
80
+
-**README 업데이트**: 주요 기능 목록에 파라미터 재설정 추가
81
+
82
+
---
83
+
3
84
## v1.2.2 - 동적 변수 시스템 추가 (2025-08-20)
4
85
5
86
### ✨ 새로운 기능
@@ -272,6 +353,8 @@ resources/
272
353
273
354
| 버전 | 주요 기능 | 릴리즈 일자 |
274
355
|------|-----------|-------------|
356
+
|**v1.2.3**| 파라미터 재설정 기능, 쿼리 재사용 강화 | 2025-08-29 |
"query": "SELECT CustomerID, CustomerName, Email, Phone, Region FROM Customers WHERE IsActive = 1 AND Region IN (${regionList}) AND CreatedDate >= '${startDate}'"
0 commit comments