-
Notifications
You must be signed in to change notification settings - Fork 0
[Release] v2.0.8 릴리즈 #253
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
[Release] v2.0.8 릴리즈 #253
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
5b371ec
fix: statistics valid 데이터 동기화 (#242)
JjungminLee 1e9ab03
chore: CI/CD 수정 및 테스트 구조 구축
yongjun0511 f613207
feat: logback 세팅 및 Controller AOP 로깅 구현
yongjun0511 ae55113
feat: Dockerfile에 로그 디렉토리 생성
yongjun0511 07d60a8
feat: 로깅 구현 완료
yongjun0511 b93a7ae
fix: 로그 삭제
yongjun0511 82dbce3
fix: dev 오타 정정
yongjun0511 08a8c2f
fix: docker-compose 복사 조건 주석
yongjun0511 81c791b
refactor: docker compose 버전 변경
yongjun0511 b1ef828
refactor: 기존 배포 방식 유지 및 logback-spring.xml stdout 방식으로 콘솔 출력
yongjun0511 51dd849
feat: 테스트 완료
yongjun0511 412577b
fix: reqId값이 나오도록 수정
yongjun0511 8825414
fix: 민감 정보 관련 사항 수정
yongjun0511 fe945b7
chore: 임시 배포
yongjun0511 8b5ab25
chore: PR 마무리
yongjun0511 4cda70d
feat: 민감 정보 마스킹
yongjun0511 58aeebd
refactor: 로그 롤링 정책 추가
yongjun0511 507108c
Merge pull request #244 from EAT-SSU/feature/#243-plg-logging-stack
yongjun0511 00d1409
fix: 250930 수정요청사항 (#248)
JjungminLee 9c25193
fix: 제휴 지도 & 신고 기능 수정 사항 (20250930) (#249)
yongjun0511 dd558bc
fix: 충돌 해결
yongjun0511 6b381ce
fix: 어노테이션 추가 (#252)
yongjun0511 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
src/main/java/ssu/eatssu/domain/auth/dto/AppleLoginRequest.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,14 +3,17 @@ | |
| import io.swagger.v3.oas.annotations.media.Schema; | ||
| import jakarta.validation.constraints.Email; | ||
| import jakarta.validation.constraints.NotBlank; | ||
| import ssu.eatssu.global.log.annotation.LogMask; | ||
|
|
||
| @Schema(title = "카카오 로그인 및 회원가입") | ||
| public record KakaoLoginRequest( | ||
| @LogMask | ||
| @NotBlank(message = "이메일을 입력해주세요.") | ||
| @Email(message = "올바른 이메일 주소를 입력해주세요.") | ||
| @Schema(description = "이메일", example = "[email protected]") | ||
| String email, | ||
|
|
||
| @LogMask | ||
| @Schema(description = "providerId", example = "10378247832195") | ||
| String providerId | ||
| ) { | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,15 +3,18 @@ | |
| import io.swagger.v3.oas.annotations.media.Schema; | ||
| import lombok.Getter; | ||
| import lombok.NoArgsConstructor; | ||
| import ssu.eatssu.global.log.annotation.LogMask; | ||
|
|
||
| @Schema(title = "문의 남기기") | ||
| @NoArgsConstructor | ||
| @Getter | ||
| public class CreateInquiryRequest { | ||
|
|
||
| @Schema(description = "답장 받을 이메일", example = "[email protected]") | ||
| @LogMask | ||
| private String email; | ||
|
|
||
| @Schema(description = "문의 내용", example = "어쩌고 저쩌고 문의 남깁니다") | ||
| @LogMask | ||
| private String content; | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Meal엔티티에 이번 PR에서getMenus()메소드가 추가되었습니다. 이 메소드를 활용하여 코드를 더 간결하게 만들 수 있습니다. 스트림을 직접 사용하여 메뉴 목록을 가져오는 대신meal.getMenus()를 호출하면 캡슐화가 개선되고 코드의 가독성이 높아집니다.