release: 2026-04-08 (8건 커밋) #10

병합
HYOJIN develop 에서 main 로 8 commits 를 머지했습니다 2026-04-08 09:09:12 +09:00
2개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
Showing only changes of commit 2c975bb8d4 - Show all commits

파일 보기

@ -4,6 +4,9 @@
## [Unreleased]
### 수정
- actuator 경로 로그필터가 context-path 환경에서 동작하지 않는 버그 수정 (#6)
## [2026-04-07]
### 수정

파일 보기

@ -58,7 +58,7 @@ public class ApiAccessLoggingFilter extends OncePerRequestFilter {
}
private boolean shouldSkip(String uri) {
return uri.startsWith("/actuator")
return uri.contains("/actuator")
|| uri.startsWith("/css")
|| uri.startsWith("/js")
|| uri.startsWith("/images")